mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 05:11:14 +00:00
5a6571eba9
* tests/Makefile.am: Include the contents of the *data directories in the make-dist-built tarball by adding each of that *data directories to EXTRA_DIST. Also add int-overflow (via $(test_scripts)) to EXTRA_DIST. * tests/nodeinfotest.c: Prepend "$abs_top_srcdir/tests" to each input file name. * tests/qemuxml2argvtest.c: Likewise. * tests/qemuxml2xmltest.c: Likewise. * tests/sexpr2xmltest.c: Likewise. * tests/test_conf.sh: Likewise. * tests/virshtest.c: Likewise. * tests/xencapstest.c: Likewise. * tests/xmconfigtest.c: Likewise. * tests/xml2sexprtest.c: Likewise. Author: Jim Meyering <meyering@redhat.com>
137 lines
3.1 KiB
Makefile
137 lines
3.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = virshdata confdata sexpr2xmldata xml2sexprdata xmconfigdata xencapsdata
|
|
|
|
# Wierd libtool related juju...
|
|
#
|
|
# We explicitly want wildcard here instead of just linking
|
|
# to the libvirt.a file. This ensures that when coverage
|
|
# tests are run, all the output data ends up in the correct
|
|
# location. ie, src/ instead of src/.libs.
|
|
LIBVIRT = $(wildcard $(top_builddir)/src/.libs/libvirt_la-*.o)
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_builddir)/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src \
|
|
$(LIBXML_CFLAGS) \
|
|
$(GNUTLS_CFLAGS) \
|
|
-D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=199506L \
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\" \
|
|
$(COVERAGE_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(LIBVIRT_FEATURES)
|
|
|
|
LDADDS = \
|
|
@STATIC_BINARIES@ \
|
|
$(LIBXML_LIBS) \
|
|
$(GNUTLS_LIBS) \
|
|
$(WARN_CFLAGS) \
|
|
$(LIBVIRT) \
|
|
$(COVERAGE_LDFLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
xmlrpcserver.py \
|
|
test_conf.sh \
|
|
confdata \
|
|
qemuxml2argvdata \
|
|
xml2sexprdata \
|
|
nodeinfodata \
|
|
virshdata \
|
|
xencapsdata \
|
|
sexpr2xmldata \
|
|
xmconfigdata
|
|
|
|
noinst_PROGRAMS = xmlrpctest xml2sexprtest sexpr2xmltest virshtest conftest \
|
|
reconnect xmconfigtest xencapstest qemuxml2argvtest qemuxml2xmltest \
|
|
nodeinfotest
|
|
|
|
test_scripts = \
|
|
int-overflow
|
|
EXTRA_DIST += $(test_scripts)
|
|
|
|
TESTS = xml2sexprtest sexpr2xmltest virshtest test_conf.sh xmconfigtest \
|
|
xencapstest qemuxml2argvtest qemuxml2xmltest nodeinfotest \
|
|
$(test_scripts)
|
|
if ENABLE_XEN_TESTS
|
|
TESTS += reconnect
|
|
endif
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
abs_top_builddir='$(abs_top_builddir)' \
|
|
abs_top_srcdir='$(abs_top_srcdir)' \
|
|
$(VG)
|
|
|
|
valgrind:
|
|
$(MAKE) check VG="valgrind --quiet --leak-check=full"
|
|
|
|
# Note: xmlrpc.[c|h] is not in libvirt yet
|
|
xmlrpctest_SOURCES = \
|
|
xmlrpctest.c \
|
|
testutils.c testutils.h \
|
|
@top_srcdir@/src/xmlrpc.c \
|
|
@top_srcdir@/src/xmlrpc.h
|
|
|
|
xmlrpctest_LDFLAGS =
|
|
xmlrpctest_LDADD = $(LDADDS)
|
|
|
|
xml2sexprtest_SOURCES = \
|
|
xml2sexprtest.c \
|
|
testutils.c testutils.h
|
|
xml2sexprtest_LDFLAGS =
|
|
xml2sexprtest_LDADD = $(LDADDS)
|
|
|
|
sexpr2xmltest_SOURCES = \
|
|
sexpr2xmltest.c \
|
|
testutils.c testutils.h
|
|
sexpr2xmltest_LDFLAGS =
|
|
sexpr2xmltest_LDADD = $(LDADDS)
|
|
|
|
xmconfigtest_SOURCES = \
|
|
xmconfigtest.c \
|
|
testutils.c testutils.h
|
|
xmconfigtest_LDFLAGS =
|
|
xmconfigtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2argvtest_SOURCES = \
|
|
qemuxml2argvtest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2argvtest_LDFLAGS =
|
|
qemuxml2argvtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2xmltest_SOURCES = \
|
|
qemuxml2xmltest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2xmltest_LDFLAGS =
|
|
qemuxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
virshtest_SOURCES = \
|
|
virshtest.c \
|
|
testutils.c testutils.h
|
|
virshtest_LDFLAGS =
|
|
virshtest_LDADD = $(LDADDS)
|
|
|
|
conftest_SOURCES = \
|
|
conftest.c
|
|
conftest_LDFLAGS =
|
|
conftest_LDADD = $(LDADDS)
|
|
|
|
xencapstest_SOURCES = \
|
|
xencapstest.c testutils.h testutils.c
|
|
xencapstest_LDFLAGS =
|
|
xencapstest_LDADD = $(LDADDS)
|
|
|
|
nodeinfotest_SOURCES = \
|
|
nodeinfotest.c testutils.h testutils.c
|
|
nodeinfotest_LDFLAGS =
|
|
nodeinfotest_LDADD = $(LDADDS)
|
|
|
|
reconnect_SOURCES = \
|
|
reconnect.c
|
|
reconnect_LDFLAGS =
|
|
reconnect_LDADD = $(LDADDS)
|
|
|
|
$(LIBVIRT):
|
|
-@(cd $(top_builddir)/src && $(MAKE) MAKEFLAGS+=--silent)
|