]> 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>
Thu, 22 Feb 2018 11:14:41 +0000 (11: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.

(cherry picked from commit 30cd931a0d52744762472bfe7f1582bcf12bd6bf)

bin/tests/system/conf.sh.in

index 33511f3c61741f85cb24cf84024878c1911877a3..1693210dc704cd7943ddea3e74e2e88d7859fbc3 100644 (file)
@@ -215,11 +215,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
 }