1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0031006: Draw Harness - locate_data_file fails on path containing spaces

This commit is contained in:
kgv 2019-09-26 22:53:46 +03:00 committed by bugmaster
parent d9619512e1
commit c61c864f73

View File

@ -1117,34 +1117,35 @@ proc locate_data_file {filename} {
# check if the file is located in the subdirectory data of the script dir # check if the file is located in the subdirectory data of the script dir
set scriptfile [info script] set scriptfile [info script]
if { $scriptfile != "" } { if { "$scriptfile" != "" } {
set path [file join [file dirname $scriptfile] data $filename] set path [file join [file dirname "$scriptfile"] data "$filename"]
if { [file exists $path] } { if { [file exists "$path"] } {
return [file normalize $path] return [file normalize "$path"]
} }
} }
# check sub-directories in paths indicated by CSF_TestDataPath # check sub-directories in paths indicated by CSF_TestDataPath
if { [info exists env(CSF_TestDataPath)] } { if { [info exists env(CSF_TestDataPath)] } {
foreach dir [_split_path $env(CSF_TestDataPath)] { foreach dir [_split_path $env(CSF_TestDataPath)] {
while {[llength $dir] != 0} { set dir [list "$dir"]
set name [lindex $dir 0] while {[llength "$dir"] != 0} {
set dir [lrange $dir 1 end] set name [lindex "$dir" 0]
set dir [lrange "$dir" 1 end]
# skip directories starting with dot # skip directories starting with dot
set aTail [file tail $name] set aTail [file tail "$name"]
if { [regexp {^[.]} $aTail] } { continue } if { [regexp {^[.]} "$aTail"] } { continue }
if { [file exists $name/$filename] } { if { [file exists "$name/$filename"] } {
return [file normalize $name/$filename] return [file normalize "$name/$filename"]
} }
eval lappend dir [glob -nocomplain -directory $name -type d *] eval lappend dir [glob -nocomplain -directory "$name" -type d *]
} }
} }
} }
# check current datadir # check current datadir
if { [file exists [uplevel datadir]/$filename] } { if { [file exists "[uplevel datadir]/$filename"] } {
return [file normalize [uplevel datadir]/$filename] return [file normalize "[uplevel datadir]/$filename"]
} }
# raise error # raise error