mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
In the TDocStd_Owner keep simple pointer to TDocStd_Document instead of Handle. This causes automatic destruction of the document without explicit call of Close. In Standard_Type added a static variable theType that initializes theRegistry map earlier. Otherwise exit from Draw interpreter crashes in many test-cases because not-closed transactions are aborted on document handle release from Draw theVariables map. Corrected method for test OCC159bug due to the fact that Owner does not add a ref count now Close the document in the end of bugs xde bug22776 otherwise double remove of visualization objects (on library exit and on visualization attributes remove from the document) causes crash on exit from draw Added a new test bugs caf bug31075
18 lines
492 B
Plaintext
18 lines
492 B
Plaintext
puts "============"
|
|
puts "0031075: Application Framework - reading STEP file into TDocStd_Document leads to memory leaks"
|
|
puts "============"
|
|
|
|
pload XDE
|
|
|
|
puts "Create a new document outside of application, add a shape an release all variables in cycle to see if allocated heap memory grows"
|
|
set listmem {}
|
|
for {set i 1} {$i < 100} {incr i} {
|
|
NewDocument D
|
|
box aBox 10 10 10
|
|
XAddShape D aBox
|
|
unset aBox
|
|
unset D
|
|
lappend listmem [meminfo h]
|
|
checktrend $listmem 0 0 "Memory leak"
|
|
}
|