mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +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
26 lines
750 B
Plaintext
Executable File
26 lines
750 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC22043"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Checkshape command does not return faulty shapes for the face. CAS63-sp10-*. Appendix to SALOME bug 002019
|
|
#######################################################################
|
|
|
|
set BugNumber OCC22043
|
|
|
|
puts "Load shape ..."
|
|
restore [locate_data_file bug22043_f181.brep] result
|
|
|
|
decho off
|
|
set che [checkshape result]
|
|
decho on
|
|
|
|
if {[regexp {Faulty} $che]} {
|
|
puts "OK ${BugNumber} : The face f181 can not be valid because at least it contain self-intersected wire"
|
|
} else {
|
|
puts "Faulty ${BugNumber} : The face f181 can not be valid because at least it contain self-intersected wire"
|
|
}
|
|
|
|
|
|
set 2dviewer 0
|