diff options
Diffstat (limited to 'source/tests')
-rw-r--r-- | source/tests/_exe.c | 2 | ||||
-rw-r--r-- | source/tests/_static.c | 1 | ||||
-rw-r--r-- | source/tests/main.test.c | 9 |
3 files changed, 10 insertions, 2 deletions
diff --git a/source/tests/_exe.c b/source/tests/_exe.c new file mode 100644 index 0000000..39412dd --- /dev/null +++ b/source/tests/_exe.c @@ -0,0 +1,2 @@ +#include "../saw/_lib.c" +#include "main.test.c" diff --git a/source/tests/_static.c b/source/tests/_static.c deleted file mode 100644 index 8d1c8b6..0000000 --- a/source/tests/_static.c +++ /dev/null @@ -1 +0,0 @@ - diff --git a/source/tests/main.test.c b/source/tests/main.test.c index 8d1c8b6..14d3249 100644 --- a/source/tests/main.test.c +++ b/source/tests/main.test.c @@ -1 +1,8 @@ - +#define KIT_TEST_IMPLEMENTATION +#include "../kit/kit_test.h" + +int main(int argc, char **argv) { + return run_tests(argc, argv); +} + +#undef KIT_TEST_FILE |