From: Stephen Morris Date: Thu, 15 Feb 2018 15:55:57 +0000 (+0000) Subject: [rt46602] Change name of shell variable holding current test directory X-Git-Tag: v9.13.0~158^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30cd931a0d52744762472bfe7f1582bcf12bd6bf;p=thirdparty%2Fbind9.git [rt46602] Change name of shell variable holding current test directory 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. --- diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in index 30fc009f7cc..1d0d55fbe18 100644 --- a/bin/tests/system/conf.sh.in +++ b/bin/tests/system/conf.sh.in @@ -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 }