mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
38 lines
1.2 KiB
Plaintext
Executable File
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"
|
|
}
|