mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- Add checking for null object for edge_curve within TranslateEdgeLoop; - Update STEP parser rule allowing empty element in the list of entity parameters; - Update test case of bug26451 for a new scanner rule; - Update test case of bug30273 for a new added check for null object
18 lines
370 B
Plaintext
18 lines
370 B
Plaintext
puts "===================================="
|
|
puts "0031489: Data Exchange - STEP Reader can't read a big file"
|
|
puts "===================================="
|
|
puts ""
|
|
|
|
pload DCAF
|
|
|
|
# Read file
|
|
ReadStep D [locate_data_file bug31489.stp]
|
|
|
|
# Checking
|
|
set info [tpstat f]
|
|
if {![regexp {Nb Total:0} $info full]} {
|
|
puts "Error: file was not correctly read - exception"
|
|
}
|
|
|
|
Close D
|