Don't export STREQ and friends in <guestfs.h>
[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 = -I$(top_srcdir)/src -I$(top_builddir)/src \
28   $(WARN_CFLAGS) $(WERROR_CFLAGS)
29 tests_LDADD = $(top_builddir)/src/libguestfs.la
30
31 # Old version of e2fsprogs which didn't support UUIDs?
32 e2fs_uuid_not_supported :=                                              \
33   $(shell r=1;                                                          \
34     test -x ../initramfs/sbin/mkswap                                    \
35       && ../initramfs/sbin/mkswap --help 2>&1 | grep -sq -- -U          \
36       && r=1;                                                           \
37     echo $$r)
38
39 TESTS = tests
40 TESTS_ENVIRONMENT = \
41         SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
42         SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
43         SKIP_TEST_ZEROFREE=$(shell test -x ../initramfs/usr/sbin/zerofree || echo 1) \
44         SKIP_TEST_NTFS_3G_PROBE=$(shell test -x ../initramfs/bin/ntfs-3g.probe || echo 1) \
45         SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
46         SKIP_TEST_MKSWAP_U=$(e2fs_uuid_not_supported) \
47         SKIP_TEST_SWAPON_UUID=$(e2fs_uuid_not_supported) \
48         SKIP_TEST_MKE2JOURNAL_U=$(e2fs_uuid_not_supported) \
49         SKIP_TEST_SCRUB_FILE=$(shell test -x ../initramfs/usr/bin/scrub || echo 1) \
50         SKIP_TEST_SCRUB_DEVICE=$(shell test -x ../initramfs/usr/bin/scrub || echo 1) \
51         $(VG)
52
53 # Run the tests under valgrind.
54
55 valgrind:
56         $(MAKE) check VG="valgrind --quiet --leak-check=full"
57
58 # This binary must be statically linked.  It is used for testing
59 # the "guestfs_command" and "guestfs_command_lines" functions.
60
61 test_command_SOURCES = test-command.c
62 test_command_LDFLAGS = -all-static