1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/heal/bug25712
apn 9aa684edf4 0025987: Integration part of modified unstable test cases
Unstable test cases were reviewed
Modified test cases using checktrend command
Modified test cases for Linux platform
Modified test cases for Debug mode
2015-03-26 18:10:29 +03:00

28 lines
809 B
Plaintext

puts "========"
puts "OCC25712"
puts "========"
puts ""
################################################
# Non-deterministic behavior of ShapeFix_Solid
################################################
cpulimit 2500
set OK_shapes_1 177
set OK_shapes_2 9
for {set i 1} {$i <= 100} {incr i} {
restore [locate_data_file OCC25712_comp16.brep] c
fixshape rc c
explode rc
explode rc_2
set bug_info_1 [numshapes rc_2_1]
set bug_info_2 [numshapes rc_2_2]
if {[lindex $bug_info_1 31] != $OK_shapes_1} {
puts "ERROR: OCC25712 is reprodced. rc_2_1 should has $OK_shapes_1 shapes, but has [lindex $bug_info_1 31] shapes."
}
if {[lindex $bug_info_2 31] != $OK_shapes_2} {
puts "ERROR: OCC25712 is reprodced. rc_2_2 should has $OK_shapes_2 shapes, but has [lindex $bug_info_2 31] shapes."
}
}