1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/step/bug2368
ika 5bbe7380bd 0027532: Errors on reading stp-file
The cause of errors is a non alphabetical order of complex entity, which do not affect export.
Move messages to debug mode.
Replace fail by warning.

Correction of test case bugs/vis/bug23153 according to the new behavior
2016-06-23 18:14:45 +03:00

16 lines
435 B
Plaintext

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"
}