mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 01:58:22 +08:00
Modified TODO in some offset cases. Deleted the same test cases bug697_* in /bugs/modalg Deleted test cases which is based on v2d commands Added test cases to folder bugs
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
|
|
|
|
|