aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2014-03-04 17:24:18 +0000
committerDavid Howells <dhowells@redhat.com>2014-03-06 15:13:07 +0000
commit3b7d25f87c410783b40941612c0965497daad53c (patch)
tree4f1edecccaef0e5b2fec4750ba4893613551f361
parent1423feaedad0ad0b5ffb6944bd0de5c35c8b1c3a (diff)
downloadkeyutils-3b7d25f87c410783b40941612c0965497daad53c.tar.gz
TEST: Display the name of the test we're about to run
Display the name of the test we're about to run to make it easier to work out which test went wrong. Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--tests/runtest.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 4197585..f74e18c 100644
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -13,6 +13,7 @@ fi
for i in ${TESTS}; do
export TEST=$i
pushd $i >/dev/null
+ echo "### RUNNING TEST $i"
bash ./runtest.sh || exit 1
popd >/dev/null
done