mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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
30 lines
671 B
Plaintext
Executable File
30 lines
671 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC23175"
|
|
puts "============"
|
|
puts ""
|
|
####################################################################################
|
|
# Failed to segment a periodic B-Spline when parameter coincides with existing knot
|
|
####################################################################################
|
|
|
|
set BugNumber OCC23175
|
|
|
|
restore [locate_data_file OCC23175-bspline-per-3_draw] result
|
|
|
|
catch { segment result 1 2.5 } msg
|
|
|
|
set exception_status 0
|
|
set index [lsearch $msg exception]
|
|
if {$index > -1} {
|
|
set exception_status 1
|
|
}
|
|
|
|
if { ${exception_status} != 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|
|
set 2dviewer 0
|
|
|
|
|