From c61c864f7353ccfc49628f5061e0a999e17a5dc8 Mon Sep 17 00:00:00 2001 From: kgv Date: Thu, 26 Sep 2019 22:53:46 +0300 Subject: [PATCH] 0031006: Draw Harness - locate_data_file fails on path containing spaces --- src/DrawResources/TestCommands.tcl | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/DrawResources/TestCommands.tcl b/src/DrawResources/TestCommands.tcl index d3626b1202..5363fabe84 100644 --- a/src/DrawResources/TestCommands.tcl +++ b/src/DrawResources/TestCommands.tcl @@ -1117,34 +1117,35 @@ proc locate_data_file {filename} { # check if the file is located in the subdirectory data of the script dir set scriptfile [info script] - if { $scriptfile != "" } { - set path [file join [file dirname $scriptfile] data $filename] - if { [file exists $path] } { - return [file normalize $path] + if { "$scriptfile" != "" } { + set path [file join [file dirname "$scriptfile"] data "$filename"] + if { [file exists "$path"] } { + return [file normalize "$path"] } } # check sub-directories in paths indicated by CSF_TestDataPath if { [info exists env(CSF_TestDataPath)] } { foreach dir [_split_path $env(CSF_TestDataPath)] { - while {[llength $dir] != 0} { - set name [lindex $dir 0] - set dir [lrange $dir 1 end] + set dir [list "$dir"] + while {[llength "$dir"] != 0} { + set name [lindex "$dir" 0] + set dir [lrange "$dir" 1 end] # skip directories starting with dot - set aTail [file tail $name] - if { [regexp {^[.]} $aTail] } { continue } - if { [file exists $name/$filename] } { - return [file normalize $name/$filename] + set aTail [file tail "$name"] + if { [regexp {^[.]} "$aTail"] } { continue } + if { [file exists "$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 - if { [file exists [uplevel datadir]/$filename] } { - return [file normalize [uplevel datadir]/$filename] + if { [file exists "[uplevel datadir]/$filename"] } { + return [file normalize "[uplevel datadir]/$filename"] } # raise error