doc: Add guestfish 'lvcreate 1M' gotcha.
[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 include $(top_srcdir)/subdir-rules.mk
19
20 generator_built = tests.c
21
22 BUILT_SOURCES = $(generator_built)
23
24 EXTRA_DIST = $(BUILT_SOURCES)
25
26 # Tests.  These are auto-generated from the test descriptions
27 # in the generator.
28
29 check_PROGRAMS = tests test-command
30
31 tests_SOURCES = tests.c
32 tests_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src \
33   $(WARN_CFLAGS) $(WERROR_CFLAGS)
34 tests_LDADD = $(top_builddir)/src/libguestfs.la
35
36 TESTS = tests
37 TESTS_ENVIRONMENT = \
38         SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
39         SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
40         SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
41         $(VG)
42
43 # Run the tests under valgrind.
44
45 valgrind:
46         $(MAKE) check VG="valgrind --quiet --leak-check=full"
47
48 # This binary must be statically linked.  It is used for testing
49 # the "guestfs_command" and "guestfs_command_lines" functions.
50
51 test_command_SOURCES = test-command.c
52 test_command_LDFLAGS = -all-static