mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
18 lines
461 B
Plaintext
Executable File
18 lines
461 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC8229"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception is raised during the ReadStep in DRAW on the attached shape
|
|
#######################################################################
|
|
|
|
set BugNumber OCC8229
|
|
|
|
set filepath [locate_data_file OCC8229.stp]
|
|
if [catch { stepread $filepath a * } res] {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|