1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/demo/bug23671
dpasukhi 5e43274280 0033337: DRAW - Can't load plugins on Linux OS
WSL 2 have windows FileSystem and as a result we have \r symbols before \n
For this cases we can just remove \r\n (\n is a last symbol) for the node value.
2023-03-20 23:11:35 +00:00

38 lines
1.2 KiB
Plaintext
Executable File

puts "============"
puts "CR23671"
puts "============"
puts ""
##########################################################################################################
# pload function does not work if $DRAWDEFAULT file has win format
##########################################################################################################
set aDrawPlugin [locate_data_file DrawPlugin]
set aDrawPluginDefaults [ file dirname ${aDrawPlugin} ]
dgetenv CSF_DrawPluginDefaults
dgetenv DRAWDEFAULT
dsetenv CSF_DrawPluginDefaults ${aDrawPluginDefaults}
dsetenv DRAWDEFAULT ${aDrawPlugin}
dgetenv CSF_DrawPluginDefaults
dgetenv DRAWDEFAULT
if [catch {pload} info] {
puts "Error: pload function does not work if \$DRAWDEFAULT file has win format"
} else {
puts "OK: pload function work if \$DRAWDEFAULT file has win format"
}
if [catch {pload -DrawPlugin} info] {
puts "Error: pload function does not work if \$DRAWDEFAULT file has win format"
} else {
puts "OK: pload function work if \$DRAWDEFAULT file has win format"
}
if [catch {pload XDE} info] {
puts "Error: pload function does not work if \$DRAWDEFAULT file has win format"
} else {
puts "OK: pload function work if \$DRAWDEFAULT file has win format"
}