mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The problem occurred when the algorithm IntCurvesFace_Intersector was called for a face occupying zero extension along V direction. This is obviously a bad face, but we need to have the algorithm not crashing the application. So, the algorithm has been protected against such input data. At attempt to make calculations it establishes NotDone status. Bad test case tests/de/step_3/D9 has been updated. False memory leak detection has been suppressed in tests/bugs/fclasses/bug7287_2.
31 lines
703 B
Plaintext
Executable File
31 lines
703 B
Plaintext
Executable File
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
|
|
bopcut r
|
|
lappend listmem [meminfo h]
|
|
}
|
|
checktrend $listmem 0 100 "Memory leak detected"
|