mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
30 lines
722 B
Plaintext
Executable File
30 lines
722 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}"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|
|
|