Add test runner for unit tests in libstrongswan

This commit is contained in:
Tobias Brunner
2013-06-11 11:03:10 +02:00
parent 62516a7465
commit 156dcbc12e
6 changed files with 84 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
TESTS = test_runner
check_PROGRAMS = $(TESTS)
test_runner_SOURCES = \
test_runner.c test_runner.h
test_runner_CFLAGS = \
-I$(top_srcdir)/src/libstrongswan \
@CHECK_CFLAGS@
test_runner_LDADD = \
$(top_builddir)/src/libstrongswan/libstrongswan.la \
@CHECK_LIBS@