1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/fclasses/bug7287_3
apn aad4bc1f7b 0026192: Porting testing database on Debian70 64bit
Modified test cases for platform Debian70 64bit

Changed todo mapping for Debian70-64
2015-05-14 17:35:28 +03:00

32 lines
616 B
Plaintext
Executable File

puts "TODO ?OCC25921 Debian70-64: Tcl Exception: Memory leak detected"
puts "TODO ?OCC25921 Debian70-64: TEST INCOMPLETE"
puts "============"
puts "OCC7287"
puts "============"
puts ""
######################################################
# Problem of Memory Leak
######################################################
#
# Result is not Null shape
#
set BugNumber OCC7287
set NCycles 10
box b1 10 10 10 100 100 100
box b2 50 50 50
set listmem {}
for {set i 1} {${i} <= ${NCycles}} {incr i } {
bop b1 b2
boptuc r
lappend listmem [meminfo h]
checktrend $listmem 0 100 "Memory leak detected"
}