mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Update of mfc samples - Adjustment of test cases - Update of CSharp sample (lost button added) - Corrected paths to data files in 07_Triangulation mfc sample - Update of overview (Requirements section) - Update of upgrade guide (changes in modeling algorithms)
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
puts "========"
|
|
puts "OCC26616"
|
|
puts "========"
|
|
puts ""
|
|
############################################
|
|
# Memory leak in IntTools_Context::Hatcher
|
|
############################################
|
|
|
|
restore [locate_data_file OCC26635_t0.brep] t0
|
|
restore [locate_data_file OCC26635_t1.brep] t1
|
|
|
|
bfuse res t0 t1
|
|
|
|
set listmem {}
|
|
for {set i 1} {$i < 10} {incr i} {
|
|
bfuse res t0 t1
|
|
|
|
lappend listmem [meminfo h]
|
|
checktrend $listmem 0 64 "Memory leak detected"
|
|
}
|