mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
This adds the required build infrastructure and adds tests for two functions related to GetItfDnsDomains(). Change-Id: I33583e51e1143c53fbe0aef16546fa3f602b17c0 Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com> Acked-by: Gert Doering <gert@greenie.muc.de> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1459 Message-Id: <20260119215058.27888-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg35345.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
15 lines
614 B
Makefile
15 lines
614 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING) service Unit-Tests'
|
|
|
|
if WIN32
|
|
test_binaries = openvpnserv_testdriver
|
|
endif
|
|
|
|
openvpnserv_testdriver_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src/openvpn -I$(top_srcdir)/src/compat -I$(top_srcdir)/src/openvpnserv @TEST_CFLAGS@
|
|
openvpnserv_testdriver_LDFLAGS = @TEST_LDFLAGS@ -L$(top_srcdir)/src/openvpn
|
|
openvpnserv_testdriver_SOURCES = test_openvpnserv.c \
|
|
$(top_srcdir)/src/openvpnserv/common.c \
|
|
$(top_srcdir)/src/openvpnserv/validate.c \
|
|
$(top_srcdir)/src//openvpn/wfp_block.c \
|
|
$(top_srcdir)/src//openvpn/wfp_block.h
|