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