1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026929: Extrema_ECC hang/crash

Comparator functor corrected to return false in the case of equal elements.
Test case added.
This commit is contained in:
msv 2016-03-26 20:42:49 +03:00 committed by bugmaster
parent bf714c8477
commit afb2781582
2 changed files with 41 additions and 1 deletions

View File

@ -38,7 +38,7 @@ static Standard_Boolean comp(const gp_XY& theA,
{ {
if (theA.X() == theB.X()) if (theA.X() == theB.X())
{ {
if (theA.Y() <= theB.Y()) if (theA.Y() < theB.Y())
return Standard_True; return Standard_True;
} }
} }

View File

@ -0,0 +1,40 @@
puts "============"
puts "OCC26929"
puts "============"
puts ""
#############################################################################################
## Extrema_ECC hang/crash in ShapeSplitter
#############################################################################################
cpulimit 100
restore [locate_data_file OCC26629-face.brep] aF
restore [locate_data_file OCC26629-edge.brep] aE
pload MODELING
# Hang check.
dchrono cr reset
dchrono cr start
set ss ""
foreach s [explode aE e] {set ss "$ss aF $s"}
eval splitshape result aF $ss
dchrono cr stop
set max_time 20.0
set log [dchrono cr show]
regexp {CPU user time: ([-0-9.+eE]+) seconds} $log full z
if { $z > ${max_time} } {
puts "Elapsed time of BRepFeat_SplitShape is more than ${max_time} seconds - Error"
} else {
puts "Elapsed time of BRepFeat_SplitShape is less than ${max_time} seconds - OK"
}
# Check result validity.
checkshape result
# Visual check.
set 2dviewer 1