mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 01:58:22 +08: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"
|
|
}
|
|
|
|
|