mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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
28 lines
710 B
Plaintext
Executable File
28 lines
710 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC22494"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepClass_FaceClassifier bug (ref SALOME issue 21185)
|
|
#######################################################################
|
|
|
|
set BugNumber OCC22494
|
|
|
|
restore [locate_data_file bug22494_Pb_belogToGeom_FACE.brep] Face
|
|
|
|
point p -3.53254182396379145e-05 0.000877856930738714065
|
|
|
|
set res [split [b2dclassify Face p] ]
|
|
|
|
set ll [llength ${res}]
|
|
if {${ll} < 4} {
|
|
puts "Bad format of bclassify draw-command; Faulty ${BugNumber}"
|
|
} else {
|
|
if {[regexp {The point is ON shape} $res]} {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
}
|
|
|