diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-12-03 08:17:56 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-12-03 08:17:56 +0100 |
commit | 7b82aa798a95d93e9c4361dfed12d2a5313e01cb (patch) | |
tree | c2399d175c89f20a4c8d29b422fb508e59f62352 /tests | |
parent | 22431a1305d1eb9f1c066f94313e04021a3a59a0 (diff) | |
download | engine-7b82aa798a95d93e9c4361dfed12d2a5313e01cb.tar.gz |
improved tests management
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 6 | ||||
-rw-r--r-- | tests/test.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..090b103 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,6 @@ +TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh +AM_TESTS_ENVIRONMENT = CRITERION_OUTPUTS='tap:-'; export CRITERION_OUTPUTS; + +check_PROGRAMS = + +TESTS = diff --git a/tests/test.c b/tests/test.c deleted file mode 100644 index a16c63a..0000000 --- a/tests/test.c +++ /dev/null @@ -1,5 +0,0 @@ -#include <criterion/criterion.h> - -Test(simple, test) { - cr_assert(0, "Hello, World!"); -} |