summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
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=$?