mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023952: Improving thread-safety of intersections, approximations and other modeling algorithms
Modified QAcommands OCC23952sweep and OCC23952intersect to prevent exception in appropriate test cases
This commit is contained in:
parent
fee4fa0f01
commit
85c44a05a0
@ -435,6 +435,7 @@ static Standard_Integer OCC23952sweep (Draw_Interpretor& di, Standard_Integer ar
|
||||
OSD_Thread aThread1(convert);
|
||||
aThread1.Run(&aStorage);
|
||||
GeomConvertTest(di,aStorage.nbupoles,aStorage.filename);
|
||||
cout << "result of thread: " << aThread1.Wait() << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -483,6 +484,7 @@ static Standard_Integer OCC23952intersect (Draw_Interpretor& di, Standard_Intege
|
||||
OSD_Thread aThread1(convert_inter);
|
||||
aThread1.Run(&aStorage);
|
||||
GeomIntSSTest(di,aStorage.nbsol,aStorage.filename1,aStorage.filename2);
|
||||
cout << "result of thread: " << aThread1.Wait() << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
19
tests/bugs/modalg_5/bug23952_1
Normal file
19
tests/bugs/modalg_5/bug23952_1
Normal file
@ -0,0 +1,19 @@
|
||||
puts "================"
|
||||
puts "OCC23952"
|
||||
puts "================"
|
||||
puts ""
|
||||
###########################################################################################
|
||||
# Improving thread-safety of intersections, approximations and other modeling algorithms
|
||||
###########################################################################################
|
||||
|
||||
pload QAcommands
|
||||
restore [locate_data_file bug23952_trim-torus.draw] a
|
||||
|
||||
set NbUPoles 18
|
||||
set info [OCC23952sweep $NbUPoles a]
|
||||
|
||||
if { [regexp "theTargetNbUPoles: OK" $info] != 1 } {
|
||||
puts "Error : Number of UPoles is incorrect"
|
||||
} else {
|
||||
puts "OK: Number of UPoles is correct"
|
||||
}
|
21
tests/bugs/modalg_5/bug23952_2
Normal file
21
tests/bugs/modalg_5/bug23952_2
Normal file
@ -0,0 +1,21 @@
|
||||
puts "================"
|
||||
puts "OCC23952"
|
||||
puts "================"
|
||||
puts ""
|
||||
###########################################################################################
|
||||
# Improving thread-safety of intersections, approximations and other modeling algorithms
|
||||
###########################################################################################
|
||||
|
||||
pload QAcommands
|
||||
restore [locate_data_file bug23952_s1.draw] a
|
||||
restore [locate_data_file bug23952_s2.draw] b
|
||||
|
||||
set NbLines 5
|
||||
set info [OCC23952intersect $NbLines a b]
|
||||
|
||||
if { [regexp "theNbSol: OK" $info] != 1 } {
|
||||
puts "Error : Number of intersections is incorrect"
|
||||
} else {
|
||||
puts "OK: Number of intersections is correct"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user