mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
33 lines
840 B
Plaintext
Executable File
33 lines
840 B
Plaintext
Executable File
puts "TODO ?CR332257287 Linux: Checking trend failed: mean delta per step = 9432.0, sigma = 4220.013270121316, expected delta = 0"
|
|
puts "TODO ?OCC7287 Linux: Tcl Exception: Memory leak detected"
|
|
puts "TODO ?OCC7287 Linux: TEST INCOMPLETE"
|
|
puts "TODO ?OCC7287 MacOS: Tcl Exception: Memory leak detected"
|
|
puts "TODO ?OCC7287 MacOS: 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
|
|
bopfuse r
|
|
|
|
lappend listmem [meminfo h]
|
|
checktrend $listmem 0 100 "Memory leak detected"
|
|
}
|