]> 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)
committerEvan Hunt <each@isc.org>
Sun, 25 Feb 2018 03:53:34 +0000 (19:53 -0800)
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)
(cherry picked from commit 78f29760878ea80cfdf2ca5892f2c599048a29f0)

bin/tests/system/conf.sh.in

index 66c42568c78208822aeac346069d59230b241ab7..d5be8f01a2a98c1dcf2b60f4928d324c8dedbbfc 100644 (file)
@@ -214,11 +214,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
 }