From c0310e95ba22fe548fe270b4af51065aceb17dcb Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Thu, 15 Nov 2018 18:21:18 +1100 Subject: * runtest.exp (load_tool_init): Search for tool init file instead of assuming exactly one location. Signed-off-by: Ben Elliston --- runtest.exp | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) (limited to 'runtest.exp') diff --git a/runtest.exp b/runtest.exp index c7beeb3..5ced8ab 100644 --- a/runtest.exp +++ b/runtest.exp @@ -929,25 +929,21 @@ proc load_tool_init { file } { global srcdir global loaded_libs - if {[info exists loaded_libs($file)]} { + if {[info exists loaded_libs(tool/$file)]} { return } - set loaded_libs($file) "" - - verbose "Looking for tool init file $srcdir/lib/$file" + set loaded_libs(tool/$file) "" - if {[file exists [file join ${srcdir} lib $file]]} { - verbose "Loading library file ${srcdir}/lib/$file" - if { [catch "uplevel #0 source ${srcdir}/lib/$file"] == 1 } { - send_error "ERROR: tcl error sourcing library file ${srcdir}/lib/$file.\n" - global errorInfo - if {[info exists errorInfo]} { - send_error "$errorInfo\n" - } - exit 1 - } + if { [lindex [file split $srcdir] end] != "testsuite" } { + lappend searchpath [file join $srcdir testsuite lib tool] + lappend searchpath [file join $srcdir testsuite lib] } else { + lappend searchpath [file join $srcdir lib tool] + } + lappend searchpath [file join $srcdir lib] + + if { ![search_and_load_file "tool init file" [list $file] $searchpath] } { warning "Couldn't find tool init file" } } -- cgit v1.1