mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Test cases which check Boolean Operation algorithm on memory leaks have been rewritten to test the whole algorithm and not a part of it.
30 lines
556 B
Plaintext
Executable File
30 lines
556 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC7287"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Problem of Memory Leak
|
|
######################################################
|
|
|
|
#
|
|
# Result is not Null shape
|
|
#
|
|
|
|
set BugNumber OCC7287
|
|
|
|
set NCycles 100
|
|
box b1 10 10 10 100 100 100
|
|
box b2 50 50 50
|
|
|
|
for {set i 1} {${i} <= ${NCycles}} {incr i } {
|
|
bop b1 b2
|
|
bopsection r
|
|
|
|
lappend listmem [meminfo h]
|
|
if { [checktrend $listmem 0 1 "Memory leak detected"] } {
|
|
puts "No memory leak, $i iterations"
|
|
break
|
|
}
|
|
}
|
|
|