mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- The maximum value of cpulimit in test cases was limited to 1000 seconds (~ 17 minutes) - cpulimit 1000 has been added to hlr/begin
27 lines
657 B
Plaintext
Executable File
27 lines
657 B
Plaintext
Executable File
puts "========="
|
|
puts " OCC210 "
|
|
puts "========="
|
|
puts ""
|
|
##################################################
|
|
# Improve FixShape to correct case of touching wires
|
|
##################################################
|
|
puts "TODO CR22598 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
|
|
|
pload XDE
|
|
|
|
cpulimit 1000
|
|
|
|
set BugNumber OCC210
|
|
|
|
set filepath [locate_data_file UKI60591.stp]
|
|
if [catch { stepread $filepath a * } result] {
|
|
puts "Faulty ${BugNumber}: here is reading problem"
|
|
} else {
|
|
puts "Reading ${BugNumber} OK"
|
|
tpcompound r
|
|
fixshape result r
|
|
checkshape result
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|