mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
26 lines
635 B
Plaintext
Executable File
26 lines
635 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC21317"
|
|
puts "================"
|
|
puts ""
|
|
######################################################################################
|
|
# Face cannot be fixed by Shape Healing
|
|
######################################################################################
|
|
|
|
set BugNumber OCC21317
|
|
|
|
catch {pload XDE}
|
|
|
|
restore [locate_data_file bug21317_faulty.brep] a
|
|
fixshape result a
|
|
set info [checkshape result]
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {This shape seems to be valid} $info] } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|