18e49a3f3c59012508fcd7a6dec8cba691934a89
[libguestfs.git] / capitests / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 EXTRA_DIST = \
19         tests.c
20
21 # Tests.  These are auto-generated from the test descriptions
22 # in the generator.
23
24 check_PROGRAMS = tests test-command
25
26 tests_SOURCES = tests.c
27 tests_CFLAGS = \
28         -I$(top_builddir)/src -Wall
29 tests_LDADD = $(top_builddir)/src/libguestfs.la
30
31 TESTS = tests
32 TESTS_ENVIRONMENT = \
33         SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
34         SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
35         SKIP_TEST_ZEROFREE=$(shell test -x ../initramfs/usr/sbin/zerofree || echo 1) \
36         $(VG)
37
38 # Run the tests under valgrind.
39
40 valgrind:
41         $(MAKE) check VG="valgrind --quiet --leak-check=full"
42
43 # This binary must be statically linked.  It is used for testing
44 # the "guestfs_command" and "guestfs_command_lines" functions.
45
46 test_command_SOURCES = test-command.c
47 test_command_LDFLAGS = -all-static