run-tests.sh: Print the test name correctly when VERBOSE=1

This commit is contained in:
Petri Lehtinen 2010-01-28 20:57:52 +02:00
parent aaae37afba
commit d8ea2f8c4b

View File

@ -29,7 +29,7 @@ for test_path in $suite_srcdir/*; do
rm -rf $test_log rm -rf $test_log
mkdir -p $test_log mkdir -p $test_log
if [ $VERBOSE -eq 1 ]; then if [ $VERBOSE -eq 1 ]; then
echo -n "$name... " echo -n "$test_name... "
fi fi
if run_test; then if run_test; then