diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-12-28 16:16:26 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-12-28 16:16:26 +0100 |
| commit | 8a366cebda597e960f1f49e245785f8fdedff0a6 (patch) | |
| tree | 3de574809e4cb8b2644ec4691f25c611afe954c2 /sam | |
| parent | 4d236db3a9d0a7a4f9d07bd1204c24c58d5ac759 (diff) | |
| download | vis-8a366cebda597e960f1f49e245785f8fdedff0a6.tar.gz vis-8a366cebda597e960f1f49e245785f8fdedff0a6.tar.xz | |
Make sure that info messages are printed before test case is run
Useful for hanging tests also redirect stdout to /dev/null for
better output on Travis.
Diffstat (limited to 'sam')
| -rwxr-xr-x | sam/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sam/test.sh b/sam/test.sh index 0d904ff..3b3a1a5 100755 --- a/sam/test.sh +++ b/sam/test.sh @@ -73,7 +73,7 @@ for t in $TESTS; do printf "Running test %s with vis ... " "$t" - $VIS "+,{ $NL $CMD $NL wq! $VIS_OUT $NL }" "$IN" 2>/dev/null + $VIS "+,{ $NL $CMD $NL wq! $VIS_OUT $NL }" "$IN" >/dev/null 2>&1 if [ $? -ne 0 -o ! -e "$VIS_OUT" ]; then printf "ERROR\n" elif cmp -s "$REF" "$VIS_OUT"; then |
