diff options
author | Linnnus <[email protected]> | 2025-04-10 05:21:36 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-04-15 00:54:43 +0000 |
commit | 7bd2461c849b4626653a4744427c904b87354bd7 (patch) | |
tree | 38ee0e0ac9408c989f3c50c0c6ff28492faf497d /src/unit/main.c | |
parent | 8dd0c4f27aae02dd60f029db4cf03f9902cba26f (diff) |
feat(core): Add tokenizer
Diffstat (limited to 'src/unit/main.c')
-rw-r--r-- | src/unit/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unit/main.c b/src/unit/main.c index 32df795..2b5c1e1 100644 --- a/src/unit/main.c +++ b/src/unit/main.c @@ -3,6 +3,7 @@ SUITE_EXTERN(std_allocator); SUITE_EXTERN(arena_allocator); SUITE_EXTERN(page_allocator); +SUITE_EXTERN(tokenizer); GREATEST_MAIN_DEFS(); @@ -12,6 +13,7 @@ int main(int argc, char **argv) { RUN_SUITE(std_allocator); RUN_SUITE(arena_allocator); RUN_SUITE(page_allocator); + RUN_SUITE(tokenizer); GREATEST_MAIN_END(); /* display results */ } |