mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing Correction of end file in group v3d Small correction of test case
33 lines
676 B
Plaintext
Executable File
33 lines
676 B
Plaintext
Executable File
|
|
puts "========="
|
|
puts " OCC935 "
|
|
puts "(case 2)"
|
|
puts "========="
|
|
puts ""
|
|
###############################
|
|
## instability in checkshape in KAS:dev version.
|
|
###############################
|
|
|
|
restore [locate_data_file OCC935_2.brep] result
|
|
|
|
decho off
|
|
set err [checkshape result]
|
|
decho on
|
|
|
|
set j 1
|
|
repeat 25 {
|
|
restore [locate_data_file OCC935_2.brep] result
|
|
decho off
|
|
set err1 [checkshape result]
|
|
decho on
|
|
if { $err != $err1 } {
|
|
puts [format " Faulty OCC935 (case 2): function CHECKSHAPE works wrongly on %s time" $j]
|
|
break
|
|
} else {
|
|
puts [format " OCC935 (case 2) OK: function CHECKSHAPE works properly %s time" $j]
|
|
}
|
|
incr j
|
|
}
|
|
|
|
set 2dviewer 0
|