build: Create an AUTHORS file.
[libguestfs.git] / capitests / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2010 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 check_PROGRAMS = \
27         tests \
28         test-command \
29         test-create-handle \
30         test-config \
31         test-add-drive-opts \
32         test-last-errno
33
34 TESTS = \
35         tests \
36         test-create-handle \
37         test-config \
38         test-add-drive-opts \
39         test-last-errno
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_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
44         LIBGUESTFS_PATH=$(top_builddir)/appliance \
45         $(VG)
46
47 tests_SOURCES = tests.c
48 tests_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src \
49   $(WARN_CFLAGS) $(WERROR_CFLAGS)
50 tests_LDADD = $(top_builddir)/src/libguestfs.la
51
52 # This binary must be statically linked.  It is used for testing
53 # the "guestfs_command" and "guestfs_command_lines" functions.
54
55 test_command_SOURCES = test-command.c
56 test_command_LDFLAGS = -all-static
57
58 # Hand-written C API tests.
59
60 test_create_handle_SOURCES = test-create-handle.c
61 test_create_handle_CFLAGS = \
62         -I$(top_srcdir)/src -I$(top_builddir)/src \
63         $(WARN_CFLAGS) $(WERROR_CFLAGS)
64 test_create_handle_LDADD = \
65         $(top_builddir)/src/libguestfs.la
66
67 test_config_SOURCES = test-config.c
68 test_config_CFLAGS = \
69         -I$(top_srcdir)/src -I$(top_builddir)/src \
70         $(WARN_CFLAGS) $(WERROR_CFLAGS)
71 test_config_LDADD = \
72         $(top_builddir)/src/libguestfs.la
73
74 test_add_drive_opts_SOURCES = test-add-drive-opts.c
75 test_add_drive_opts_CFLAGS = \
76         -I$(top_srcdir)/src -I$(top_builddir)/src \
77         $(WARN_CFLAGS) $(WERROR_CFLAGS)
78 test_add_drive_opts_LDADD = \
79         $(top_builddir)/src/libguestfs.la
80
81 test_last_errno_SOURCES = test-last-errno.c
82 test_last_errno_CFLAGS = \
83         -I$(top_srcdir)/src -I$(top_builddir)/src \
84         $(WARN_CFLAGS) $(WERROR_CFLAGS)
85 test_last_errno_LDADD = \
86         $(top_builddir)/src/libguestfs.la
87
88 # Run the tests under valgrind.
89
90 valgrind:
91         $(MAKE) check VG="valgrind --quiet --leak-check=full"