]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[rt46602] Change name of shell variable holding current test directory
authorStephen Morris <stephen@isc.org>
Thu, 15 Feb 2018 15:55:57 +0000 (15:55 +0000)
committerStephen Morris <stephen@isc.org>
Fri, 16 Feb 2018 16:14:40 +0000 (16:14 +0000)
It was TESTNAME, but this is an obvious name and was used in one of
the system tests, something that interfered with the content of
progress messages.  It is now SYSTESTDIR.

bin/tests/system/conf.sh.in

index 30fc009f7cc4de11bd860c381a0b8945fec652d0..1d0d55fbe18ea7f95aba78e7f6e673bdf8c71fd0 100644 (file)
@@ -216,11 +216,11 @@ else
        }
 fi
 
-TESTNAME="`basename $PWD`"
+SYSTESTDIR="`basename $PWD`"
 
 echo_i() {
     echo "$@" | while read LINE ; do
-       echoinfo "I:$TESTNAME:$LINE"
+       echoinfo "I:$SYSTESTDIR:$LINE"
     done
 }