mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
DCAF require VISUALIZATION for correct work. In some scenario DRAWEXE can generate a dublicates of the internal static singletons. This means each dynamic library will have their own instance of the static singleton. Update all direct library loading to use the DCAF plugin mechanism. This will ensure that the DCAF plugin is loaded only once and that the correct instance is used. Originally issue is reproduced only Linux with dlopen with "RTLD_LAZY". Can be resolved additionally adding "RTLD_LAZY | RTLD_GLOBAL" for dlopen
41 lines
891 B
Plaintext
41 lines
891 B
Plaintext
puts "================"
|
|
puts "CR23733"
|
|
puts "================"
|
|
puts ""
|
|
###############################################
|
|
## PCurve for edge on face creation failure
|
|
###############################################
|
|
|
|
pload OCAF TOPTEST
|
|
|
|
Open [locate_data_file bug_glue_edges_GEOM.cbf] D
|
|
|
|
GetShape D 0:1:9686:1:1:2 s1
|
|
GetShape D 0:1:9449:1:1:2 s2
|
|
explode s1 e
|
|
explode s2 f
|
|
|
|
#should create pcurve
|
|
bhaspc s1_100 s2_2 do
|
|
#should report OK
|
|
set info1 [bhaspc s1_100 s2_2]
|
|
if { [regexp {No} ${info1}] == 1 } {
|
|
puts "Faulty: No 2D curves detected"
|
|
}
|
|
|
|
#should create pcurve
|
|
bhaspc s1_40 s2_54 do
|
|
#should report OK
|
|
set info2 [bhaspc s1_40 s2_54]
|
|
if { [regexp {No} ${info2}] == 1 } {
|
|
puts "Faulty: No 2D curves detected"
|
|
}
|
|
|
|
#should create pcurve
|
|
bhaspc s1_22 s2_123 do
|
|
#should report OK
|
|
set info3 [bhaspc s1_22 s2_123]
|
|
if { [regexp {No} ${info3}] == 1 } {
|
|
puts "Faulty: No 2D curves detected"
|
|
}
|