1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
puts "============"
puts "OCC22459"
puts "============"
#######################################################################
# The ImportExport sample crash
#######################################################################
catch { pload XDE }
set BugNumber OCC22459
stepread [locate_data_file OCC22459-TEST2.stp] result *
set exception_status 0
set msg [ tpstat c ]
set index [ lsearch $msg Exeption ]
if {$index > -1} {
set exception_status 1
}
if { ${exception_status} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}
set 2dviewer 0
|