diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-12-30 21:18:29 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-12-30 21:18:29 +0100 |
| commit | 6d922985a29316de496088172926d39e6bdf8003 (patch) | |
| tree | 930d5318cfe48259a8314a36d23ba65f03214b19 /lua | |
| parent | 2300572deccb81c833ce1a3b5e681ecc6d5f7520 (diff) | |
| download | vis-6d922985a29316de496088172926d39e6bdf8003.tar.gz vis-6d922985a29316de496088172926d39e6bdf8003.tar.xz | |
Revert "Make sure that info messages are printed before test case is run"
This reverts commit 8a366cebda597e960f1f49e245785f8fdedff0a6.
Travis is strange.
Diffstat (limited to 'lua')
| -rwxr-xr-x | lua/test.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/test.sh b/lua/test.sh index d0e6a1a..4209f5c 100755 --- a/lua/test.sh +++ b/lua/test.sh @@ -18,10 +18,9 @@ for t in $test_files; do TESTS_RUN=$((TESTS_RUN + 1)) t=${t%.in} t=${t#./} - printf "%-30s" "$t" - - $VIS "$t".in < /dev/null > /dev/null 2>&1 + $VIS "$t".in < /dev/null 2> /dev/null + printf "%-30s" "$t" if [ -e "$t".out ]; then if cmp -s "$t".ref "$t".out 2> /dev/null; then printf "PASS\n" |
