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