1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ski a8676008f7 Adding of testing cases from subgroups 937 940 and 941 of CHL group
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing
Correction of end file in group v3d
Small correction of test case
2013-02-08 15:16:15 +04:00

34 lines
682 B
Plaintext
Executable File

puts "==========="
puts "OCC13904"
puts "==========="
######################################################
# Exception during "filling" operation
######################################################
set BugNumber OCC13904
circle c 0 100 100 0 1 1 50
ellipse el 0 0 0 0 1 1 100 50
set mistake 0
if [catch { appsurf result c el } res] {
set mistake 1
puts "Faulty ${BugNumber}: filling problem"
} else {
puts "Filling ${BugNumber} OK"
set What [whatis result]
if { [regexp "surface" $What] != 1 } {
set mistake 1
} else {
set mistake 0
}
}
# Resume
puts ""
if { ${mistake} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}