summaryrefslogtreecommitdiffstats
path: root/test.sh
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-07-26 19:05:46 +0200
committerLouis Burda <quent.burda@gmail.com>2023-07-26 19:07:22 +0200
commit29465804bb9f3bc0eb0f538ec450e9177c0c4767 (patch)
tree25c48b99b944c1b8cfa166023643c9206126c8d7 /test.sh
parent130db985e5594204897ad28d7463e7e9b5ef94c7 (diff)
downloadtis100-29465804bb9f3bc0eb0f538ec450e9177c0c4767.tar.gz
tis100-29465804bb9f3bc0eb0f538ec450e9177c0c4767.zip
Implement limited integer literal parsing
Diffstat (limited to 'test.sh')
-rw-r--r--test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index ad786c7..ff254af 100644
--- a/test.sh
+++ b/test.sh
@@ -5,7 +5,7 @@ for f in test/*.asm; do
in="$(echo "$f" | cut -d. -f1).in"
out="$(echo "$f" | cut -d. -f1).out"
tmp="/tmp/tis-test.out"
- ./tis-as "$f" "$in" "$tmp"
+ ./tis100 "$f" "$in" "$tmp"
if [ $? -ne 0 ]; then
echo "$f"
elif ! diff "$out" "$tmp"; then