mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
29 lines
633 B
Plaintext
Executable File
29 lines
633 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC12884"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong result of projection curve on surface
|
|
#######################################################################
|
|
|
|
set BugNumber OCC12884
|
|
|
|
restore [locate_data_file OCC12884_s2.draw] s2
|
|
restore [locate_data_file OCC12884_c1.draw] c1
|
|
|
|
set BugStatus 0
|
|
if [catch { project result c1 s2 } ] {
|
|
set BugStatus 1
|
|
}
|
|
|
|
# Resume
|
|
puts ""
|
|
if { ${BugStatus} != 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|