mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
665 B
Plaintext
Executable File
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}"
|
|
}
|
|
}
|
|
|
|
|