Restoring test cases removed by last commit.
[occt.git] / tests / bugs / moddata / bug76
1 puts "TODO OCC12345 ALL: Error : Volume of OCC76-1.brep is calculated wrongly becuase 3020.94 value must be but 3050.41 is"
2 puts "TODO OCC12345 ALL: Error : Volume of OCC76-2.brep is calculated wrongly because 9871.39 value must be but 10153.6 is"
3
4 puts "================"
5 puts "OCC76"
6 puts "================"
7 puts ""
8
9 restore [locate_data_file shading_177.brep] sh1 
10 puts [checkshape sh1]
11 regexp {Mass +: +([-0-9.+eE]+)} [vprops sh1] full l1
12
13 restore [locate_data_file OCC76-2.brep] sh2
14 puts [checkshape sh2]
15 regexp {Mass +: +([-0-9.+eE]+)} [vprops sh2] full l2
16
17 if { [expr abs([expr $l1 - 3020.94])] > 0.00999} {      
18    puts "Error : Volume of OCC76-1.brep is calculated wrongly becuase 3020.94 value must be but $l1 is"
19 } else {
20   puts " Volume of OCC76-1.brep is right calculated"
21 }
22
23 if { [expr abs([expr $l2 - 9871.39 ])] > 0.00999} {
24    puts "Error : Volume of OCC76-2.brep is calculated wrongly because 9871.39 value must be but $l2 is"
25 } else {
26   puts " Volume of OCC76-2.brep is right calculated"
27 }