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