From 4a29e3ba65d686f83f514b81c6e075185fb8ab6c Mon Sep 17 00:00:00 2001 From: Stephen Morris Date: Thu, 15 Feb 2018 15:55:57 +0000 Subject: [PATCH] [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. (cherry picked from commit 30cd931a0d52744762472bfe7f1582bcf12bd6bf) (cherry picked from commit 78f29760878ea80cfdf2ca5892f2c599048a29f0) --- bin/tests/system/conf.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in index 66c42568c78..d5be8f01a2a 100644 --- a/bin/tests/system/conf.sh.in +++ b/bin/tests/system/conf.sh.in @@ -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 } -- 2.47.3