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
34 lines
895 B
Plaintext
34 lines
895 B
Plaintext
puts "==============================================================="
|
|
puts "0030789: Data Exchange - Some names are lost during STEP import"
|
|
puts "==============================================================="
|
|
puts ""
|
|
|
|
# Load file
|
|
|
|
pload OCAF
|
|
ReadStep D [locate_data_file bug30789.stp]
|
|
|
|
# Check several names came from problematic entities
|
|
set name [GetName D 0:1:1:10]
|
|
if {$name != "F5347130221100"} {
|
|
puts "Error: name of entity is lost."
|
|
}
|
|
set name [GetName D 0:1:1:20]
|
|
if {$name != "A5397301720500"} {
|
|
puts "Error: name of entity is lost."
|
|
}
|
|
set name [GetName D 0:1:1:34]
|
|
if {$name != "F5349193000400-CUT01"} {
|
|
puts "Error: name of entity is lost."
|
|
}
|
|
set name [GetName D 0:1:1:48]
|
|
if {$name != "F5349195500100-FLX05"} {
|
|
puts "Error: name of entity is lost."
|
|
}
|
|
set name [GetName D 0:1:1:74]
|
|
if {$name != "F5349193500000-FLX10"} {
|
|
puts "Error: name of entity is lost."
|
|
}
|
|
|
|
Close D
|