mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
29 lines
699 B
Plaintext
29 lines
699 B
Plaintext
puts "========"
|
|
puts "OCC26451"
|
|
puts "========"
|
|
puts ""
|
|
##########################################################################
|
|
# Crash importing STeP file
|
|
##########################################################################
|
|
|
|
stepread [locate_data_file bug26451_Test_STEP.stp] a *
|
|
tpcompound result
|
|
|
|
checkprops result -s 551394
|
|
checkshape result
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 8062
|
|
EDGE : 8379
|
|
WIRE : 1990
|
|
FACE : 1756
|
|
SHELL : 1756
|
|
SOLID : 0
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 21944
|
|
"
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "importing file"
|
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|