0029355: OCCT 6.9.1 persistence restored in OCCT 7.2.0 not working
[occt.git] / tests / bugs / fclasses / bug7287_3
CommitLineData
53a1447a 1puts "TODO ?OCC7287 Linux: Tcl Exception: Memory leak detected"
2puts "TODO ?OCC7287 Linux: TEST INCOMPLETE"
3puts "TODO ?OCC7287 MacOS: Tcl Exception: Memory leak detected"
4puts "TODO ?OCC7287 MacOS: TEST INCOMPLETE"
9aa684ed 5
352ffd73 6puts "============"
7puts "OCC7287"
8puts "============"
9puts ""
10######################################################
11# Problem of Memory Leak
12######################################################
13
14#
15# Result is not Null shape
16#
17
18set BugNumber OCC7287
19
20
9aa684ed 21set NCycles 10
352ffd73 22box b1 10 10 10 100 100 100
23box b2 50 50 50
352ffd73 24
25set listmem {}
26for {set i 1} {${i} <= ${NCycles}} {incr i } {
5d05cf31 27 bop b1 b2
352ffd73 28 boptuc r
29
67a1064e 30 lappend listmem [meminfo h]
9aa684ed 31 checktrend $listmem 0 100 "Memory leak detected"
352ffd73 32}
33