summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-26 13:11:00 +0100
committerubq323 <ubq323@ubq323.website>2024-06-26 13:11:00 +0100
commitc1ad2da9bd1497737c46c53e27f915cc26bc49a6 (patch)
tree5f701f22a0eed7d09056e1eafe1d60a9a48832a9 /run_tests.sh
parent63206b605c36140f2bd476e054b8318c8b08f472 (diff)
remove explicit toplevel (do ...) from tests
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 073d12c..63b85aa 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -5,7 +5,7 @@ fail=0
for testfile in tests/*.bth; do
outfile=${testfile%.bth}.out
- output="$(./bth <$testfile 2>&1)"
+ output="$(./bth $testfile 2>&1)"
run_res=$?
echo "$output" | diff $outfile - >/dev/null
diff_res=$?