mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Added function checkprops, set default tolerance parameter to 1.0e-4 - Using "area" instead of "square". - Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases. - Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1) - Corrected test cases to use checkprops proc. - Correct image difference - Updated TODOs in test cases. - Updated test cases to get correct images of result shape
28 lines
715 B
Plaintext
Executable File
28 lines
715 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC22915"
|
|
puts "================"
|
|
puts ""
|
|
######################################################################################
|
|
# xrash in iges reader TransferRoots()
|
|
######################################################################################
|
|
|
|
set BugNumber OCC22915
|
|
|
|
igesread [locate_data_file OCC22915-brakes.igs] result *
|
|
checkshape result
|
|
set info [ tpstat c ]
|
|
|
|
regexp {Nb Total:([-0-9.+eE]+)[ \t]*for ([-0-9.+eE]+) items} $info full total nb_items
|
|
set word1 [string compare $nb_items "3"]
|
|
set word2 [string compare $total "38"]
|
|
|
|
if { ${word1} == 0 && ${word2} == 0 } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
|
|
checkprops result -s 284190
|
|
|
|
|