mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
16 lines
460 B
Plaintext
Executable File
16 lines
460 B
Plaintext
Executable File
puts "============"
|
|
puts "CR22871"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Step Reader raises exception on invalid entity (null swept curve)
|
|
#######################################################################
|
|
|
|
set info [stepread [locate_data_file bug22871_null-swept-curve.stp] s *]
|
|
set check [lsearch $info Exception*]
|
|
if { $check != -1 } {
|
|
puts "Error : Step Reader raises exception"
|
|
}
|
|
|
|
|