Add test script to test recovery from qemu failure.
[libguestfs.git] / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009 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 ACLOCAL_AMFLAGS = -I m4
19
20 SUBDIRS = src daemon fish examples images
21
22 if HAVE_OCAML
23 SUBDIRS += ocaml
24 endif
25 if HAVE_PERL
26 SUBDIRS += perl
27 endif
28 if HAVE_PYTHON
29 SUBDIRS += python
30 endif
31 if HAVE_RUBY
32 SUBDIRS += ruby
33 endif
34 if HAVE_JAVA
35 SUBDIRS += java
36 endif
37 if HAVE_INSPECTOR
38 SUBDIRS += inspector
39 endif
40
41 EXTRA_DIST = \
42         make-initramfs.sh update-initramfs.sh \
43         guestfs.pod guestfs-actions.pod guestfs-structs.pod \
44         guestfish.pod guestfish-actions.pod \
45         libguestfs.spec \
46         html/pod.css \
47         HACKING TODO \
48         tests.c \
49         libguestfs.pc libguestfs.pc.in \
50         gitlog-to-changelog \
51         recipes/LICENSE \
52         recipes/README \
53         recipes/*.html \
54         recipes/*.sh \
55         recipes/*.example \
56         html/recipes.css \
57         make-recipes.sh \
58         test-cleanup.sh
59
60 # Build the root filesystem.
61 # Currently this is arch-dependent, so it seems like putting it in
62 # $(libdir) is best.  When we build cross-architecture filesystems we
63 # should probably move them to $(datadir).
64
65 fsdir = $(libdir)/guestfs
66
67 INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img
68 VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
69
70 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
71
72 $(INITRAMFSIMG) $(VMLINUZ): initramfs/fakeroot.log
73
74 initramfs/fakeroot.log: make-initramfs.sh.in
75         -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak
76         -mv $(VMLINUZ) $(VMLINUZ).bak
77         if ! bash $(top_builddir)/make-initramfs.sh; then rm -f $@; exit 1; fi
78
79 $(INITRAMFSIMG): initramfs/fakeroot.log daemon/guestfsd
80         rm -f $@
81         bash $(top_builddir)/update-initramfs.sh
82         touch $@
83
84 make-initramfs.sh: make-initramfs.sh.in
85         ./config.status $@
86
87 # Tests.  These are auto-generated from the test descriptions.
88
89 check_PROGRAMS = tests
90
91 tests_SOURCES = tests.c
92 tests_CFLAGS = \
93         -I$(top_builddir)/src -Wall
94 tests_LDADD = $(top_builddir)/src/libguestfs.la
95
96 TESTS = $(check_PROGRAMS)
97
98 $(TESTS): $(INITRAMFS) $(VMLINUZ)
99
100 # Manual pages.
101 # guestfs-actions.pod and guestfs-structs are autogenerated.  There is
102 # no include mechanism for POD, so we have to do it by hand.
103
104 man_MANS = guestfs.3 guestfish.1
105
106 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
107         sed \
108           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
109           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
110           < $< | \
111         $(POD2MAN) \
112           --section 3 \
113           -c "Virtualization Support" \
114           --name "guestfs" \
115           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
116           > $@
117
118 guestfish.1: guestfish.pod guestfish-actions.pod
119         sed \
120           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
121           < $< | \
122         $(POD2MAN) \
123           --section 1 \
124           -c "Virtualization Support" \
125           --name "guestfish" \
126           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
127           > $@
128
129 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
130
131 html/guestfs.3.html: guestfs.pod guestfs-actions.pod guestfs-structs.pod
132         sed \
133           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
134           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
135           < $< | \
136         pod2html \
137           --css 'pod.css' \
138           --title "libguestfs API documentation" \
139           --htmldir html \
140           --outfile $@
141
142 html/guestfish.1.html: guestfish.pod guestfish-actions.pod
143         sed \
144           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
145           < $< | \
146         pod2html \
147           --css 'pod.css' \
148           --title "guestfish, libguestfs filesystem interactive shell" \
149           --htmldir html \
150           --outfile $@
151
152 # Recipes web page.
153 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
154         rm -f $@ $@-t
155         sh make-recipes.sh recipes/*.sh > $@-t
156         mv $@-t $@
157
158 website: html/guestfs.3.html html/guestfish.1.html \
159         html/virt-inspector.1.html \
160         html/recipes.html
161         cp $^ html/pod.css html/recipes.css \
162           $(HOME)/d/redhat/et-website/libguestfs/
163
164 # Generate the ChangeLog automatically from the gitlog.
165
166 dist-hook:
167         ./gitlog-to-changelog > ChangeLog
168         cp ChangeLog $(distdir)/ChangeLog
169
170 # Pkgconfig.
171
172 pkgconfigdir = $(libdir)/pkgconfig
173 pkgconfig_DATA = libguestfs.pc
174
175 # Test-boot the image.
176
177 test-boot: emptydisk
178         qemu-system-$(host_cpu) \
179           -m 384 \
180           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
181           -hda emptydisk
182
183 emptydisk:
184         rm -f emptydisk
185         dd if=/dev/zero of=emptydisk bs=1024 count=1440
186         echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null
187
188 # This is a more realistic test boot command line which better
189 # reflects what the library does.
190
191 test-boot-realistic: emptydisk
192         qemu-system-$(host_cpu) \
193           -m 384 \
194           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
195           -hda emptydisk \
196           -append "console=ttyS0 guestfs=10.0.2.4:6666" \
197           -nographic \
198           -serial stdio \
199           -net channel,6666:unix:/tmp/sock,server,nowait \
200           -net user,vlan=0 \
201           -net nic,model=virtio,vlan=0
202
203 # Make clean.
204
205 CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp
206
207 clean-local:
208         rm -rf initramfs