aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteffan Karger2017-05-05 22:07:28 +0200
committerDavid Sommerseth2017-05-05 22:19:21 +0200
commitdcfcc594759b3a768cd4d40508cbacae114c274b (patch)
treeea1ed25ec750e4fb2973b1beca7910e451e6c290 /tests
parenta87e1431baccd49a9344cfc63ab7446c4317fa2f (diff)
downloadopenvpn-dcfcc594759b3a768cd4d40508cbacae114c274b.zip
openvpn-dcfcc594759b3a768cd4d40508cbacae114c274b.tar.gz
Don't run packet_id unit tests for --disable-crypto builds
Because there is no packet_id in those builds... This fixes 'make check' for --disable-crypto builds, caught by travis. Signed-off-by: Steffan Karger <steffan.karger@fox-it.com> Acked-by: David Sommerseth <davids@openvpn.net> Message-Id: <1494014848-20099-1-git-send-email-steffan.karger@fox-it.com> URL: http://www.mail-archive.com/search?l=mid&q=1494014848-20099-1-git-send-email-steffan.karger@fox-it.com Signed-off-by: David Sommerseth <davids@openvpn.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/openvpn/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit_tests/openvpn/Makefile.am b/tests/unit_tests/openvpn/Makefile.am
index 5d7123e..3bd382c 100644
--- a/tests/unit_tests/openvpn/Makefile.am
+++ b/tests/unit_tests/openvpn/Makefile.am
@@ -3,11 +3,11 @@ AUTOMAKE_OPTIONS = foreign
check_PROGRAMS=
if HAVE_LD_WRAP_SUPPORT
-check_PROGRAMS += argv_testdriver buffer_testdriver packet_id_testdriver
+check_PROGRAMS += argv_testdriver buffer_testdriver
endif
if ENABLE_CRYPTO
-check_PROGRAMS += tls_crypt_testdriver
+check_PROGRAMS += packet_id_testdriver tls_crypt_testdriver
endif
TESTS = $(check_PROGRAMS)