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
42 lines
957 B
Plaintext
42 lines
957 B
Plaintext
# in tests expression "set AddToDocument ASSEMBLY_C_L" means creating assembly and initializing colors and layers
|
|
# and expression "set AddToDocument COLORS_LAYERS" means initializing colors and layers
|
|
#
|
|
if { [array get Draw_Groups "TOPOLOGY Feature commands"] == "" } {
|
|
pload OCAF
|
|
pload TOPTEST
|
|
pload XDE
|
|
}
|
|
|
|
cpulimit 1000
|
|
|
|
set ErrorCode 0
|
|
##############
|
|
### ErrorCode means :
|
|
### 0 - Success
|
|
### 1 - Warning
|
|
### 2 - Error
|
|
###############
|
|
|
|
#if {[string compare [datadir] "."] == 0} {
|
|
# datadir [file dirname [info script]]/data
|
|
#}
|
|
|
|
if { [info exists imagedir] == 0 } {
|
|
set imagedir .
|
|
}
|
|
if { [info exists test_image ] == 0 } {
|
|
set test_image photo
|
|
}
|
|
|
|
#set WorkDirectory "$env(TmpDir)"
|
|
set WorkDirectory $imagedir
|
|
|
|
if {![file exists $WorkDirectory]} {
|
|
catch {[file mkdir $WorkDirectory]}
|
|
} else {
|
|
if {![file isdirectory $WorkDirectory]} {
|
|
puts "The assigned work directory $WorkDirectory is not directory! Exit ..."
|
|
exit
|
|
}
|
|
}
|