aboutsummaryrefslogtreecommitdiff
path: root/lua/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lua/test.sh')
-rwxr-xr-xlua/test.sh5
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"