capitests: Remove warning about dead definitions.
[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-just-header \
30         test-create-handle \
31         test-config \
32         test-add-drive-opts \
33         test-last-errno
34
35 TESTS = \
36         tests \
37         test-just-header \
38         test-create-handle \
39         test-config \
40         test-add-drive-opts \
41         test-last-errno
42
43 # The API behind this test is not baked yet.
44 #if HAVE_LIBVIRT
45 #check_PROGRAMS += test-add-libvirt-dom
46 #TESTS += test-add-libvirt-dom
47 #endif
48 EXTRA_DIST += test-add-libvirt-dom.c
49
50 TESTS_ENVIRONMENT = \
51         SKIP_TEST_COMMAND=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
52         SKIP_TEST_COMMAND_LINES=$(shell ldd test-command | grep -sq 'not a dynamic executable' || echo 1) \
53         SKIP_TEST_CHECKSUM_8=$(shell if test `find ../initramfs -name squashfs.ko | wc -l` -eq 0; then echo 1; fi) \
54         LIBGUESTFS_PATH=$(top_builddir)/appliance \
55         $(VG)
56
57 tests_SOURCES = tests.c
58 tests_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src \
59   $(WARN_CFLAGS) $(WERROR_CFLAGS)
60 tests_LDADD = $(top_builddir)/src/libguestfs.la
61
62 # This binary must be statically linked.  It is used for testing
63 # the "guestfs_command" and "guestfs_command_lines" functions.
64
65 test_command_SOURCES = test-command.c
66 test_command_LDFLAGS = -all-static
67
68 # Hand-written C API tests.
69
70 test_just_header_SOURCES = test-just-header.c
71 test_just_header_CFLAGS = \
72         -I$(top_srcdir)/src -I$(top_builddir)/src \
73         $(WARN_CFLAGS) $(WERROR_CFLAGS)
74 test_just_header_LDADD = \
75         $(top_builddir)/src/libguestfs.la
76
77 test_create_handle_SOURCES = test-create-handle.c
78 test_create_handle_CFLAGS = \
79         -I$(top_srcdir)/src -I$(top_builddir)/src \
80         $(WARN_CFLAGS) $(WERROR_CFLAGS)
81 test_create_handle_LDADD = \
82         $(top_builddir)/src/libguestfs.la
83
84 test_config_SOURCES = test-config.c
85 test_config_CFLAGS = \
86         -I$(top_srcdir)/src -I$(top_builddir)/src \
87         $(WARN_CFLAGS) $(WERROR_CFLAGS)
88 test_config_LDADD = \
89         $(top_builddir)/src/libguestfs.la
90
91 test_add_drive_opts_SOURCES = test-add-drive-opts.c
92 test_add_drive_opts_CFLAGS = \
93         -I$(top_srcdir)/src -I$(top_builddir)/src \
94         $(WARN_CFLAGS) $(WERROR_CFLAGS)
95 test_add_drive_opts_LDADD = \
96         $(top_builddir)/src/libguestfs.la
97
98 test_last_errno_SOURCES = test-last-errno.c
99 test_last_errno_CFLAGS = \
100         -I$(top_srcdir)/src -I$(top_builddir)/src \
101         $(WARN_CFLAGS) $(WERROR_CFLAGS)
102 test_last_errno_LDADD = \
103         $(top_builddir)/src/libguestfs.la
104
105 #if HAVE_LIBVIRT
106 #test_add_libvirt_dom_SOURCES = test-add-libvirt-dom.c
107 #test_add_libvirt_dom_CFLAGS = \
108 #       -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/gnulib/lib \
109 #       $(LIBVIRT_CFLAGS) \
110 #       $(WARN_CFLAGS) $(WERROR_CFLAGS)
111 #test_add_libvirt_dom_LDADD = \
112 #       $(top_builddir)/src/libguestfs.la $(LIBVIRT_LIBS) \
113 #       $(LTLIBTHREAD) ../gnulib/lib/libgnu.la
114 #endif
115
116 # Run the tests under valgrind.
117
118 valgrind:
119         $(MAKE) check VG="valgrind --quiet --leak-check=full"