1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
occt/tests/bugs/step/bug30856
dpasukhi ea86bfe2fa Testing - Removing direct DCAF loading #147
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
2024-11-05 17:00:06 +00:00

49 lines
1.2 KiB
Plaintext

puts "========================"
puts "0030856: Wrong colors after STEP file import"
puts "========================"
pload OCAF
ReadStep D1 [locate_data_file bug30856_SOT223-4P230_700X190L65X72.step]
WriteStep D1 $imagedir/${casename}.stp
ReadStep D2 $imagedir/${casename}.stp
# Check colors
# Blue
set color1 [XGetShapeColor D1 0:1:1:1:1 s]
set color2 [XGetShapeColor D2 0:1:1:1:1 s]
if {$color1 != "BLUE" || $color2 != "BLUE"} {
puts "Error: wrong color."
}
# Gray
set color1 [XGetShapeColor D1 0:1:1:1:2 s]
set color2 [XGetShapeColor D2 0:1:1:1:2 s]
if {$color1 != "GRAY" || $color2 != "GRAY"} {
puts "Error: wrong color."
}
set color1 [XGetShapeColor D1 0:1:1:1:3 s]
set color2 [XGetShapeColor D2 0:1:1:1:3 s]
if {$color1 != "GRAY" || $color2 != "GRAY"} {
puts "Error: wrong color."
}
set color1 [XGetShapeColor D1 0:1:1:1:4 s]
set color2 [XGetShapeColor D2 0:1:1:1:4 s]
if {$color1 != "GRAY" || $color2 != "GRAY"} {
puts "Error: wrong color."
}
# White
set color1 [XGetShapeColor D1 0:1:1:1:30 s]
set color2 [XGetShapeColor D2 0:1:1:1:30 s]
if {$color1 != "WHITE" || $color2 != "WHITE"} {
puts "Error: wrong color."
}
# Clean data
Close D1
Close D2
file delete $imagedir/${casename}.stp