diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 14:06:17 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 14:06:17 -0400 |
commit | 4f2644f354184d5febc1aa8f37e987eca03f7f25 (patch) | |
tree | 9f35a24eee9c46ddbc14c59909b4d5b1dfad0e62 /tests/main.c | |
parent | ee88497b4451225c3140f56d98ebcbc166175407 (diff) |
More tests; fix locations
Diffstat (limited to 'tests/main.c')
-rw-r--r-- | tests/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/main.c b/tests/main.c index ff68df3..2b2bfae 100644 --- a/tests/main.c +++ b/tests/main.c @@ -25,6 +25,7 @@ int main(int argc, char **argv) { const char *test_dir = argc == 2 ? argv[1] : "../tests"; test_parsing(test_dir); test_errors(test_dir); + test_location(test_dir); if (any_failure) { fprintf(stderr, "\x1b[1m\x1b[91mSome tests failed.\x1b[0m\n"); return EXIT_FAILURE; |