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
70 lines
1.7 KiB
Plaintext
Executable File
70 lines
1.7 KiB
Plaintext
Executable File
puts "============"
|
|
puts "OCC23852"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# OSD_Path interprets unc paths incorrectly
|
|
#######################################################################
|
|
|
|
pload OCAF
|
|
|
|
set BugNumber OCC23852
|
|
|
|
if { [checkplatform -windows] } {
|
|
|
|
# Windows, #1
|
|
set OSD_Path "\\\\Server\\Shared\\Folder\\File.Extension"
|
|
puts "OSD_Path = ${OSD_Path}"
|
|
|
|
set Log [OSDPath ${OSD_Path}]
|
|
#
|
|
if { [regexp "Trek +: +\\|\\|Server\\|Shared\\|Folder" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Trek, #1: Error"
|
|
}
|
|
#
|
|
if { [regexp "Name +: +File" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Name, #1: Error"
|
|
}
|
|
#
|
|
if { [regexp "Extension +: +.Extension" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Extension, #1: Error"
|
|
}
|
|
|
|
# Windows, #2
|
|
set OSD_Path "//Server/Shared/Folder/File.Extension"
|
|
puts "OSD_Path = ${OSD_Path}"
|
|
|
|
set Log [OSDPath ${OSD_Path}]
|
|
#
|
|
if { [regexp "Trek +: +||Server|Shared|Folder" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Trek, #2: Error"
|
|
}
|
|
#
|
|
if { [regexp "Name +: +File" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Name, #2: Error"
|
|
}
|
|
#
|
|
if { [regexp "Extension +: +.Extension" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Extension, #2: Error"
|
|
}
|
|
|
|
} else {
|
|
# Linux
|
|
set OSD_Path "//Server/Shared/Folder/File.Extension"
|
|
puts "OSD_Path = ${OSD_Path}"
|
|
|
|
set Log [OSDPath ${OSD_Path}]
|
|
#
|
|
if { [regexp "Trek +: +||Server|Shared|Folder" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Trek: Error"
|
|
}
|
|
#
|
|
if { [regexp "Name +: +File" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Name: Error"
|
|
}
|
|
#
|
|
if { [regexp "Extension +: +.Extension" ${Log}] != 1 } {
|
|
puts "${BugNumber}, Extension: Error"
|
|
}
|
|
}
|