RHEL 5: Skip 'scrub' test if command is not in the initramfs.
[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 -Wall
28 tests_LDADD = $(top_builddir)/src/libguestfs.la
29
30 TESTS = tests
31 TESTS_ENVIRONMENT = \
32         SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
33         SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
34         SKIP_TEST_ZEROFREE=$(shell test -x ../initramfs/usr/sbin/zerofree || echo 1) \
35         SKIP_TEST_NTFS_3G_PROBE=$(shell test -x ../initramfs/bin/ntfs-3g.probe || echo 1) \
36         SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
37         SKIP_TEST_MKSWAP_U=$(shell r=1; if test -x ../initramfs/sbin/mkswap; then if ../initramfs/sbin/mkswap --help 2>&1 | grep -sq -- -U; then r=0; fi; fi; echo $$r) \
38         SKIP_TEST_SCRUB_FILE=$(shell test -x ../initramfs/usr/bin/scrub || echo 1) \
39         SKIP_TEST_SCRUB_DEVICE=$(shell test -x ../initramfs/usr/bin/scrub || echo 1) \
40         $(VG)
41
42 # Run the tests under valgrind.
43
44 valgrind:
45         $(MAKE) check VG="valgrind --quiet --leak-check=full"
46
47 # This binary must be statically linked.  It is used for testing
48 # the "guestfs_command" and "guestfs_command_lines" functions.
49
50 test_command_SOURCES = test-command.c
51 test_command_LDFLAGS = -all-static