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
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

25 lines
659 B
Plaintext

puts "========"
puts "OCC29182"
puts "========"
puts ""
#################################################
# BOPAlgo_PaveFiller sometimes raises exception in parallel mode
#################################################
binrestore [locate_data_file bug29182_access_violation.bin] a
explode a So
bclearobjects
bcleartools
baddobjects a_1
baddtools a_2 a_3 a_4 a_5 a_6 a_7 a_8 a_9 a_10 a_11 a_12
brunparallel 1
bfillds
bbuild result
checknbshapes result -m result -shell 17 -solid 17
checkprops result -v 1.18596e+006 -s 1.28028e+006
checkshape result
if ![regexp "This shape seems to be OK" [bopcheck result]] {
puts "Error: result is self-intersected"
}