diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2024-06-09 13:02:25 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2024-06-09 13:02:25 -0300 |
commit | ca6e4d141484331a25cfa67cf370000b74d7725f (patch) | |
tree | c157a393a202044f08b02a35c5e055f3f1ba6243 /build.sh | |
parent | 2751039739e5357beb8e858a25e21e2bc0344fe8 (diff) |
Add hashmap implementation
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build.sh b/build.sh index 717b2d1..5efef89 100755 --- a/build.sh +++ b/build.sh @@ -68,6 +68,8 @@ do_test() { 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' + test_wrapper 'out/bin/cratera test/defaultbucket.cratera' + test_wrapper 'out/bin/cratera test/bucketmap-tests.cratera' ) || exit 2 } |