diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2024-06-06 03:09:00 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2024-06-06 03:09:00 -0300 |
commit | d865925d050f13e1097721d2b1f3ae352b49c484 (patch) | |
tree | 05d1c2bd1435571a1c4ae4064b2d50535cc87692 /build.sh | |
parent | 1f8140c95ced6b7ce291e16c26c80800fa4f1f9d (diff) |
Fix long string parsing
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh index 325b3a3..717b2d1 100755 --- a/build.sh +++ b/build.sh @@ -65,7 +65,9 @@ do_test() { test_wrapper 'out/bin/cratera test/interp-error.cratera nil 2>&1 | grep '\''nil value'\' test_wrapper 'out/bin/cratera test/interp-error.cratera table 2>&1 | grep '\''table value'\' test_wrapper 'out/bin/cratera test/interp-error.cratera metaerror 2>&1 | grep '\''overflow\|handling'\' - test_wrapper 'printf '\''_PROMPT=setmetatable({}, {__tostring=error})\n'\'' | out/bin/cratera -i 2>&1 ' # | grep '\''overflow\|handling'\' + test_wrapper 'printf '\''_PROMPT=setmetatable({}, {__tostring=error})\n'\'' | out/bin/cratera -i 2>&1 | grep '\''overflow\|handling'\' + test_wrapper 'out/bin/cratera test/line-numbers.cratera' + test_wrapper 'out/bin/cratera test/strings.cratera' ) || exit 2 } |