1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ski a8676008f7 Adding of testing cases from subgroups 937 940 and 941 of CHL group
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
2013-02-08 15:16:15 +04:00

49 lines
937 B
Plaintext
Executable File

puts "TODO OCC11111 ALL: Faulty OCC3896"
puts "============"
puts "OCC3896"
puts "============"
puts ""
######################################################
# BRepCheck_Analyzer does not detect faulty faces in solid shape.
######################################################
#
# a_13 face is FORVARD (faulty), but checkshape command does not detect it
#
set BugNumber OCC3896
restore [locate_data_file OCC3896-pipe.brep] a
explode a f
compound a_1 a_13 result
explode a_1 e
explode a_13 e
smallview
donly result
fit
r
normals result 200
puts "Normal of a_13 face is red (FORWARD)"
for {set i 1} {$i <= 14} {incr i} {
whatis a_$i
}
decho off
set info_result [checkshape result]
decho on
if {[regexp {Faulty} $info_result] } {
puts "OK ${BugNumber} : checkshape detect faulty faces in solid shape"
} else {
puts "Faulty ${BugNumber} : checkshape does not detect faulty faces in solid shape"
}
set 2dviewer 0