diff --git a/Makefile b/Makefile index e44a17e..4325c35 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ tags: ctags *.[ch] **/*.[ch] test: nextlang - for f in tests/*; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./nextlang "$$f" || break; done + for f in test/*; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./nextlang "$$f" || break; done clean: rm -f nextlang *.o SipHash/halfsiphash.o builtins/*.o libnext.so diff --git a/tests/arrays.nl b/test/arrays.nl similarity index 100% rename from tests/arrays.nl rename to test/arrays.nl diff --git a/tests/enums.nl b/test/enums.nl similarity index 100% rename from tests/enums.nl rename to test/enums.nl diff --git a/tests/integers.nl b/test/integers.nl similarity index 100% rename from tests/integers.nl rename to test/integers.nl diff --git a/tests/structs.nl b/test/structs.nl similarity index 100% rename from tests/structs.nl rename to test/structs.nl