1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
puts "TODO OCC12345 ALL: Error on Record"
puts "TODO OCC12345 ALL: OCC2368: Error during reading attached IGES file"
puts "============"
puts "OCC2368"
puts "============"
puts ""
######################################################
# Exeption is raised in the application during reading attached IGES file.
######################################################
set list [stepread [locate_data_file OCC2368.stp] a *]
if {[lsearch ${list} Error] > -1} {
puts "OCC2368: Error during reading attached IGES file"
} else {
puts "OCC2368: OK"
}
|