diff options
author | lns <matzeton@googlemail.com> | 2022-05-30 00:32:31 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-05-30 19:22:22 +0200 |
commit | fd5fa116f29d76269d90da78b6efa8cb2d6e6c07 (patch) | |
tree | 2192065ba2b96d7a93c8e3768093388604ee32f8 /tests | |
parent | 912b69af60ce2408341fa440374195330fe46439 (diff) |
Updated README.mdimproved/readme-and-autotools-int
* make check great again (not so much)
* make doc/doc-view
* CI updates
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 6 | ||||
-rw-r--r-- | tests/dga/Makefile.in | 4 | ||||
-rw-r--r-- | tests/unit/Makefile.in | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index d1fe3730a..64f621ade 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,8 @@ -TESTS = do.sh +TESTS = do.sh do-dga.sh + +if BUILD_UNITTESTS +TESTS += do-unit.sh +endif EXTRA_DIST = pcap result performance \ unit/unit.c unit/Makefile.in \ diff --git a/tests/dga/Makefile.in b/tests/dga/Makefile.in index efa8b188b..4bd6711bc 100644 --- a/tests/dga/Makefile.in +++ b/tests/dga/Makefile.in @@ -36,6 +36,8 @@ install: distdir: - distclean: clean /bin/rm -f Makefile + +check: + true # nothing to do here, done by invoking tests/do-dga.sh diff --git a/tests/unit/Makefile.in b/tests/unit/Makefile.in index e1d13328e..36f8bec3e 100644 --- a/tests/unit/Makefile.in +++ b/tests/unit/Makefile.in @@ -60,6 +60,8 @@ install: distdir: - distclean: clean /bin/rm -f Makefile + +check: + true # nothing to do here, done by invoking tests/do-unit.sh |