aboutsummaryrefslogtreecommitdiff
path: root/runtest.exp
diff options
context:
space:
mode:
authorJacob Bachmeyer <jcb62281+dev@gmail.com>2020-05-28 18:34:47 -0500
committerJacob Bachmeyer <jcb62281+dev@gmail.com>2020-05-28 18:34:47 -0500
commit10191e1d8d56dae0999fe8d1438fd04537249f41 (patch)
tree0f5d85b3f1a9b71ba55374d56ccfefa2cef9524b /runtest.exp
parent5405dc038da030364ccaecb0b13c8c3ba485b380 (diff)
downloaddejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.zip
dejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.tar.gz
dejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.tar.bz2
Fix default value of libdir global
This was causing testsuite/runtest.main/stats.exp to fail unless the DejaGnu sources were in a directory named dejagnu.
Diffstat (limited to 'runtest.exp')
-rw-r--r--runtest.exp5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtest.exp b/runtest.exp
index 6a53a56..9380732 100644
--- a/runtest.exp
+++ b/runtest.exp
@@ -700,7 +700,10 @@ verbose "Testsuite root is $testsuitedir"
verbose "Tool root directory is $tool_root_dir"
set execpath [file dirname $argv0]
-set libdir [file dirname $execpath]/dejagnu
+
+# The runtest.exp file is installed directly in libdir.
+# Conveniently, the source tree layout is the same as the installed libdir.
+set libdir [file dirname $argv0]
if {[info exists env(DEJAGNULIBS)]} {
set libdir $env(DEJAGNULIBS)
}