1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
ski 49c093ae1c 0023371: Expression which check of change of square/volume/length in end files doesn't work properly
Modified END files
Corrected tests cases due to modification of END files
2012-08-20 13:33:29 +04:00

34 lines
817 B
Plaintext

if { [isdraw result] } {
set sm 0
if { [isdraw s] } {
regexp {Mass +: +([-0-9.+eE]+)} [sprops s] full sm
}
regexp {Mass +: +([-0-9.+eE]+)} [sprops result] full m
#check if result is valid
puts [checkshape result]
if { $m == 0 || $sm == $m } {
puts "Error : The blend is not valid."
}
if { $square > 0 } {
puts "The expected square is $square"
}
#check of change of square is < 1%
if { ($square != 0 && [expr 1.*abs($square - $m)/$square] > 0.01) || ($square == 0 && $m != 0) } {
puts "Error : The square of result shape is $m"
}
if { $m > 0 } {
clear
smallview
donly result
fit
xwd $imagedir/${test_image}.gif
}
} else {
puts "Error : The blend can not be build."
}
# to end a test script
puts "TEST COMPLETED"