From 85a75c4ca9a7b9f715b8408e81f629df7038c44d Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Tue, 27 Jan 2009 02:27:23 +0000 Subject: [PATCH] If we're looping more than once, print out the iteration --- tests/run.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/run.in b/tests/run.in index 230c7bc5f2..f09ae11ca0 100644 --- a/tests/run.in +++ b/tests/run.in @@ -227,6 +227,9 @@ LDAPNOINIT=true; export LDAPNOINIT echo "Running ${SCRIPT}..." while [ $COUNTER -le $LOOP ]; do + if [ $LOOP -gt 1 ]; then + echo "Running $COUNTER of $LOOP iterations" + fi $SCRIPT $* RC=$? -- 2.39.5