From e34e8782a979b372c521d460511d82d87f5a3646 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 6 Oct 2005 12:48:03 +0000 Subject: - support make check V=1 to run the checks in verbose mode - pass verbose from runtest to testing.sh --- testsuite/testing.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'testsuite/testing.sh') diff --git a/testsuite/testing.sh b/testsuite/testing.sh index b7c85c227..83727f6d3 100755 --- a/testsuite/testing.sh +++ b/testsuite/testing.sh @@ -54,7 +54,7 @@ config_is_set () # The testing function -testing() +testing () { if [ $# -ne 5 ] then @@ -62,11 +62,11 @@ testing() exit fi - if [ "$debug" = "1" ] ; then + if [ $debug -eq 1 ] ; then set -x fi - if [ -n "$_BB_CONFIG_DEP" ] && [ "${force}" = "0" ] + if [ -n "$_BB_CONFIG_DEP" ] && [ ${force} -eq 0 ] then if ! config_is_set "$_BB_CONFIG_DEP" then @@ -85,7 +85,7 @@ testing() then ((FAILCOUNT++)) echo "FAIL: $1" - if [ "$verbose" = "1" ] + if [ $verbose -eq 1 ] then diff -u expected actual fi @@ -94,7 +94,7 @@ testing() fi rm -f input expected actual - if [ "$debug" = "1" ] ; then + if [ $debug -eq 1 ] ; then set +x fi -- cgit v1.2.3