mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
Test case tests/bugs/modalg/dxf906 was renamed to bug889 Adding test cases to tests/bugs/moddata Modified expressions puts [checkshape result]. Added command vzfit in end file in folder bugs. Unlocked command coordload in QABugs_3.cxx Modified test case bugs vis buc60738 Added test cases to modalg and moddata Added test cases to caf and fclasses Added test cases to group heal
37 lines
928 B
Plaintext
Executable File
37 lines
928 B
Plaintext
Executable File
|
|
puts "========="
|
|
puts " OCC943 "
|
|
puts "(case 1)"
|
|
puts "========="
|
|
puts ""
|
|
#####################################################
|
|
## The regression is intersecting pcurves of face, They are added by fixshape.
|
|
## (To see this you can try fixshape dF.rle from attachment. But please note, that
|
|
## checkshape on result of fixshape sometimes fails and sometimes not. It is
|
|
## instability!)
|
|
######################################################
|
|
|
|
restore [locate_data_file OCC943_1.brep] result
|
|
|
|
decho off
|
|
set err [checkshape result]
|
|
decho on
|
|
|
|
set j 1
|
|
repeat 25 {
|
|
restore [locate_data_file OCC943_1.brep] result
|
|
decho off
|
|
set err1 [checkshape result]
|
|
decho on
|
|
if { $err != $err1 } {
|
|
puts [format " Faulty OCC943 (case 1): function CHECKSHAPE works wrongly on %s time" $j]
|
|
break
|
|
} else {
|
|
puts [format " OCC943 (case 1) OK: function CHECKSHAPE works properly %s time" $j]
|
|
}
|
|
incr j
|
|
}
|
|
|
|
set 2dviewer 0
|
|
|