1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +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

28 lines
665 B
Plaintext
Executable File

puts "================"
puts "OCC23248"
puts "================"
puts ""
#######################################################################
# Wrong result done by solid classifier algorithm for infinite point
#######################################################################
set BugNumber OCC23248
restore [locate_data_file bug23248_so] b
set result [split [xclassify b 1e-7]]
set ll [llength ${result}]
if {${ll} < 3} {
puts "Bad format of xclassify draw-command; Faulty ${BugNumber}"
} else {
set status [lindex ${result} 2]
if { [regexp "OUT" $result] == 1 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}
}