mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
27 lines
680 B
Plaintext
Executable File
27 lines
680 B
Plaintext
Executable File
puts "================"
|
|
puts "BUC60609"
|
|
puts "================"
|
|
|
|
pload QAcommands
|
|
|
|
set INF [BUC60609 [locate_data_file buc60609a.brep] a]
|
|
set ll [llength $INF]
|
|
set first [lindex $INF [expr $ll - 5]]
|
|
set second [lindex $INF [expr $ll - 1]]
|
|
|
|
if {$first != "INSIDE" && $first != "inside"} {
|
|
puts "Faulty BUC60609 first: $first is not right result. It should be INSIDE"
|
|
} else {
|
|
puts "BUC60609 first OK: It is INSIDE"
|
|
}
|
|
|
|
if {$second != "INSIDE"} {
|
|
puts "Faulty BUC60609 second: $second is not right result. It should be INSIDE"
|
|
} else {
|
|
puts "BUC60609 second OK: It is INSIDE"
|
|
}
|
|
|
|
renamevar a result
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|