1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tests/bugs/vis/bug5682
apn 9aa684edf4 0025987: Integration part of modified unstable test cases
Unstable test cases were reviewed
Modified test cases using checktrend command
Modified test cases for Linux platform
Modified test cases for Debug mode
2015-03-26 18:10:29 +03:00

26 lines
508 B
Plaintext
Executable File

puts "============"
puts "OCC5682"
puts "============"
puts ""
######################################################
# AIS_InteractiveContext::Remove does not remove the object from memory
######################################################
set BugNumber OCC5682
box b 100 100 100
vinit
catch {vselmode 4 1}
set listmem {}
set i_max 5
for {set i 1} {${i} <= ${i_max}} {incr i} {
vdisplay b
vfit
vclear
lappend listmem [meminfo h]
checktrend $listmem 0 1 "Memory leak detected"
}