2006-05-09 15:35:46 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2013-02-08 23:44:21 +00:00
|
|
|
## Copyright (C) 2005-2013 Red Hat, Inc.
|
2013-05-14 23:42:12 +00:00
|
|
|
##
|
|
|
|
## This library is free software; you can redistribute it and/or
|
|
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
|
|
## License as published by the Free Software Foundation; either
|
|
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This library is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
## Lesser General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU Lesser General Public
|
|
|
|
## License along with this library. If not, see
|
|
|
|
## <http://www.gnu.org/licenses/>.
|
2011-07-28 18:56:24 +00:00
|
|
|
|
2008-03-24 10:19:36 +00:00
|
|
|
SHELL = $(PREFERABLY_POSIX_SHELL)
|
|
|
|
|
2006-05-09 15:35:46 +00:00
|
|
|
INCLUDES = \
|
2012-04-10 12:03:46 +00:00
|
|
|
-I$(top_builddir) -I$(top_srcdir) \
|
2012-02-02 20:20:09 +00:00
|
|
|
-I$(top_builddir)/gnulib/lib -I$(top_srcdir)/gnulib/lib \
|
|
|
|
-I$(top_builddir)/include -I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/src -I$(top_srcdir)/src \
|
Move all shared utility files to src/util/
* src/bridge.c, src/bridge.h, src/buf.c, src/buf.h, src/cgroup.c,
src/cgroup.h, src/conf.c, src/conf.h, src/event.c, src/event.h,
src/hash.c, src/hash.h, src/hostusb.c, src/hostusb.h,
src/iptables.c, src/iptables.h, src/logging.c, src/logging.h,
src/memory.c, src/memory.h, src/pci.c, src/pci.h, src/qparams.c,
src/qparams.h, src/stats_linux.c, src/stats_linux.h,
src/threads-pthread.c, src/threads-pthread.h, src/threads-win32.c,
src/threads-win32.h, src/threads.c, src/threads.h, src/util.c,
src/util.h, src/uuid.c, src/uuid.h, src/virterror.c,
src/virterror_internal.h, src/xml.c, src/xml.h: Move all files
into src/util/
* daemon/Makefile.am: Add -Isrc/util/ to build flags
* src/Makefile.am: Add -Isrc/util/ to build flags and update for
moved files
* src/libvirt_private.syms: Export cgroup APIs since they're now
in util rather than linking directly to drivers
* src/xen/xs_internal.c: Disable bogus virEventRemoveHandle call
when built under PROXY
* proxy/Makefile.am: Update for changed file locations. Remove
bogus build of event.c
* tools/Makefile.am, tests/Makefile.am: Add -Isrc/util/ to build flags
2009-09-16 15:28:46 +00:00
|
|
|
-I$(top_srcdir)/src/util \
|
2011-07-28 12:55:21 +00:00
|
|
|
-I$(top_srcdir)/src/conf \
|
|
|
|
$(GETTEXT_CPPFLAGS)
|
build: consistently use CFLAGS
According to the automake manual, CPPFLAGS (aka INCLUDES, as spelled
in automake 1.9.6) should only include -I, -D, and -U directives; more
generic directives like -Wall belong in CFLAGS since they affect more
phases of the build process. Therefore, we should be sticking CFLAGS
additions into a CFLAGS container, not a CPPFLAGS container.
* src/Makefile.am (libvirt_driver_vmware_la_CFLAGS): Use AM_CFLAGS.
(INCLUDES): Move CFLAGS items...
(AM_CFLAGS): ...to their proper location.
* python/Makefile.am (INCLUDES, AM_CFLAGS): Likewise.
* tests/Makefile.am (INCLUDES, AM_CFLAGS): Likewise.
(commandtest_CFLAGS, commandhelper_CFLAGS)
(virnetmessagetest_CFLAGS, virnetsockettest_CFLAGS): Use AM_CFLAGS.
2011-05-31 22:15:28 +00:00
|
|
|
|
|
|
|
AM_CFLAGS = \
|
2013-02-26 16:40:38 +00:00
|
|
|
-Dabs_builddir="\"`pwd`\"" \
|
2007-09-19 17:42:40 +00:00
|
|
|
$(LIBXML_CFLAGS) \
|
|
|
|
$(GNUTLS_CFLAGS) \
|
2007-12-05 15:24:15 +00:00
|
|
|
$(SASL_CFLAGS) \
|
2008-02-20 15:38:29 +00:00
|
|
|
$(SELINUX_CFLAGS) \
|
2009-10-08 14:34:22 +00:00
|
|
|
$(APPARMOR_CFLAGS) \
|
2011-06-30 14:08:29 +00:00
|
|
|
$(YAJL_CFLAGS) \
|
build: consistently use CFLAGS
According to the automake manual, CPPFLAGS (aka INCLUDES, as spelled
in automake 1.9.6) should only include -I, -D, and -U directives; more
generic directives like -Wall belong in CFLAGS since they affect more
phases of the build process. Therefore, we should be sticking CFLAGS
additions into a CFLAGS container, not a CPPFLAGS container.
* src/Makefile.am (libvirt_driver_vmware_la_CFLAGS): Use AM_CFLAGS.
(INCLUDES): Move CFLAGS items...
(AM_CFLAGS): ...to their proper location.
* python/Makefile.am (INCLUDES, AM_CFLAGS): Likewise.
* tests/Makefile.am (INCLUDES, AM_CFLAGS): Likewise.
(commandtest_CFLAGS, commandhelper_CFLAGS)
(virnetmessagetest_CFLAGS, virnetsockettest_CFLAGS): Use AM_CFLAGS.
2011-05-31 22:15:28 +00:00
|
|
|
$(COVERAGE_CFLAGS) \
|
|
|
|
$(WARN_CFLAGS)
|
2007-02-14 02:12:41 +00:00
|
|
|
|
2008-11-21 12:16:08 +00:00
|
|
|
if WITH_DRIVER_MODULES
|
|
|
|
INCLUDES += \
|
|
|
|
-DTEST_DRIVER_DIR=\"$(top_builddir)/src/.libs\"
|
|
|
|
endif
|
|
|
|
|
build: fix 'make check' linkage with dtrace
Building on Linux with dtrace enabled was failing 'make check':
CCLD nodeinfotest
../src/.libs/libvirt_test.a(libvirt_net_rpc_client_la-virnetclient.o): In function `virNetClientNew':
/home/remote/eblake/libvirt/src/rpc/virnetclient.c:162: undefined reference to `libvirt_rpc_client_new_semaphore'
On looking further, I see some earlier warnings emitted from libtool:
*** Warning: Linking the shared library libvirt.la against the non-libtool
*** objects probes.o is not portable!
Since src/probes.o is only built on Linux, and even then, only when
dtrace is enabled, this failure does not affect other platforms, and
despite libtool warning that it is not generally portable, it is not
a problem for our use-case in libvirt.la. But it turns out that while
libtool is willing to jam raw .o files into an installed shared
library (libvirt.la becomes libvirt.so), it is NOT willing to jam
the same .o file into the convenience library libvirt_test.la.
Perhaps this is a bug in libtool, but even if we get libtool fixed,
libvirt must continue to build on platforms with older libtool. So,
the fix is the same as we are already using for the libvirt_lxc
executable - don't rely on the .o file being in the convenience
library, but instead use LDADD to pull it in directly.
* tests/Makefile.am (PROBES_O): New macro.
(LDADDS): Use it to fix link errors.
2011-10-11 19:18:37 +00:00
|
|
|
PROBES_O =
|
2012-02-24 15:10:53 +00:00
|
|
|
if WITH_DTRACE_PROBES
|
2012-05-25 15:57:56 +00:00
|
|
|
PROBES_O += ../src/libvirt_probes.lo
|
build: fix 'make check' linkage with dtrace
Building on Linux with dtrace enabled was failing 'make check':
CCLD nodeinfotest
../src/.libs/libvirt_test.a(libvirt_net_rpc_client_la-virnetclient.o): In function `virNetClientNew':
/home/remote/eblake/libvirt/src/rpc/virnetclient.c:162: undefined reference to `libvirt_rpc_client_new_semaphore'
On looking further, I see some earlier warnings emitted from libtool:
*** Warning: Linking the shared library libvirt.la against the non-libtool
*** objects probes.o is not portable!
Since src/probes.o is only built on Linux, and even then, only when
dtrace is enabled, this failure does not affect other platforms, and
despite libtool warning that it is not generally portable, it is not
a problem for our use-case in libvirt.la. But it turns out that while
libtool is willing to jam raw .o files into an installed shared
library (libvirt.la becomes libvirt.so), it is NOT willing to jam
the same .o file into the convenience library libvirt_test.la.
Perhaps this is a bug in libtool, but even if we get libtool fixed,
libvirt must continue to build on platforms with older libtool. So,
the fix is the same as we are already using for the libvirt_lxc
executable - don't rely on the .o file being in the convenience
library, but instead use LDADD to pull it in directly.
* tests/Makefile.am (PROBES_O): New macro.
(LDADDS): Use it to fix link errors.
2011-10-11 19:18:37 +00:00
|
|
|
endif
|
|
|
|
|
2006-05-09 15:35:46 +00:00
|
|
|
LDADDS = \
|
2007-05-29 14:44:15 +00:00
|
|
|
$(WARN_CFLAGS) \
|
build: fix 'make check' linkage with dtrace
Building on Linux with dtrace enabled was failing 'make check':
CCLD nodeinfotest
../src/.libs/libvirt_test.a(libvirt_net_rpc_client_la-virnetclient.o): In function `virNetClientNew':
/home/remote/eblake/libvirt/src/rpc/virnetclient.c:162: undefined reference to `libvirt_rpc_client_new_semaphore'
On looking further, I see some earlier warnings emitted from libtool:
*** Warning: Linking the shared library libvirt.la against the non-libtool
*** objects probes.o is not portable!
Since src/probes.o is only built on Linux, and even then, only when
dtrace is enabled, this failure does not affect other platforms, and
despite libtool warning that it is not generally portable, it is not
a problem for our use-case in libvirt.la. But it turns out that while
libtool is willing to jam raw .o files into an installed shared
library (libvirt.la becomes libvirt.so), it is NOT willing to jam
the same .o file into the convenience library libvirt_test.la.
Perhaps this is a bug in libtool, but even if we get libtool fixed,
libvirt must continue to build on platforms with older libtool. So,
the fix is the same as we are already using for the libvirt_lxc
executable - don't rely on the .o file being in the convenience
library, but instead use LDADD to pull it in directly.
* tests/Makefile.am (PROBES_O): New macro.
(LDADDS): Use it to fix link errors.
2011-10-11 19:18:37 +00:00
|
|
|
$(PROBES_O) \
|
2012-04-02 15:45:01 +00:00
|
|
|
../src/libvirt.la \
|
|
|
|
../gnulib/lib/libgnu.la
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2007-11-14 10:35:58 +00:00
|
|
|
EXTRA_DIST = \
|
2009-01-27 15:29:53 +00:00
|
|
|
capabilityschemadata \
|
2010-12-16 18:24:00 +00:00
|
|
|
capabilityschematest \
|
|
|
|
commanddata \
|
|
|
|
confdata \
|
|
|
|
cputestdata \
|
2009-01-27 15:29:53 +00:00
|
|
|
domainschemadata \
|
2010-12-16 18:24:00 +00:00
|
|
|
domainschematest \
|
|
|
|
domainsnapshotschematest \
|
|
|
|
domainsnapshotxml2xmlin \
|
|
|
|
domainsnapshotxml2xmlout \
|
2013-05-15 03:34:27 +00:00
|
|
|
fchostdata \
|
2009-07-22 09:07:07 +00:00
|
|
|
interfaceschemadata \
|
2012-03-26 17:09:31 +00:00
|
|
|
lxcxml2xmldata \
|
2010-12-16 18:24:00 +00:00
|
|
|
networkschematest \
|
|
|
|
networkxml2xmlin \
|
|
|
|
networkxml2xmlout \
|
2012-12-06 17:20:39 +00:00
|
|
|
networkxml2confdata \
|
2010-12-16 18:24:00 +00:00
|
|
|
nodedevschemadata \
|
|
|
|
nodedevschematest \
|
|
|
|
nodeinfodata \
|
|
|
|
nwfilterschematest \
|
|
|
|
nwfilterxml2xmlin \
|
|
|
|
nwfilterxml2xmlout \
|
|
|
|
oomtrace.pl \
|
|
|
|
qemuhelpdata \
|
2013-06-26 05:45:43 +00:00
|
|
|
qemuhotplugtestdata \
|
2010-12-16 18:24:00 +00:00
|
|
|
qemuxml2argvdata \
|
|
|
|
qemuxml2xmloutdata \
|
2011-10-18 19:16:01 +00:00
|
|
|
qemuxmlnsdata \
|
2012-09-19 13:00:34 +00:00
|
|
|
securityselinuxlabeldata \
|
2010-12-16 18:24:00 +00:00
|
|
|
schematestutils.sh \
|
|
|
|
sexpr2xmldata \
|
2013-05-16 13:37:14 +00:00
|
|
|
storagepoolschemadata \
|
2009-01-27 15:29:53 +00:00
|
|
|
storagepoolschematest \
|
2009-10-08 21:26:30 +00:00
|
|
|
storagepoolxml2xmlin \
|
2010-12-16 18:24:00 +00:00
|
|
|
storagepoolxml2xmlout \
|
2013-02-18 12:43:28 +00:00
|
|
|
storagevolxml2argvdata \
|
2013-05-16 13:43:06 +00:00
|
|
|
storagevolschemadata \
|
2009-01-27 15:29:53 +00:00
|
|
|
storagevolschematest \
|
2009-10-09 18:17:21 +00:00
|
|
|
storagevolxml2xmlin \
|
2010-12-16 18:24:00 +00:00
|
|
|
storagevolxml2xmlout \
|
2012-12-14 15:08:25 +00:00
|
|
|
sysinfodata \
|
2010-12-16 18:24:00 +00:00
|
|
|
test-lib.sh \
|
2009-12-23 22:02:44 +00:00
|
|
|
vmx2xmldata \
|
2010-12-16 18:24:00 +00:00
|
|
|
xencapsdata \
|
|
|
|
xmconfigdata \
|
|
|
|
xml2sexprdata \
|
2011-06-30 15:23:23 +00:00
|
|
|
xml2vmxdata \
|
2013-05-15 03:34:27 +00:00
|
|
|
.valgrind.supp
|
2006-05-09 15:35:46 +00:00
|
|
|
|
2013-03-19 18:36:28 +00:00
|
|
|
test_helpers = commandhelper ssh test_conf
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs = virshtest sockettest \
|
2012-03-23 22:04:18 +00:00
|
|
|
nodeinfotest virbuftest \
|
2012-03-27 15:35:01 +00:00
|
|
|
commandtest seclabeltest \
|
|
|
|
virhashtest virnetmessagetest virnetsockettest \
|
2012-07-11 13:35:43 +00:00
|
|
|
viratomictest \
|
2013-01-07 14:54:18 +00:00
|
|
|
utiltest shunloadtest \
|
2012-03-20 15:40:05 +00:00
|
|
|
virtimetest viruritest virkeyfiletest \
|
2012-09-14 07:46:57 +00:00
|
|
|
virauthconfigtest \
|
2013-03-28 14:36:52 +00:00
|
|
|
virbitmaptest \
|
|
|
|
vircgrouptest \
|
|
|
|
virendiantest \
|
2012-01-20 17:49:32 +00:00
|
|
|
viridentitytest \
|
2013-04-05 16:49:27 +00:00
|
|
|
virkeycodetest \
|
Introduce an internal API for handling file based lockspaces
The previously introduced virFile{Lock,Unlock} APIs provide a
way to acquire/release fcntl() locks on individual files. For
unknown reason though, the POSIX spec says that fcntl() locks
are released when *any* file handle referring to the same path
is closed. In the following sequence
threadA: fd1 = open("foo")
threadB: fd2 = open("foo")
threadA: virFileLock(fd1)
threadB: virFileLock(fd2)
threadB: close(fd2)
you'd expect threadA to come out holding a lock on 'foo', and
indeed it does hold a lock for a very short time. Unfortunately
when threadB does close(fd2) this releases the lock associated
with fd1. For the current libvirt use case for virFileLock -
pidfiles - this doesn't matter since the lock is acquired
at startup while single threaded an never released until
exit.
To provide a more generally useful API though, it is necessary
to introduce a slightly higher level abstraction, which is to
be referred to as a "lockspace". This is to be provided by
a virLockSpacePtr object in src/util/virlockspace.{c,h}. The
core idea is that the lockspace keeps track of what files are
already open+locked. This means that when a 2nd thread comes
along and tries to acquire a lock, it doesn't end up opening
and closing a new FD. The lockspace just checks the current
list of held locks and immediately returns VIR_ERR_RESOURCE_BUSY.
NB, the API as it stands is designed on the basis that the
files being locked are not being otherwise opened and used
by the application code. One approach to using this API is to
acquire locks based on a hash of the filepath.
eg to lock /var/lib/libvirt/images/foo.img the application
might do
virLockSpacePtr lockspace = virLockSpaceNew("/var/lib/libvirt/imagelocks");
lockname = md5sum("/var/lib/libvirt/images/foo.img");
virLockSpaceAcquireLock(lockspace, lockname);
NB, in this example, the caller should ensure that the path
is canonicalized before calculating the checksum.
It is also possible to do locks directly on resources by
using a NULL lockspace directory and then using the file
path as the lock name eg
virLockSpacePtr lockspace = virLockSpaceNew(NULL);
virLockSpaceAcquireLock(lockspace, "/var/lib/libvirt/images/foo.img");
This is only safe to do though if no other part of the process
will be opening the files. This will be the case when this
code is used inside the soon-to-be-reposted virlockd daemon
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-08-02 16:02:40 +00:00
|
|
|
virlockspacetest \
|
2012-11-30 15:21:02 +00:00
|
|
|
virstringtest \
|
2013-01-09 15:11:50 +00:00
|
|
|
virportallocatortest \
|
2012-12-14 15:08:25 +00:00
|
|
|
sysinfotest \
|
2013-02-13 18:04:05 +00:00
|
|
|
virstoragetest \
|
2013-05-10 17:14:40 +00:00
|
|
|
fdstreamtest \
|
2013-05-06 12:45:17 +00:00
|
|
|
fchosttest \
|
Introduce an internal API for handling file based lockspaces
The previously introduced virFile{Lock,Unlock} APIs provide a
way to acquire/release fcntl() locks on individual files. For
unknown reason though, the POSIX spec says that fcntl() locks
are released when *any* file handle referring to the same path
is closed. In the following sequence
threadA: fd1 = open("foo")
threadB: fd2 = open("foo")
threadA: virFileLock(fd1)
threadB: virFileLock(fd2)
threadB: close(fd2)
you'd expect threadA to come out holding a lock on 'foo', and
indeed it does hold a lock for a very short time. Unfortunately
when threadB does close(fd2) this releases the lock associated
with fd1. For the current libvirt use case for virFileLock -
pidfiles - this doesn't matter since the lock is acquired
at startup while single threaded an never released until
exit.
To provide a more generally useful API though, it is necessary
to introduce a slightly higher level abstraction, which is to
be referred to as a "lockspace". This is to be provided by
a virLockSpacePtr object in src/util/virlockspace.{c,h}. The
core idea is that the lockspace keeps track of what files are
already open+locked. This means that when a 2nd thread comes
along and tries to acquire a lock, it doesn't end up opening
and closing a new FD. The lockspace just checks the current
list of held locks and immediately returns VIR_ERR_RESOURCE_BUSY.
NB, the API as it stands is designed on the basis that the
files being locked are not being otherwise opened and used
by the application code. One approach to using this API is to
acquire locks based on a hash of the filepath.
eg to lock /var/lib/libvirt/images/foo.img the application
might do
virLockSpacePtr lockspace = virLockSpaceNew("/var/lib/libvirt/imagelocks");
lockname = md5sum("/var/lib/libvirt/images/foo.img");
virLockSpaceAcquireLock(lockspace, lockname);
NB, in this example, the caller should ensure that the path
is canonicalized before calculating the checksum.
It is also possible to do locks directly on resources by
using a NULL lockspace directory and then using the file
path as the lock name eg
virLockSpacePtr lockspace = virLockSpaceNew(NULL);
virLockSpaceAcquireLock(lockspace, "/var/lib/libvirt/images/foo.img");
This is only safe to do though if no other part of the process
will be opening the files. This will be the case when this
code is used inside the soon-to-be-reposted virlockd daemon
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-08-02 16:02:40 +00:00
|
|
|
$(NULL)
|
Prevent crash from dlclose() of libvirt.so
When libvirt calls virInitialize it creates a thread local
for the virErrorPtr storage, and registers a callback to
cleanup memory when a thread exits. When libvirt is dlclose()d
or otherwise made non-resident, the callback function is
removed from memory, but the thread local may still exist
and if a thread later exists, it will invoke the callback
and SEGV. There may also be other thread locals with callbacks
pointing to libvirt code, so it is in general never safe to
unload libvirt.so from memory once initialized.
To allow dlclose() to succeed, but keep libvirt.so resident
in memory, link with '-z nodelete'. This issue was first
found with the libvirt CIM provider, but can potentially
hit many of the dynamic language bindings which all ultimately
involve dlopen() in some way, either on libvirt.so itself,
or on the glue code for the binding which in turns links
to libvirt
* configure.ac, src/Makefile.am: Ensure libvirt.so is linked
with -z nodelete
* cfg.mk, .gitignore, tests/Makefile.am, tests/shunloadhelper.c,
tests/shunloadtest.c: A test case to unload libvirt while
a thread is still running.
2011-09-01 16:57:06 +00:00
|
|
|
|
2013-01-08 21:02:05 +00:00
|
|
|
if WITH_GNUTLS
|
2013-01-07 14:54:18 +00:00
|
|
|
test_programs += virnettlscontexttest
|
|
|
|
endif
|
|
|
|
|
2012-08-10 13:31:14 +00:00
|
|
|
if WITH_SECDRIVER_SELINUX
|
|
|
|
test_programs += securityselinuxtest
|
2013-01-30 15:44:06 +00:00
|
|
|
if WITH_QEMU
|
2012-09-19 13:00:34 +00:00
|
|
|
if WITH_ATTR
|
|
|
|
test_programs += securityselinuxlabeltest
|
|
|
|
endif
|
2012-08-10 13:31:14 +00:00
|
|
|
endif
|
2013-01-30 15:44:06 +00:00
|
|
|
endif
|
2012-08-10 13:31:14 +00:00
|
|
|
|
2012-04-02 16:25:30 +00:00
|
|
|
if WITH_DRIVER_MODULES
|
|
|
|
test_programs += virdrivermoduletest
|
|
|
|
endif
|
|
|
|
|
2010-12-06 17:03:35 +00:00
|
|
|
# This is a fake SSH we use from virnetsockettest
|
|
|
|
ssh_SOURCES = ssh.c
|
|
|
|
ssh_LDADD = $(COVERAGE_LDFLAGS)
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2008-11-24 19:23:39 +00:00
|
|
|
if WITH_XEN
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += xml2sexprtest sexpr2xmltest \
|
2011-07-07 21:53:41 +00:00
|
|
|
xmconfigtest xencapstest statstest reconnect
|
2008-11-24 19:23:39 +00:00
|
|
|
endif
|
2008-11-18 12:46:13 +00:00
|
|
|
if WITH_QEMU
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += qemuxml2argvtest qemuxml2xmltest qemuxmlnstest \
|
2012-02-26 00:48:02 +00:00
|
|
|
qemuargv2xmltest qemuhelptest domainsnapshotxml2xmltest \
|
2013-06-21 14:27:59 +00:00
|
|
|
qemumonitortest qemumonitorjsontest qemuhotplugtest
|
2008-11-18 12:46:13 +00:00
|
|
|
endif
|
|
|
|
|
2012-03-26 17:09:31 +00:00
|
|
|
if WITH_LXC
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += lxcxml2xmltest
|
2012-03-26 17:09:31 +00:00
|
|
|
endif
|
|
|
|
|
2011-05-26 17:45:41 +00:00
|
|
|
if WITH_OPENVZ
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += openvzutilstest
|
2011-05-26 17:45:41 +00:00
|
|
|
endif
|
|
|
|
|
2009-09-23 12:25:52 +00:00
|
|
|
if WITH_ESX
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += esxutilstest
|
2010-12-21 21:39:55 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if WITH_VMX
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += vmx2xmltest xml2vmxtest
|
2009-09-23 12:25:52 +00:00
|
|
|
endif
|
|
|
|
|
2009-05-19 10:17:17 +00:00
|
|
|
if WITH_CIL
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += object-locking
|
2009-05-19 10:17:17 +00:00
|
|
|
endif
|
|
|
|
|
2012-09-20 11:57:13 +00:00
|
|
|
if WITH_YAJL
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += jsontest
|
2011-06-30 14:08:29 +00:00
|
|
|
endif
|
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += networkxml2xmltest
|
2009-10-09 12:47:43 +00:00
|
|
|
|
2011-07-05 13:26:18 +00:00
|
|
|
if WITH_NETWORK
|
2012-12-06 17:20:39 +00:00
|
|
|
test_programs += networkxml2conftest
|
2011-07-05 13:26:18 +00:00
|
|
|
endif
|
2011-06-24 10:04:37 +00:00
|
|
|
|
2012-07-18 19:06:58 +00:00
|
|
|
if WITH_STORAGE_SHEEPDOG
|
|
|
|
test_programs += storagebackendsheepdogtest
|
|
|
|
endif
|
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += nwfilterxml2xmltest
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2013-04-15 16:01:02 +00:00
|
|
|
if WITH_STORAGE
|
2013-02-18 12:43:28 +00:00
|
|
|
test_programs += storagevolxml2argvtest
|
2013-04-15 16:01:02 +00:00
|
|
|
endif
|
2013-02-18 12:43:28 +00:00
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += storagevolxml2xmltest storagepoolxml2xmltest
|
2009-10-08 21:26:30 +00:00
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += nodedevxml2xmltest
|
2009-02-24 14:58:32 +00:00
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += interfacexml2xmltest
|
2009-07-15 17:50:34 +00:00
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
test_programs += cputest
|
2010-10-07 14:35:17 +00:00
|
|
|
|
2009-01-27 15:29:53 +00:00
|
|
|
test_scripts = \
|
|
|
|
capabilityschematest \
|
2009-07-15 17:50:34 +00:00
|
|
|
interfaceschematest \
|
2009-01-27 15:29:53 +00:00
|
|
|
networkschematest \
|
|
|
|
storagepoolschematest \
|
|
|
|
storagevolschematest \
|
|
|
|
domainschematest \
|
2010-04-06 15:09:46 +00:00
|
|
|
nodedevschematest \
|
2010-05-03 21:15:18 +00:00
|
|
|
nwfilterschematest \
|
|
|
|
domainsnapshotschematest
|
2009-01-27 15:29:53 +00:00
|
|
|
|
2008-06-26 09:37:51 +00:00
|
|
|
if WITH_LIBVIRTD
|
2009-01-16 18:07:24 +00:00
|
|
|
test_scripts += \
|
|
|
|
test_conf.sh \
|
|
|
|
cpuset \
|
|
|
|
define-dev-segfault \
|
|
|
|
int-overflow \
|
2009-03-02 20:01:05 +00:00
|
|
|
libvirtd-fail \
|
|
|
|
libvirtd-pool \
|
2009-01-16 18:07:24 +00:00
|
|
|
read-bufsiz \
|
|
|
|
read-non-seekable \
|
|
|
|
start \
|
|
|
|
vcpupin \
|
|
|
|
virsh-all \
|
2011-04-12 21:59:19 +00:00
|
|
|
virsh-optparse \
|
2010-05-11 13:38:21 +00:00
|
|
|
virsh-schedinfo \
|
2012-09-12 17:25:51 +00:00
|
|
|
virsh-synopsis \
|
|
|
|
virsh-undefine \
|
|
|
|
$(NULL)
|
2012-03-27 15:35:01 +00:00
|
|
|
|
2012-04-04 14:01:46 +00:00
|
|
|
test_programs += \
|
|
|
|
eventtest \
|
|
|
|
libvirtdconftest
|
2011-05-13 08:03:20 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += \
|
|
|
|
test_conf.sh \
|
|
|
|
cpuset \
|
|
|
|
define-dev-segfault \
|
|
|
|
int-overflow \
|
|
|
|
libvirtd-fail \
|
|
|
|
libvirtd-pool \
|
|
|
|
read-bufsiz \
|
|
|
|
read-non-seekable \
|
|
|
|
start \
|
|
|
|
vcpupin \
|
|
|
|
virsh-all \
|
|
|
|
virsh-optparse \
|
|
|
|
virsh-schedinfo \
|
2012-09-12 17:25:51 +00:00
|
|
|
virsh-synopsis \
|
|
|
|
virsh-undefine \
|
|
|
|
$(NULL)
|
2008-06-26 09:37:51 +00:00
|
|
|
endif
|
2007-12-11 21:20:13 +00:00
|
|
|
|
2009-10-08 14:34:22 +00:00
|
|
|
if WITH_SECDRIVER_APPARMOR
|
|
|
|
test_scripts += virt-aa-helper-test
|
2009-12-14 12:40:42 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += virt-aa-helper-test
|
2009-10-08 14:34:22 +00:00
|
|
|
endif
|
2009-12-14 12:40:42 +00:00
|
|
|
|
2007-11-14 10:35:58 +00:00
|
|
|
EXTRA_DIST += $(test_scripts)
|
|
|
|
|
2013-01-09 15:11:50 +00:00
|
|
|
test_libraries = libshunload.la \
|
|
|
|
libvirportallocatormock.la \
|
2013-03-28 14:36:52 +00:00
|
|
|
vircgroupmock.la \
|
2013-01-09 15:11:50 +00:00
|
|
|
$(NULL)
|
2012-08-20 13:06:21 +00:00
|
|
|
if WITH_QEMU
|
|
|
|
test_libraries += libqemumonitortestutils.la
|
|
|
|
endif
|
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
if WITH_TESTS
|
|
|
|
noinst_PROGRAMS = $(test_programs) $(test_helpers)
|
2012-08-20 13:06:21 +00:00
|
|
|
noinst_LTLIBRARIES = $(test_libraries)
|
2012-03-27 15:35:01 +00:00
|
|
|
else
|
|
|
|
check_PROGRAMS = $(test_programs) $(test_helpers)
|
2012-08-20 13:06:21 +00:00
|
|
|
check_LTLIBRARIES = $(test_libraries)
|
2011-07-05 13:26:18 +00:00
|
|
|
endif
|
2011-06-24 10:04:37 +00:00
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
TESTS = $(test_programs) \
|
|
|
|
$(test_scripts)
|
2010-10-07 14:35:17 +00:00
|
|
|
|
2007-11-17 13:16:47 +00:00
|
|
|
# NB, automake < 1.10 does not provide the real
|
2010-12-15 00:23:22 +00:00
|
|
|
# abs_top_{src/build}dir or builddir variables, so don't rely
|
2007-11-17 13:16:47 +00:00
|
|
|
# on them here. Fake them with 'pwd'
|
2011-07-29 14:52:27 +00:00
|
|
|
# Also, BSD sh doesn't like 'a=b b=$$a', so we can't use an
|
|
|
|
# intermediate shell variable, but must do all the expansion in make
|
|
|
|
|
|
|
|
lv_abs_top_builddir=`cd '$(top_builddir)'; pwd`
|
|
|
|
path_add = $(lv_abs_top_builddir)/daemon$(PATH_SEPARATOR)$(lv_abs_top_builddir)/tools$(PATH_SEPARATOR)$(lv_abs_top_builddir)/tests
|
|
|
|
|
2007-11-12 14:00:32 +00:00
|
|
|
TESTS_ENVIRONMENT = \
|
2011-07-29 14:52:27 +00:00
|
|
|
abs_top_builddir=$(lv_abs_top_builddir) \
|
2008-03-24 10:18:36 +00:00
|
|
|
abs_top_srcdir=`cd '$(top_srcdir)'; pwd` \
|
2010-12-15 00:23:22 +00:00
|
|
|
abs_builddir=`pwd` \
|
2008-04-18 15:28:33 +00:00
|
|
|
abs_srcdir=`cd '$(srcdir)'; pwd` \
|
2009-03-04 13:04:06 +00:00
|
|
|
CONFIG_HEADER="`cd '$(top_builddir)'; pwd`/config.h" \
|
2008-03-24 10:18:36 +00:00
|
|
|
PATH="$(path_add)$(PATH_SEPARATOR)$$PATH" \
|
2008-03-24 10:19:36 +00:00
|
|
|
SHELL="$(SHELL)" \
|
2008-11-21 12:16:08 +00:00
|
|
|
LIBVIRT_DRIVER_DIR="$(abs_top_builddir)/src/.libs" \
|
2012-08-07 11:02:06 +00:00
|
|
|
LIBVIRT_AUTOSTART=0 \
|
2008-12-20 23:23:50 +00:00
|
|
|
LC_ALL=C \
|
2007-11-12 14:00:32 +00:00
|
|
|
$(VG)
|
|
|
|
|
2012-03-27 15:35:01 +00:00
|
|
|
|
2006-08-24 16:00:19 +00:00
|
|
|
valgrind:
|
2010-11-24 20:41:50 +00:00
|
|
|
$(MAKE) check VG="libtool --mode=execute valgrind --quiet --leak-check=full --suppressions=$(srcdir)/.valgrind.supp"
|
2006-08-24 16:00:19 +00:00
|
|
|
|
2010-10-21 18:11:50 +00:00
|
|
|
sockettest_SOURCES = \
|
|
|
|
sockettest.c \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
sockettest_LDADD = $(LDADDS)
|
2010-10-21 18:11:50 +00:00
|
|
|
|
2008-11-24 19:23:39 +00:00
|
|
|
if WITH_XEN
|
2012-05-25 19:18:10 +00:00
|
|
|
xen_LDADDS = ../src/libvirt_driver_xen_impl.la
|
2012-04-02 15:45:01 +00:00
|
|
|
xen_LDADDS += $(LDADDS)
|
|
|
|
|
2006-08-24 15:05:19 +00:00
|
|
|
xml2sexprtest_SOURCES = \
|
2008-07-25 13:17:27 +00:00
|
|
|
xml2sexprtest.c testutilsxen.c testutilsxen.h \
|
2006-08-24 15:05:19 +00:00
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
xml2sexprtest_LDADD = $(xen_LDADDS)
|
2006-08-24 15:05:19 +00:00
|
|
|
|
|
|
|
sexpr2xmltest_SOURCES = \
|
2009-01-22 18:19:20 +00:00
|
|
|
sexpr2xmltest.c testutilsxen.c testutilsxen.h \
|
2006-08-24 15:05:19 +00:00
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
sexpr2xmltest_LDADD = $(xen_LDADDS)
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2007-01-19 20:30:05 +00:00
|
|
|
xmconfigtest_SOURCES = \
|
2008-07-25 13:39:02 +00:00
|
|
|
xmconfigtest.c testutilsxen.c testutilsxen.h \
|
2007-01-19 20:30:05 +00:00
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
xmconfigtest_LDADD = $(xen_LDADDS)
|
2007-01-19 20:30:05 +00:00
|
|
|
|
2008-11-24 19:23:39 +00:00
|
|
|
xencapstest_SOURCES = \
|
|
|
|
xencapstest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
xencapstest_LDADD = $(xen_LDADDS)
|
2008-11-24 19:23:39 +00:00
|
|
|
|
|
|
|
reconnect_SOURCES = \
|
2011-07-09 09:50:38 +00:00
|
|
|
reconnect.c testutils.h testutils.c
|
2008-11-24 19:23:39 +00:00
|
|
|
reconnect_LDADD = $(LDADDS)
|
|
|
|
|
2010-10-14 12:22:18 +00:00
|
|
|
statstest_SOURCES = \
|
|
|
|
statstest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
statstest_LDADD = $(xen_LDADDS)
|
2010-10-14 12:22:18 +00:00
|
|
|
|
2008-11-24 19:23:39 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += xml2sexprtest.c sexpr2xmltest.c xmconfigtest.c \
|
|
|
|
xencapstest.c reconnect.c \
|
|
|
|
testutilsxen.c testutilsxen.h
|
|
|
|
endif
|
|
|
|
|
2012-08-20 13:06:21 +00:00
|
|
|
QEMUMONITORTESTUTILS_SOURCES = \
|
|
|
|
qemumonitortestutils.c \
|
|
|
|
qemumonitortestutils.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2008-11-18 12:46:13 +00:00
|
|
|
if WITH_QEMU
|
2011-07-04 06:27:12 +00:00
|
|
|
|
2012-08-20 13:06:21 +00:00
|
|
|
libqemumonitortestutils_la_SOURCES = $(QEMUMONITORTESTUTILS_SOURCES)
|
|
|
|
|
2012-08-02 12:10:31 +00:00
|
|
|
qemu_LDADDS = ../src/libvirt_driver_qemu_impl.la
|
2011-07-04 06:27:12 +00:00
|
|
|
if WITH_NETWORK
|
2012-05-25 19:18:10 +00:00
|
|
|
qemu_LDADDS += ../src/libvirt_driver_network_impl.la
|
2011-07-04 06:27:12 +00:00
|
|
|
endif
|
2012-04-02 17:24:29 +00:00
|
|
|
if WITH_DTRACE_PROBES
|
2012-05-25 15:57:56 +00:00
|
|
|
qemu_LDADDS += ../src/libvirt_qemu_probes.lo
|
2012-04-02 17:24:29 +00:00
|
|
|
endif
|
2012-04-02 15:45:01 +00:00
|
|
|
qemu_LDADDS += $(LDADDS)
|
2011-07-04 06:27:12 +00:00
|
|
|
|
2007-07-18 21:34:22 +00:00
|
|
|
qemuxml2argvtest_SOURCES = \
|
2008-05-16 16:51:30 +00:00
|
|
|
qemuxml2argvtest.c testutilsqemu.c testutilsqemu.h \
|
2007-07-18 21:34:22 +00:00
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemuxml2argvtest_LDADD = $(qemu_LDADDS)
|
2007-07-18 21:34:22 +00:00
|
|
|
|
|
|
|
qemuxml2xmltest_SOURCES = \
|
2008-05-16 16:51:30 +00:00
|
|
|
qemuxml2xmltest.c testutilsqemu.c testutilsqemu.h \
|
2007-07-18 21:34:22 +00:00
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemuxml2xmltest_LDADD = $(qemu_LDADDS)
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2011-10-18 19:16:01 +00:00
|
|
|
qemuxmlnstest_SOURCES = \
|
|
|
|
qemuxmlnstest.c testutilsqemu.c testutilsqemu.h \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemuxmlnstest_LDADD = $(qemu_LDADDS)
|
2011-10-18 19:16:01 +00:00
|
|
|
|
2009-05-21 14:22:51 +00:00
|
|
|
qemuargv2xmltest_SOURCES = \
|
|
|
|
qemuargv2xmltest.c testutilsqemu.c testutilsqemu.h \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemuargv2xmltest_LDADD = $(qemu_LDADDS)
|
2009-06-11 14:17:42 +00:00
|
|
|
|
|
|
|
qemuhelptest_SOURCES = qemuhelptest.c testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemuhelptest_LDADD = $(qemu_LDADDS)
|
2011-09-22 20:29:00 +00:00
|
|
|
|
2012-02-26 00:48:02 +00:00
|
|
|
qemumonitortest_SOURCES = qemumonitortest.c testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
qemumonitortest_LDADD = $(qemu_LDADDS)
|
2012-02-26 00:48:02 +00:00
|
|
|
|
2012-08-20 12:31:29 +00:00
|
|
|
qemumonitorjsontest_SOURCES = \
|
|
|
|
qemumonitorjsontest.c \
|
|
|
|
testutils.c testutils.h \
|
|
|
|
testutilsqemu.c testutilsqemu.h \
|
|
|
|
$(NULL)
|
|
|
|
qemumonitorjsontest_LDADD = $(qemu_LDADDS) libqemumonitortestutils.la
|
|
|
|
|
2013-06-21 14:27:59 +00:00
|
|
|
qemuhotplugtest_SOURCES = \
|
|
|
|
qemuhotplugtest.c \
|
|
|
|
testutils.c testutils.h \
|
|
|
|
testutilsqemu.c testutilsqemu.h \
|
|
|
|
$(NULL)
|
|
|
|
qemuhotplugtest_LDADD = $(qemu_LDADDS) libqemumonitortestutils.la
|
|
|
|
|
2011-09-22 20:29:00 +00:00
|
|
|
domainsnapshotxml2xmltest_SOURCES = \
|
|
|
|
domainsnapshotxml2xmltest.c testutilsqemu.c testutilsqemu.h \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
domainsnapshotxml2xmltest_LDADD = $(qemu_LDADDS)
|
2008-11-18 12:46:13 +00:00
|
|
|
else
|
2011-09-22 20:29:00 +00:00
|
|
|
EXTRA_DIST += qemuxml2argvtest.c qemuxml2xmltest.c qemuargv2xmltest.c \
|
|
|
|
qemuxmlnstest.c qemuhelptest.c domainsnapshotxml2xmltest.c \
|
2012-08-20 13:06:21 +00:00
|
|
|
qemumonitortest.c testutilsqemu.c testutilsqemu.h \
|
2013-06-21 14:27:59 +00:00
|
|
|
qemumonitorjsontest.c qemuhotplugtest.c \
|
2012-08-20 13:06:21 +00:00
|
|
|
$(QEMUMONITORTESTUTILS_SOURCES)
|
2008-11-18 12:46:13 +00:00
|
|
|
endif
|
2007-07-18 21:34:22 +00:00
|
|
|
|
2012-03-26 17:09:31 +00:00
|
|
|
if WITH_LXC
|
|
|
|
|
2012-05-25 19:18:10 +00:00
|
|
|
lxc_LDADDS = ../src/libvirt_driver_lxc_impl.la
|
2012-04-02 15:45:01 +00:00
|
|
|
if WITH_NETWORK
|
2012-05-25 19:18:10 +00:00
|
|
|
lxc_LDADDS += ../src/libvirt_driver_network_impl.la
|
2012-04-02 15:45:01 +00:00
|
|
|
endif
|
|
|
|
lxc_LDADDS += $(LDADDS)
|
2012-03-26 17:09:31 +00:00
|
|
|
|
|
|
|
lxcxml2xmltest_SOURCES = \
|
|
|
|
lxcxml2xmltest.c testutilslxc.c testutilslxc.h \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
lxcxml2xmltest_LDADD = $(lxc_LDADDS)
|
2012-03-26 17:09:31 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += lxcxml2xmltest.c testutilslxc.c testutilslxc.h
|
|
|
|
endif
|
|
|
|
|
2011-05-26 17:45:41 +00:00
|
|
|
if WITH_OPENVZ
|
|
|
|
openvzutilstest_SOURCES = \
|
|
|
|
openvzutilstest.c \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
openvzutilstest_LDADD = $(LDADDS)
|
2011-05-26 17:45:41 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += openvzutilstest.c
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += openvzutilstest.conf
|
|
|
|
|
2009-09-23 12:25:52 +00:00
|
|
|
if WITH_ESX
|
|
|
|
esxutilstest_SOURCES = \
|
|
|
|
esxutilstest.c \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
esxutilstest_LDADD = $(LDADDS)
|
2010-12-21 21:39:55 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += esxutilstest.c
|
|
|
|
endif
|
2009-09-23 12:25:52 +00:00
|
|
|
|
2010-12-21 21:39:55 +00:00
|
|
|
if WITH_VMX
|
2009-09-23 12:25:52 +00:00
|
|
|
vmx2xmltest_SOURCES = \
|
|
|
|
vmx2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
vmx2xmltest_LDADD = $(LDADDS)
|
2009-09-23 12:25:52 +00:00
|
|
|
|
|
|
|
xml2vmxtest_SOURCES = \
|
|
|
|
xml2vmxtest.c \
|
|
|
|
testutils.c testutils.h
|
2012-04-02 15:45:01 +00:00
|
|
|
xml2vmxtest_LDADD = $(LDADDS)
|
2009-09-23 12:25:52 +00:00
|
|
|
else
|
2010-12-21 21:39:55 +00:00
|
|
|
EXTRA_DIST += vmx2xmltest.c xml2vmxtest.c
|
2009-09-23 12:25:52 +00:00
|
|
|
endif
|
|
|
|
|
2009-10-09 12:47:43 +00:00
|
|
|
networkxml2xmltest_SOURCES = \
|
|
|
|
networkxml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
networkxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
|
2011-07-05 13:26:18 +00:00
|
|
|
if WITH_NETWORK
|
2012-12-06 17:20:39 +00:00
|
|
|
networkxml2conftest_SOURCES = \
|
|
|
|
networkxml2conftest.c \
|
2011-06-24 10:04:37 +00:00
|
|
|
testutils.c testutils.h
|
2012-12-06 17:20:39 +00:00
|
|
|
networkxml2conftest_LDADD = ../src/libvirt_driver_network_impl.la $(LDADDS)
|
2011-07-05 13:26:18 +00:00
|
|
|
else
|
2012-12-06 17:20:39 +00:00
|
|
|
EXTRA_DIST += networkxml2conftest.c
|
2011-07-05 13:26:18 +00:00
|
|
|
endif
|
2011-06-24 10:04:37 +00:00
|
|
|
|
2012-07-18 19:06:58 +00:00
|
|
|
if WITH_STORAGE_SHEEPDOG
|
|
|
|
storagebackendsheepdogtest_SOURCES = \
|
|
|
|
storagebackendsheepdogtest.c \
|
|
|
|
testutils.c testutils.h
|
2012-08-21 12:50:28 +00:00
|
|
|
storagebackendsheepdogtest_LDADD = \
|
|
|
|
../src/libvirt_driver_storage_impl.la $(LDADDS)
|
2012-07-18 19:06:58 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += storagebackendsheepdogtest.c
|
|
|
|
endif
|
|
|
|
|
2010-04-02 17:28:28 +00:00
|
|
|
nwfilterxml2xmltest_SOURCES = \
|
|
|
|
nwfilterxml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
nwfilterxml2xmltest_LDADD = $(LDADDS)
|
2013-02-18 12:43:28 +00:00
|
|
|
|
2013-04-15 16:01:02 +00:00
|
|
|
if WITH_STORAGE
|
2013-02-18 12:43:28 +00:00
|
|
|
storagevolxml2argvtest_SOURCES = \
|
|
|
|
storagevolxml2argvtest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
storagevolxml2argvtest_LDADD = \
|
|
|
|
../src/libvirt_driver_storage_impl.la $(LDADDS)
|
2013-04-15 16:01:02 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += storagevolxml2argvtest.c
|
|
|
|
endif
|
2010-04-02 17:28:28 +00:00
|
|
|
|
2009-10-09 18:17:21 +00:00
|
|
|
storagevolxml2xmltest_SOURCES = \
|
|
|
|
storagevolxml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
storagevolxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
|
2009-10-08 21:26:30 +00:00
|
|
|
storagepoolxml2xmltest_SOURCES = \
|
|
|
|
storagepoolxml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
storagepoolxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
|
2009-02-24 14:58:32 +00:00
|
|
|
nodedevxml2xmltest_SOURCES = \
|
|
|
|
nodedevxml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
2009-03-03 17:00:18 +00:00
|
|
|
nodedevxml2xmltest_LDADD = $(LDADDS)
|
2009-02-24 14:58:32 +00:00
|
|
|
|
2009-07-15 17:50:34 +00:00
|
|
|
interfacexml2xmltest_SOURCES = \
|
|
|
|
interfacexml2xmltest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
interfacexml2xmltest_LDADD = $(LDADDS)
|
|
|
|
|
2010-10-07 14:35:17 +00:00
|
|
|
cputest_SOURCES = \
|
|
|
|
cputest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
cputest_LDADD = $(LDADDS)
|
|
|
|
|
2006-08-24 21:46:28 +00:00
|
|
|
virshtest_SOURCES = \
|
|
|
|
virshtest.c \
|
|
|
|
testutils.c testutils.h
|
|
|
|
virshtest_LDADD = $(LDADDS)
|
|
|
|
|
2013-03-19 18:36:28 +00:00
|
|
|
test_conf_SOURCES = \
|
|
|
|
test_conf.c
|
|
|
|
test_conf_LDADD = $(LDADDS)
|
2006-08-29 22:27:07 +00:00
|
|
|
|
2007-07-25 23:16:30 +00:00
|
|
|
nodeinfotest_SOURCES = \
|
|
|
|
nodeinfotest.c testutils.h testutils.c
|
|
|
|
nodeinfotest_LDADD = $(LDADDS)
|
|
|
|
|
2010-05-25 11:14:06 +00:00
|
|
|
commandtest_SOURCES = \
|
|
|
|
commandtest.c testutils.h testutils.c
|
|
|
|
commandtest_LDADD = $(LDADDS)
|
|
|
|
|
|
|
|
commandhelper_SOURCES = \
|
|
|
|
commandhelper.c
|
|
|
|
commandhelper_LDADD = $(LDADDS)
|
2012-04-02 15:45:01 +00:00
|
|
|
commandhelper_LDFLAGS = -static
|
2010-05-25 11:14:06 +00:00
|
|
|
|
2012-04-04 14:01:46 +00:00
|
|
|
if WITH_LIBVIRTD
|
|
|
|
libvirtdconftest_SOURCES = \
|
|
|
|
libvirtdconftest.c testutils.h testutils.c \
|
|
|
|
../daemon/libvirtd-config.c
|
|
|
|
libvirtdconftest_LDADD = $(LDADDS)
|
|
|
|
else
|
|
|
|
EXTRA_DIST += libvirtdconftest.c
|
|
|
|
endif
|
|
|
|
|
2010-12-06 17:03:22 +00:00
|
|
|
virnetmessagetest_SOURCES = \
|
|
|
|
virnetmessagetest.c testutils.h testutils.c
|
2013-02-26 16:40:38 +00:00
|
|
|
virnetmessagetest_CFLAGS = $(XDR_CFLAGS) $(AM_CFLAGS)
|
2012-04-02 15:45:01 +00:00
|
|
|
virnetmessagetest_LDADD = $(LDADDS)
|
2010-12-06 17:03:22 +00:00
|
|
|
|
2010-12-06 17:03:35 +00:00
|
|
|
virnetsockettest_SOURCES = \
|
|
|
|
virnetsockettest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
virnetsockettest_LDADD = $(LDADDS)
|
2010-12-06 17:03:35 +00:00
|
|
|
|
2013-01-08 21:02:05 +00:00
|
|
|
if WITH_GNUTLS
|
2011-07-20 18:04:18 +00:00
|
|
|
virnettlscontexttest_SOURCES = \
|
2011-07-22 17:59:37 +00:00
|
|
|
virnettlscontexttest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
virnettlscontexttest_LDADD = $(LDADDS)
|
2011-07-22 17:59:37 +00:00
|
|
|
if HAVE_LIBTASN1
|
|
|
|
virnettlscontexttest_SOURCES += pkix_asn1_tab.c
|
|
|
|
virnettlscontexttest_LDADD += -ltasn1
|
|
|
|
else
|
|
|
|
EXTRA_DIST += pkix_asn1_tab.c
|
|
|
|
endif
|
2013-01-07 14:54:18 +00:00
|
|
|
else
|
|
|
|
EXTRA_DIST += \
|
|
|
|
virnettlscontexttest.c testutils.h testutils.c pkix_asn1_tab.c
|
|
|
|
endif
|
2011-07-20 18:04:18 +00:00
|
|
|
|
2011-11-29 12:11:01 +00:00
|
|
|
virtimetest_SOURCES = \
|
|
|
|
virtimetest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
virtimetest_LDADD = $(LDADDS)
|
2011-11-29 12:11:01 +00:00
|
|
|
|
2012-11-30 15:21:02 +00:00
|
|
|
virstringtest_SOURCES = \
|
|
|
|
virstringtest.c testutils.h testutils.c
|
|
|
|
virstringtest_LDADD = $(LDADDS)
|
|
|
|
|
2013-02-13 18:04:05 +00:00
|
|
|
virstoragetest_SOURCES = \
|
|
|
|
virstoragetest.c testutils.h testutils.c
|
|
|
|
virstoragetest_LDADD = $(LDADDS)
|
|
|
|
|
2012-01-20 17:49:32 +00:00
|
|
|
viridentitytest_SOURCES = \
|
|
|
|
viridentitytest.c testutils.h testutils.c
|
|
|
|
viridentitytest_LDADD = $(LDADDS)
|
|
|
|
|
2013-04-05 16:49:27 +00:00
|
|
|
virkeycodetest_SOURCES = \
|
|
|
|
virkeycodetest.c testutils.h testutils.c
|
|
|
|
virkeycodetest_LDADD = $(LDADDS)
|
|
|
|
|
Introduce an internal API for handling file based lockspaces
The previously introduced virFile{Lock,Unlock} APIs provide a
way to acquire/release fcntl() locks on individual files. For
unknown reason though, the POSIX spec says that fcntl() locks
are released when *any* file handle referring to the same path
is closed. In the following sequence
threadA: fd1 = open("foo")
threadB: fd2 = open("foo")
threadA: virFileLock(fd1)
threadB: virFileLock(fd2)
threadB: close(fd2)
you'd expect threadA to come out holding a lock on 'foo', and
indeed it does hold a lock for a very short time. Unfortunately
when threadB does close(fd2) this releases the lock associated
with fd1. For the current libvirt use case for virFileLock -
pidfiles - this doesn't matter since the lock is acquired
at startup while single threaded an never released until
exit.
To provide a more generally useful API though, it is necessary
to introduce a slightly higher level abstraction, which is to
be referred to as a "lockspace". This is to be provided by
a virLockSpacePtr object in src/util/virlockspace.{c,h}. The
core idea is that the lockspace keeps track of what files are
already open+locked. This means that when a 2nd thread comes
along and tries to acquire a lock, it doesn't end up opening
and closing a new FD. The lockspace just checks the current
list of held locks and immediately returns VIR_ERR_RESOURCE_BUSY.
NB, the API as it stands is designed on the basis that the
files being locked are not being otherwise opened and used
by the application code. One approach to using this API is to
acquire locks based on a hash of the filepath.
eg to lock /var/lib/libvirt/images/foo.img the application
might do
virLockSpacePtr lockspace = virLockSpaceNew("/var/lib/libvirt/imagelocks");
lockname = md5sum("/var/lib/libvirt/images/foo.img");
virLockSpaceAcquireLock(lockspace, lockname);
NB, in this example, the caller should ensure that the path
is canonicalized before calculating the checksum.
It is also possible to do locks directly on resources by
using a NULL lockspace directory and then using the file
path as the lock name eg
virLockSpacePtr lockspace = virLockSpaceNew(NULL);
virLockSpaceAcquireLock(lockspace, "/var/lib/libvirt/images/foo.img");
This is only safe to do though if no other part of the process
will be opening the files. This will be the case when this
code is used inside the soon-to-be-reposted virlockd daemon
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-08-02 16:02:40 +00:00
|
|
|
virlockspacetest_SOURCES = \
|
|
|
|
virlockspacetest.c testutils.h testutils.c
|
|
|
|
virlockspacetest_LDADD = $(LDADDS)
|
|
|
|
|
2013-01-09 15:11:50 +00:00
|
|
|
virportallocatortest_SOURCES = \
|
|
|
|
virportallocatortest.c testutils.h testutils.c
|
|
|
|
virportallocatortest_LDADD = $(LDADDS)
|
|
|
|
|
|
|
|
libvirportallocatormock_la_SOURCES = \
|
|
|
|
virportallocatortest.c
|
|
|
|
libvirportallocatormock_la_CFLAGS = $(AM_CFLAGS) -DMOCK_HELPER=1
|
|
|
|
libvirportallocatormock_la_LDFLAGS = -module -avoid-version \
|
|
|
|
-rpath /evil/libtool/hack/to/force/shared/lib/creation
|
|
|
|
|
2013-03-28 14:36:52 +00:00
|
|
|
vircgrouptest_SOURCES = \
|
|
|
|
vircgrouptest.c testutils.h testutils.c
|
|
|
|
vircgrouptest_LDADD = $(LDADDS)
|
|
|
|
|
|
|
|
vircgroupmock_la_SOURCES = \
|
|
|
|
vircgroupmock.c
|
|
|
|
vircgroupmock_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
vircgroupmock_la_LDFLAGS = -module -avoid-version \
|
|
|
|
-rpath /evil/libtool/hack/to/force/shared/lib/creation
|
|
|
|
|
2013-01-09 15:11:50 +00:00
|
|
|
|
2012-03-20 11:55:11 +00:00
|
|
|
viruritest_SOURCES = \
|
|
|
|
viruritest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
viruritest_LDADD = $(LDADDS)
|
2010-12-06 17:03:22 +00:00
|
|
|
|
2012-03-16 16:29:49 +00:00
|
|
|
virkeyfiletest_SOURCES = \
|
|
|
|
virkeyfiletest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
virkeyfiletest_LDADD = $(LDADDS)
|
2012-03-16 16:29:49 +00:00
|
|
|
|
2012-03-20 15:40:05 +00:00
|
|
|
virauthconfigtest_SOURCES = \
|
|
|
|
virauthconfigtest.c testutils.h testutils.c
|
2012-04-02 15:45:01 +00:00
|
|
|
virauthconfigtest_LDADD = $(LDADDS)
|
2012-03-20 15:40:05 +00:00
|
|
|
|
2009-04-03 10:55:51 +00:00
|
|
|
seclabeltest_SOURCES = \
|
|
|
|
seclabeltest.c
|
2012-08-02 12:10:31 +00:00
|
|
|
seclabeltest_LDADD = $(LDADDS)
|
2009-10-08 14:34:22 +00:00
|
|
|
|
2012-08-10 13:31:14 +00:00
|
|
|
if WITH_SECDRIVER_SELINUX
|
|
|
|
if WITH_TESTS
|
|
|
|
noinst_LTLIBRARIES += libsecurityselinuxhelper.la
|
|
|
|
else
|
|
|
|
check_LTLIBRARIES += libsecurityselinuxhelper.la
|
|
|
|
endif
|
|
|
|
|
|
|
|
libsecurityselinuxhelper_la_SOURCES = \
|
|
|
|
securityselinuxhelper.c
|
|
|
|
libsecurityselinuxhelper_la_LDFLAGS = -module -avoid-version \
|
|
|
|
-rpath /evil/libtool/hack/to/force/shared/lib/creation
|
|
|
|
|
|
|
|
securityselinuxtest_SOURCES = \
|
|
|
|
securityselinuxtest.c testutils.h testutils.c
|
|
|
|
securityselinuxtest_LDADD = $(LDADDS)
|
2012-09-19 13:00:34 +00:00
|
|
|
securityselinuxtest_DEPENDENCIES = libsecurityselinuxhelper.la ../src/libvirt.la
|
|
|
|
|
|
|
|
if WITH_QEMU
|
|
|
|
if WITH_ATTR
|
|
|
|
securityselinuxlabeltest_SOURCES = \
|
|
|
|
securityselinuxlabeltest.c testutils.h testutils.c \
|
|
|
|
testutilsqemu.h testutilsqemu.c
|
|
|
|
securityselinuxlabeltest_LDADD = $(qemu_LDADDS)
|
|
|
|
securityselinuxlabeltest_DEPENDENCIES = libsecurityselinuxhelper.la ../src/libvirt.la
|
|
|
|
endif
|
|
|
|
endif
|
2012-08-10 13:31:14 +00:00
|
|
|
endif
|
2012-09-19 13:00:34 +00:00
|
|
|
EXTRA_DIST += securityselinuxtest.c securityselinuxlabeltest.c securityselinuxhelper.c
|
2012-08-10 13:31:14 +00:00
|
|
|
|
buf: Fix possible infinite loop in EscapeString, VSnprintf
The current code will go into an infinite loop if the printf generated
string is >= 1000, AND exactly 1 character smaller than the amount of free
space in the buffer. When this happens, we are dropped into the loop body,
but nothing will actually change, because count == (buf->size - buf->use - 1),
and virBufferGrow returns unchanged if count < (buf->size - buf->use)
Fix this by removing the '- 1' bit from 'size'. The *nprintf functions handle
the NULL byte for us anyways, so we shouldn't need to manually accommodate
for it.
Here's a bug where we are actually hitting this issue:
https://bugzilla.redhat.com/show_bug.cgi?id=602772
v2: Eric's improvements: while -> if (), remove extra va_list variable,
make sure we report buffer error if snprintf fails
v3: Add tests/virbuftest which reproduces the infinite loop before this
patch, works correctly after
2010-09-01 17:51:35 +00:00
|
|
|
virbuftest_SOURCES = \
|
|
|
|
virbuftest.c testutils.h testutils.c
|
|
|
|
virbuftest_LDADD = $(LDADDS)
|
|
|
|
|
2012-01-25 16:13:59 +00:00
|
|
|
virhashtest_SOURCES = \
|
|
|
|
virhashtest.c virhashdata.h testutils.h testutils.c
|
|
|
|
virhashtest_LDADD = $(LDADDS)
|
2011-04-15 11:15:37 +00:00
|
|
|
|
2012-07-11 13:35:43 +00:00
|
|
|
viratomictest_SOURCES = \
|
2012-08-03 04:47:38 +00:00
|
|
|
viratomictest.c testutils.h testutils.c
|
2012-07-11 13:35:43 +00:00
|
|
|
viratomictest_LDADD = $(LDADDS)
|
|
|
|
|
2012-09-14 07:46:57 +00:00
|
|
|
virbitmaptest_SOURCES = \
|
|
|
|
virbitmaptest.c testutils.h testutils.c
|
|
|
|
virbitmaptest_LDADD = $(LDADDS)
|
|
|
|
|
2013-02-08 23:44:21 +00:00
|
|
|
virendiantest_SOURCES = \
|
|
|
|
virendiantest.c testutils.h testutils.c
|
|
|
|
virendiantest_LDADD = $(LDADDS)
|
|
|
|
|
2011-06-30 14:08:29 +00:00
|
|
|
jsontest_SOURCES = \
|
2011-07-01 09:16:33 +00:00
|
|
|
jsontest.c testutils.h testutils.c
|
2011-06-30 14:08:29 +00:00
|
|
|
jsontest_LDADD = $(LDADDS)
|
|
|
|
|
2011-07-01 17:58:15 +00:00
|
|
|
utiltest_SOURCES = \
|
|
|
|
utiltest.c testutils.h testutils.c
|
|
|
|
utiltest_LDADD = $(LDADDS)
|
|
|
|
|
2012-04-02 16:25:30 +00:00
|
|
|
if WITH_DRIVER_MODULES
|
|
|
|
virdrivermoduletest_SOURCES = \
|
|
|
|
virdrivermoduletest.c testutils.h testutils.c
|
|
|
|
virdrivermoduletest_LDADD = $(LDADDS)
|
|
|
|
endif
|
|
|
|
|
2009-05-12 16:45:14 +00:00
|
|
|
if WITH_LIBVIRTD
|
|
|
|
eventtest_SOURCES = \
|
2011-02-24 17:58:04 +00:00
|
|
|
eventtest.c testutils.h testutils.c
|
2009-05-12 16:45:14 +00:00
|
|
|
eventtest_LDADD = -lrt $(LDADDS)
|
|
|
|
endif
|
|
|
|
|
Prevent crash from dlclose() of libvirt.so
When libvirt calls virInitialize it creates a thread local
for the virErrorPtr storage, and registers a callback to
cleanup memory when a thread exits. When libvirt is dlclose()d
or otherwise made non-resident, the callback function is
removed from memory, but the thread local may still exist
and if a thread later exists, it will invoke the callback
and SEGV. There may also be other thread locals with callbacks
pointing to libvirt code, so it is in general never safe to
unload libvirt.so from memory once initialized.
To allow dlclose() to succeed, but keep libvirt.so resident
in memory, link with '-z nodelete'. This issue was first
found with the libvirt CIM provider, but can potentially
hit many of the dynamic language bindings which all ultimately
involve dlopen() in some way, either on libvirt.so itself,
or on the glue code for the binding which in turns links
to libvirt
* configure.ac, src/Makefile.am: Ensure libvirt.so is linked
with -z nodelete
* cfg.mk, .gitignore, tests/Makefile.am, tests/shunloadhelper.c,
tests/shunloadtest.c: A test case to unload libvirt while
a thread is still running.
2011-09-01 16:57:06 +00:00
|
|
|
libshunload_la_SOURCES = shunloadhelper.c
|
|
|
|
libshunload_la_LIBADD = ../src/libvirt.la
|
|
|
|
libshunload_la_LDFLAGS = -module -avoid-version -rpath /evil/libtool/hack/to/force/shared/lib/creation
|
|
|
|
|
|
|
|
shunloadtest_SOURCES = \
|
|
|
|
shunloadtest.c
|
2012-05-02 18:53:04 +00:00
|
|
|
shunloadtest_LDADD = $(LIB_PTHREAD)
|
Prevent crash from dlclose() of libvirt.so
When libvirt calls virInitialize it creates a thread local
for the virErrorPtr storage, and registers a callback to
cleanup memory when a thread exits. When libvirt is dlclose()d
or otherwise made non-resident, the callback function is
removed from memory, but the thread local may still exist
and if a thread later exists, it will invoke the callback
and SEGV. There may also be other thread locals with callbacks
pointing to libvirt code, so it is in general never safe to
unload libvirt.so from memory once initialized.
To allow dlclose() to succeed, but keep libvirt.so resident
in memory, link with '-z nodelete'. This issue was first
found with the libvirt CIM provider, but can potentially
hit many of the dynamic language bindings which all ultimately
involve dlopen() in some way, either on libvirt.so itself,
or on the glue code for the binding which in turns links
to libvirt
* configure.ac, src/Makefile.am: Ensure libvirt.so is linked
with -z nodelete
* cfg.mk, .gitignore, tests/Makefile.am, tests/shunloadhelper.c,
tests/shunloadtest.c: A test case to unload libvirt while
a thread is still running.
2011-09-01 16:57:06 +00:00
|
|
|
shunloadtest_DEPENDENCIES = libshunload.la
|
|
|
|
|
2012-12-14 15:08:25 +00:00
|
|
|
sysinfotest_SOURCES = \
|
|
|
|
sysinfotest.c testutils.h testutils.c
|
|
|
|
sysinfotest_LDADD = $(LDADDS)
|
|
|
|
|
2013-05-10 17:14:40 +00:00
|
|
|
fdstreamtest_SOURCES = \
|
|
|
|
fdstreamtest.c testutils.h testutils.c
|
|
|
|
fdstreamtest_LDADD = $(LDADDS)
|
|
|
|
|
2013-05-06 12:45:17 +00:00
|
|
|
fchosttest_SOURCES = \
|
|
|
|
fchosttest.c testutils.h testutils.c
|
|
|
|
fchosttest_LDADD = $(LDADDS)
|
|
|
|
|
2009-05-19 10:17:17 +00:00
|
|
|
if WITH_CIL
|
|
|
|
CILOPTFLAGS =
|
|
|
|
CILOPTINCS =
|
|
|
|
CILOPTPACKAGES = -package unix,str,cil
|
|
|
|
CILOPTLIBS = -linkpkg
|
|
|
|
|
|
|
|
object_locking_SOURCES = object-locking.ml
|
|
|
|
|
|
|
|
%.cmx: %.ml
|
|
|
|
ocamlfind ocamlopt $(CILOPTFLAGS) $(CILOPTINCS) $(CILOPTPACKAGES) -c $<
|
|
|
|
|
|
|
|
object-locking: object-locking.cmx object-locking-files.txt
|
|
|
|
ocamlfind ocamlopt $(CILOPTFLAGS) $(CILOPTINCS) $(CILOPTPACKAGES) $(CILOPTLIBS) $< -o $@
|
|
|
|
|
|
|
|
object-locking-files.txt:
|
|
|
|
find $(top_builddir)/src/ -name '*.i' > $@
|
|
|
|
|
|
|
|
else
|
|
|
|
EXTRA_DIST += object-locking.ml
|
|
|
|
endif
|
|
|
|
|
2009-05-27 12:07:43 +00:00
|
|
|
CLEANFILES = *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda *.cmi *.cmx object-locking-files.txt
|