diff options
author | dan <[email protected]> | 2023-05-30 17:10:55 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-30 17:10:55 -0400 |
commit | 66d61a5546e5e0173f92e941ab489a1c6474473e (patch) | |
tree | 17ccb05b23b3c86bae385ec2f49f6a7fc424ff76 /runtests.sh | |
parent | 0ba0482710f0a3300c0743a2a986e117972e6ec8 (diff) | |
download | forth-66d61a5546e5e0173f92e941ab489a1c6474473e.tar.gz forth-66d61a5546e5e0173f92e941ab489a1c6474473e.tar.bz2 forth-66d61a5546e5e0173f92e941ab489a1c6474473e.zip |
feat: JIT-compiled ops are in an array
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh index 766850d..3900871 100755 --- a/runtests.sh +++ b/runtests.sh @@ -24,7 +24,7 @@ runtest () { if [ "1" -eq "$?" ] ; then echo "Test $n failed: $file" >&2 - echo "Diff: (expected vs actual)" >&2 + echo "Diff: (actual vs expected)" >&2 echo "$diff" exitcode=1 failed="$(expr "$failed" + 1)" |