From: Michal Sojka Date: Thu, 6 Feb 2014 08:15:58 +0000 (+0100) Subject: Send wvtest output to stdout rather than to stderr X-Git-Tag: fix-allnoconfig~29 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/378b25a1e883408bf364190bcfe3a8a7146abd2b?ds=sidebyside Send wvtest output to stdout rather than to stderr It seems that we have problems with synchronization between stdout and stderr. Before this problem is resolved, this should work around it. --- diff --git a/continuous/tests/wvtest.sh b/continuous/tests/wvtest.sh index 47b4366..c52e475 100644 --- a/continuous/tests/wvtest.sh +++ b/continuous/tests/wvtest.sh @@ -44,7 +44,7 @@ _wvcheck() if [ "$CODE" -ne 0 ]; then OK=FAILED fi - echo "! $WVCALLER_FILE:$WVCALLER_LINE $TEXT $OK" >&2 + echo "! $WVCALLER_FILE:$WVCALLER_LINE $TEXT $OK" if [ "$CODE" -ne 0 ]; then exit $CODE else @@ -134,7 +134,7 @@ WVFAILRC() WVSTART() { - echo >&2 + echo _wvfind_caller - echo "Testing \"$*\" in $WVCALLER_FILE:" >&2 + echo "Testing \"$*\" in $WVCALLER_FILE: }