From: Steffan Karger Date: Fri, 5 May 2017 20:07:28 +0000 (+0200) Subject: Don't run packet_id unit tests for --disable-crypto builds X-Git-Tag: v2.4.2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4aaa29dabda6513329fbff778828797f19c5b4ea;p=thirdparty%2Fopenvpn.git 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 Acked-by: David Sommerseth 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 (cherry picked from commit dcfcc594759b3a768cd4d40508cbacae114c274b) --- diff --git a/tests/unit_tests/openvpn/Makefile.am b/tests/unit_tests/openvpn/Makefile.am index 5d7123e20..3bd382c2d 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)