1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_7/bug29182_1
msv 56c62737ee 0029182: BOPAlgo_PaveFiller sometimes raises exception in parallel mode
Data races have been prevented in the code of BOPAlgo_PaveFiller that makes pcurves of edges on faces. For that:
- Put into treatment only unique edge-face pairs.
- If the same edge is treated with different faces in different threads simultaneously this also causes data races. To avoid this make the edge's copy in each thread and update the copy. The original edge is updated only after finishing parallel processing.

The new method BOPTools_AlgoTools::CopyEdge has been added to make a copy of an edge with vertices.

Big screenshot in the test script tests/bugs/modalg_7/bug28200 has been replaced with a small one.
2017-10-19 12:26:47 +03:00

42 lines
889 B
Plaintext

puts "========"
puts "OCC29182"
puts "========"
puts ""
#################################################
# BOPAlgo_PaveFiller sometimes raises exception in parallel mode
#################################################
# This is synthetic case reproducing the bug.
# Make a set of cylindrical surface patches intersecting in the same
# 3d line and run bfillds on them repeatedly 100 times.
cylinder c 0 10 0 1 0 0 10
mkface fc c pi/3 2*pi/3 -10 10
shape a C
add fc a
don a
for {set i 1} {$i <= 10} {incr i} {
copy fc f1
trotate f1 0 0 0 1 0 0 $i*5
add f1 a
}
brunparallel 1
bclearobjects
bcleartools
baddcompound a
for {set i 1} {$i <= 100} {incr i} {
puts "pass $i"
set info [string trim [bfillds]]
if {$info != "" && [regexp "2D curve" $info]} {
break
}
}
if {$i <= 100} {
puts "Error: the bug with failure building 2D curve of edge on face is reproduced"
}