1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
apn 352ffd7358 Adding test cases for chl grid
Test case tests/bugs/modalg/dxf906 was renamed to bug889
Adding test cases to tests/bugs/moddata
Modified expressions puts [checkshape result]. Added command vzfit in end file in folder bugs. Unlocked command coordload in QABugs_3.cxx
Modified test case bugs vis buc60738
Added test cases to modalg and moddata
Added test cases to caf and fclasses
Added test cases to group heal
2012-12-21 16:39:38 +04:00

28 lines
991 B
Plaintext
Executable File

puts "TODO OCC12345 ALL: Error : Volume of OCC76-1.brep is calculated wrongly becuase 3020.94 value must be but 3050.41 is"
puts "TODO OCC12345 ALL: Error : Volume of OCC76-2.brep is calculated wrongly because 9871.39 value must be but 10153.6 is"
puts "================"
puts "OCC76"
puts "================"
puts ""
restore [locate_data_file shading_177.brep] sh1
checkshape sh1
regexp {Mass +: +([-0-9.+eE]+)} [vprops sh1] full l1
restore [locate_data_file OCC76-2.brep] sh2
checkshape sh2
regexp {Mass +: +([-0-9.+eE]+)} [vprops sh2] full l2
if { [expr abs([expr $l1 - 3020.94])] > 0.00999} {
puts "Error : Volume of OCC76-1.brep is calculated wrongly becuase 3020.94 value must be but $l1 is"
} else {
puts " Volume of OCC76-1.brep is right calculated"
}
if { [expr abs([expr $l2 - 9871.39 ])] > 0.00999} {
puts "Error : Volume of OCC76-2.brep is calculated wrongly because 9871.39 value must be but $l2 is"
} else {
puts " Volume of OCC76-2.brep is right calculated"
}