1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +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

46 lines
640 B
Plaintext
Executable File

puts "============"
puts "BUC60848"
puts "============"
puts ""
pload QAcommands
restore [locate_data_file BUC60848.brep] a
checkshape a
tcopy a res
set Flag 0
set Res [ catch { BUC60848 a } ]
if { $Res != 0 } {
invert a
set Flag 1
puts ""
}
if { $Flag == 1 } {
set Res [ catch { BUC60848 a } ]
if { $Res != 0 } {
set Flag 2
}
puts ""
}
if { $Flag == 2 } {
puts "TEST FINISHED. RESULT IS BAD. Faulty"
puts ""
}
if { $Flag == 1 } {
puts "TEST FINISHED. RESULT IS OK. SHAPE HAS BEEN INVERTED."
puts ""
}
if { $Flag == 0 } {
puts "TEST FINISHED. RESULT IS OK."
puts ""
}