1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-05 11:24:17 +03:00
occt/tests/bugs/modalg_2/bug22833
ski 58cf74e0c0 0025945: Make stable checking of shape global properties in tests
- 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
2015-12-10 16:56:03 +03:00

35 lines
800 B
Plaintext
Executable File

puts "========================"
puts "OCC22833"
puts "========================"
puts ""
#######################################################################
# Command "checkshape" in DRAWEXE give error "Self intersection wire" on attached shape
#######################################################################
set BugNumber OCC22833
restore [locate_data_file OCC22833-bugInt.brep] result
set text [checkshape result f]
set last1 [lindex $text end]
set last2 [lindex $text end-1]
set status 0
set s1 "OK"
set s2 "looks"
if { [string equal $last1 $s1] && [string equal $last2 $s2] } {
set status 0
} else {
set status 1 }
if { ${status} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}
checkprops result -s 63427.2
checkshape result
set 3dviewer 1