1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/buc60921
apn 352ffd7358 Adding test cases for chl grid
Test case tests/bugs/modalg/dxf906 was renamed to bug889
Adding test cases to tests/bugs/moddata
Modified expressions puts [checkshape result]. Added command vzfit in end file in folder bugs. Unlocked command coordload in QABugs_3.cxx
Modified test case bugs vis buc60738
Added test cases to modalg and moddata
Added test cases to caf and fclasses
Added test cases to group heal
2012-12-21 16:39:38 +04:00

53 lines
1.4 KiB
Plaintext
Executable File

# This TCL script demonstrates memory leak in OCAF Undo/Redo
#
# The DRAW command TestOCAF (provided separately) just reads
# the specified brep file
# and puts it into the document on a given label.
# This operation is done and undone several times,
# and the problem is that each time additional memory
# (approximately equivalent to the size of shape)
# is consumed.
#
# While obviously it should not be so: even if Undo keeps the
# shape in memory as delta on Redo, this delta should be cleared
# by the next operation!
#
# The bug persists with any setting of variables MMGT_OPT and MMGT_MMAP
# (while with different initial size and step) and
#
# It seems that either delta is not completely freed, or some
# other data structures keep the shape memory
puts "==========="
puts "BUC60921"
puts "BUC60954"
puts "==========="
pload QAcommands
# see end of script!
set BREP [locate_data_file BUC60921.brep]
#set BREP [locate_data_file Bottom.brep]
NewDocument D MDTV-Standard
UndoLimit D 100
set i_max 10
set listmem {}
for {set i 1} {$i <= ${i_max}} {incr i} {
CommitCommand D
OpenCommand D
BUC60921 D 0:1:1 $BREP
CommitCommand D
OpenCommand D
Undo D
# check memory usage (with tolerance equal to half page size)
lappend listmem [expr [meminfo w] / 1024]
if { [checktrend $listmem 0 512 "Memory leak detected"] } {
puts "No memory leak, $i iterations"
break
}
}