mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-27 07:22:07 +03:00
b7641686a6
* tests/Makefile.am, tests/nodeinfotest.c, tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c, tests/xmconfigtest.c, tests/xml2sexprtest.c: Miscellaneous fixes to the tests to compile under Cygwin.
136 lines
3.3 KiB
Makefile
136 lines
3.3 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 \
|
|
qemuxml2argvdata \
|
|
nodeinfodata
|
|
|
|
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
|
|
|
|
# NB, automake < 1.10 does not provide the real
|
|
# abs_top_{src/build}dir variables, so don't rely
|
|
# on them here. Fake them with 'pwd'
|
|
TESTS_ENVIRONMENT = \
|
|
abs_top_builddir=`pwd`/'$(top_builddir)' \
|
|
abs_top_srcdir=`pwd`/'$(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
|
|
|
|
LIBOBJDIR = ../src/
|
|
|
|
xmlrpctest_LDFLAGS = $(LIBOBJS)
|
|
xmlrpctest_LDADD = $(LDADDS)
|
|
|
|
xml2sexprtest_SOURCES = \
|
|
xml2sexprtest.c \
|
|
testutils.c testutils.h
|
|
xml2sexprtest_LDFLAGS = $(LIBOBJS)
|
|
xml2sexprtest_LDADD = $(LDADDS)
|
|
|
|
sexpr2xmltest_SOURCES = \
|
|
sexpr2xmltest.c \
|
|
testutils.c testutils.h
|
|
sexpr2xmltest_LDFLAGS = $(LIBOBJS)
|
|
sexpr2xmltest_LDADD = $(LDADDS)
|
|
|
|
xmconfigtest_SOURCES = \
|
|
xmconfigtest.c \
|
|
testutils.c testutils.h
|
|
xmconfigtest_LDFLAGS = $(LIBOBJS)
|
|
xmconfigtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2argvtest_SOURCES = \
|
|
qemuxml2argvtest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2argvtest_LDFLAGS = $(LIBOBJS)
|
|
qemuxml2argvtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2xmltest_SOURCES = \
|
|
qemuxml2xmltest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2xmltest_LDFLAGS = $(LIBOBJS)
|
|
qemuxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
virshtest_SOURCES = \
|
|
virshtest.c \
|
|
testutils.c testutils.h
|
|
virshtest_LDFLAGS = $(LIBOBJS)
|
|
virshtest_LDADD = $(LDADDS)
|
|
|
|
conftest_SOURCES = \
|
|
conftest.c
|
|
conftest_LDFLAGS = $(LIBOBJS)
|
|
conftest_LDADD = $(LDADDS)
|
|
|
|
xencapstest_SOURCES = \
|
|
xencapstest.c testutils.h testutils.c
|
|
xencapstest_LDFLAGS = $(LIBOBJS)
|
|
xencapstest_LDADD = $(LDADDS)
|
|
|
|
nodeinfotest_SOURCES = \
|
|
nodeinfotest.c testutils.h testutils.c
|
|
nodeinfotest_LDFLAGS = $(LIBOBJS)
|
|
nodeinfotest_LDADD = $(LDADDS)
|
|
|
|
reconnect_SOURCES = \
|
|
reconnect.c
|
|
reconnect_LDFLAGS = $(LIBOBJS)
|
|
reconnect_LDADD = $(LDADDS)
|
|
|
|
$(LIBVIRT):
|
|
-@(cd $(top_builddir)/src && $(MAKE) MAKEFLAGS+=--silent)
|