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:
parent
bf714c8477
commit
afb2781582
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
40
tests/bugs/modalg_6/bug26929
Normal file
40
tests/bugs/modalg_6/bug26929
Normal 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
|
Loading…
x
Reference in New Issue
Block a user