diff options
Diffstat (limited to 'contrib/ntp/sntp/tests/Makefile.am')
-rw-r--r-- | contrib/ntp/sntp/tests/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/ntp/sntp/tests/Makefile.am b/contrib/ntp/sntp/tests/Makefile.am index c5338c791816..0e14a87b176e 100644 --- a/contrib/ntp/sntp/tests/Makefile.am +++ b/contrib/ntp/sntp/tests/Makefile.am @@ -34,8 +34,6 @@ run_unity = cd $(srcdir) && ruby ../unity/auto/generate_test_runner.rb check_PROGRAMS = \ test-crypto \ test-keyFile \ - test-kodDatabase \ - test-kodFile \ test-log \ test-networking \ test-packetHandling \ @@ -43,6 +41,14 @@ check_PROGRAMS = \ test-utilities \ $(NULL) +if BUILD_TEST_KODDATABASE +check_PROGRAMS += test-kodDatabase +endif + +if BUILD_TEST_KODFILE +check_PROGRAMS += test-kodFile +endif + noinst_HEADERS = \ sntptest.h \ $(NULL) |