From c47e9796746f96f1f8f08fb95c98f5bf632705f4 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 11 Apr 2016 13:34:36 +0200 Subject: Add configure option to enable building unit tests Same template should be used for other libs... Change-Id: Icc771cb6b243d215f30fb51c0dbc028e497a74c6 Signed-off-by: Damjan Marion --- vppinfra/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'vppinfra/Makefile.am') diff --git a/vppinfra/Makefile.am b/vppinfra/Makefile.am index 3a400163e52..adcd32cc868 100644 --- a/vppinfra/Makefile.am +++ b/vppinfra/Makefile.am @@ -20,7 +20,10 @@ endif lib_LIBRARIES = -TESTS = test_bihash_template \ +TESTS = + +if ENABLE_TESTS +TESTS += test_bihash_template \ test_elog \ test_elf \ test_fifo \ @@ -44,6 +47,7 @@ TESTS = test_bihash_template \ test_timing_wheel \ test_vec \ test_zvec +endif noinst_PROGRAMS = $(TESTS) check_PROGRAMS = $(TESTS) -- cgit 1.2.3-korg