mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-31 11:15:31 +03:00
35 lines
807 B
Plaintext
Executable File
35 lines
807 B
Plaintext
Executable File
puts "TODO DEBUG_OCC24121 Debian60-64 Windows: iteration"
|
|
puts "TODO DEBUG_OCC24121 Debian60-64 Windows: Faulty OCC23944"
|
|
|
|
puts "============"
|
|
puts "OCC23944"
|
|
puts "============"
|
|
puts ""
|
|
###################################################
|
|
## Typo in ShapeCustom_RestrictionParameters leading to wrong approximation results
|
|
###################################################
|
|
|
|
set BugNumber OCC23944
|
|
|
|
restore [locate_data_file bug23944_s.draw] s
|
|
|
|
decho off
|
|
mkface f s
|
|
decho on
|
|
|
|
decho off
|
|
set info [bsplres result f 1e-4 1e-9 15 100 C1 C2 0 1]
|
|
decho on
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {Debug mode} [dversion]] } {
|
|
if { [regexp {Surface is aproximated with continuity 0} $info] } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
} else {
|
|
puts "Test for debug mode only"
|
|
}
|