mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Test for 0022602: Improvement in notched healing Test for 0022750: Boolean operation: Bug in Fuse Test for 0022821: Crash with BRepFilletAPI_MakeFillet Test for 0023090: Reading a STEP file produces invalid shape Test for 0023163: Intersection of tori fails to produce results Test for 0023343: Crash (ACCESS VIOLATION) in GeomPlate_BuildPlateSurface / MakeApprox if init Surface is set Test for 0023386: BRepAlgoAPI_Fuse on two disjoint shapes sometimes loses all geometry from one of the shapes Test for 0023451: FixMissingSeam constructs intersecting wires Test for 0023497: Units package raises exception for composite units Test for 0023638: Reading IGES file produced invalid shape Test for 0023667: checkshape command does not detect problems in the attached shape Test for 0023671: pload function does not work if DRAWDEFAULT file has win format Test for 0024185: Wrong projection of a wire to a face Test for 0024215: Error in offset (bad curve) Test for 0024251: Command checkshape does not report a problem on first call after fixshape Test for 0024365: BRepAlgoAPI_Section wrong result, BRepAlgo_Section good result Test for 0024421: Sewing changes orientations of some subshapes. Test for 0024429: Cylinder-torus intersection throws an exception and produces no result
39 lines
1.8 KiB
Plaintext
39 lines
1.8 KiB
Plaintext
puts "REQUIRED All: Faulty shapes in variables faulty_1 to faulty_"
|
|
|
|
puts "TODO OCC24251 ALL: ERROR: OCC24251 is reproduced."
|
|
|
|
puts "========"
|
|
puts "OCC24251"
|
|
puts "========"
|
|
puts ""
|
|
#############################################################################
|
|
# Command checkshape does not report a problem on first call after fixshape
|
|
#############################################################################
|
|
|
|
restore [locate_data_file bug24899_TheHull.brep] r0
|
|
|
|
# First usage of checkshape command for r0
|
|
set bug_info_initial [checkshape r0]
|
|
|
|
# Calculate number of problematic sub-shapes before using fixshape command
|
|
set bug_info_initial [lindex $bug_info_initial [expr {[llength $bug_info_initial] - 1}]]
|
|
set bug_info_initial [string trim [string range $bug_info_initial [expr {[string last "_" $bug_info_initial] + 1}] [expr {[string length $bug_info_initial] - 1}]]]
|
|
|
|
fixshape r r0
|
|
|
|
# Second usage of checkshape command for r0
|
|
set bug_info_final [checkshape r0]
|
|
|
|
# ERROR if "This shape seems to be valid" after checkshape command
|
|
if {$bug_info_final == "This shape seems to be valid"} {
|
|
puts "ERROR: OCC24251 is reproduced. Second usage of checkshape command does not show problems"
|
|
} else {
|
|
# Calculate number of problematic sub-shapes on after using fixshape command
|
|
set bug_info_final [lindex $bug_info_final [expr {[llength $bug_info_final] - 1}]]
|
|
set bug_info_final [string trim [string range $bug_info_final [expr {[string last "_" $bug_info_final] + 1}] [expr {[string length $bug_info_final] - 1}]]]
|
|
# ERROR if result of first usage checkshape command is different from the second usage
|
|
if {$bug_info_final != $bug_info_initial} {
|
|
puts "ERROR: OCC24251 is reproduced. Second usage of checkshape command shows $bug_info_final problems, but first usage shows $bug_info_initial"
|
|
}
|
|
}
|