From 3ab1776b7facfc8498524518c702141028b0e8c8 Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Tue, 5 Jul 2011 15:26:18 +0200 Subject: [PATCH] tests: Disable networkxml2argvtest when configured without network Reported by Ruben Kerkhof. --- tests/Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index 30b2d95bd2..48f9faabfa 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -124,7 +124,9 @@ endif check_PROGRAMS += networkxml2xmltest +if WITH_NETWORK check_PROGRAMS += networkxml2argvtest +endif check_PROGRAMS += nwfilterxml2xmltest @@ -244,7 +246,9 @@ endif TESTS += networkxml2xmltest +if WITH_NETWORK TESTS += networkxml2argvtest +endif TESTS += storagevolxml2xmltest storagepoolxml2xmltest @@ -373,10 +377,14 @@ networkxml2xmltest_SOURCES = \ testutils.c testutils.h networkxml2xmltest_LDADD = $(LDADDS) +if WITH_NETWORK networkxml2argvtest_SOURCES = \ networkxml2argvtest.c \ testutils.c testutils.h networkxml2argvtest_LDADD = ../src/libvirt_driver_network.la $(LDADDS) +else +EXTRA_DIST += networkxml2argvtest.c +endif nwfilterxml2xmltest_SOURCES = \ nwfilterxml2xmltest.c \ -- 2.47.2