From 0591d3db3a10f5b7e8788a856b708dd0c14a971e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 24 Feb 2024 15:32:02 -0500 Subject: [PATCH] Rename folder --- Makefile | 2 +- {tests => test}/arrays.nl | 0 {tests => test}/enums.nl | 0 {tests => test}/integers.nl | 0 {tests => test}/structs.nl | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {tests => test}/arrays.nl (100%) rename {tests => test}/enums.nl (100%) rename {tests => test}/integers.nl (100%) rename {tests => test}/structs.nl (100%) 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