tests: Use ISO instead of squashfs.
[libguestfs.git] / images / Makefile.am
1 # libguestfs test images
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 # Old RHEL 5 autoconf doesn't have builddir.
19 builddir ?= $(top_builddir)/images
20
21 EXTRA_DIST = \
22         helloworld.tar \
23         helloworld.tar.gz \
24         mbr-ext2-empty.img.gz \
25         empty known-1 known-2 known-3 known-4 known-5 \
26         bin-i586-dynamic \
27         bin-sparc-dynamic \
28         bin-win32.exe \
29         bin-win64.exe \
30         bin-x86_64-dynamic \
31         lib-i586.so \
32         lib-sparc.so \
33         lib-win32.dll \
34         lib-win64.dll \
35         lib-x86_64.so \
36         test-grep.txt
37
38 noinst_DATA = test.iso
39
40 CLEANFILES = \
41         test.iso test.sqsh \
42         100kallzeroes 100kallnewlines 100kallspaces 100krandom 10klines \
43         initrd
44
45 images_files_src = \
46         $(srcdir)/helloworld.tar \
47         $(srcdir)/helloworld.tar.gz \
48         $(srcdir)/empty \
49         $(srcdir)/known-1 \
50         $(srcdir)/known-2 \
51         $(srcdir)/known-3 \
52         $(srcdir)/known-4 \
53         $(srcdir)/known-5 \
54         $(srcdir)/bin-i586-dynamic \
55         $(srcdir)/bin-sparc-dynamic \
56         $(srcdir)/bin-win32.exe \
57         $(srcdir)/bin-win64.exe \
58         $(srcdir)/bin-x86_64-dynamic \
59         $(srcdir)/lib-i586.so \
60         $(srcdir)/lib-sparc.so \
61         $(srcdir)/lib-win32.dll \
62         $(srcdir)/lib-win64.dll \
63         $(srcdir)/lib-x86_64.so \
64         $(srcdir)/test-grep.txt
65
66 images_files_build = \
67         $(builddir)/100kallzeroes \
68         $(builddir)/100kallnewlines \
69         $(builddir)/100kallspaces \
70         $(builddir)/100krandom \
71         $(builddir)/10klines \
72         $(builddir)/initrd \
73         $(builddir)/initrd-x86_64.img \
74         $(builddir)/initrd-x86_64.img.gz \
75         $(builddir)/test-grep.txt.gz
76
77 images_files = $(images_files_src) $(images_files_build)
78
79 test.iso: $(images_files)
80         rm -f $@ $@-t
81         mkdir -p directory
82         $(MKISOFS) -J -r -graft-points \
83           -o $@-t \
84           $(images_files) /directory=directory
85         rmdir directory
86         mv $@-t $@
87
88 $(builddir)/100kallzeroes:
89         rm -f $@ $@-t
90         dd if=/dev/zero of=$@-t bs=1024 count=100
91         mv $@-t $@
92
93 $(builddir)/100kallnewlines: $(builddir)/100kallzeroes
94         rm -f $@ $@-t
95         tr '\0' '\n' < $< > $@-t
96         mv $@-t $@
97
98 $(builddir)/100kallspaces: $(builddir)/100kallzeroes
99         rm -f $@ $@-t
100         tr '\0' ' ' < $< > $@-t
101         mv $@-t $@
102
103 $(builddir)/100krandom:
104         rm -f $@ $@-t
105         dd if=/dev/urandom of=$@-t bs=1024 count=100
106         mv $@-t $@
107
108 $(builddir)/10klines:
109         rm -f $@ $@-t
110         i=0; \
111         while [ $$i -lt 10000 ]; do \
112           echo "$${i}abcdefghijklmnopqrstuvwxyz"; \
113           i=$$(($$i+1)); \
114         done > $@-t
115         mv $@-t $@
116
117 $(builddir)/initrd: empty known-1 known-2 known-3 known-4 known-5
118         rm -f $@ $@-t
119         for f in $^; do echo $$f; done | cpio -o -H newc | gzip --best > $@-t
120         mv $@-t $@
121
122 # Create a dummy initrd with a single file called 'bin/nash' which
123 # is used to test the Sys::Guestfs::Lib::file_architecture function.
124 $(builddir)/initrd-x86_64.img: bin-x86_64-dynamic
125         rm -rf bin $@ $@-t
126         mkdir bin
127         cp $< bin/nash
128         echo bin/nash | cpio -o -H newc > $@-t
129         mv $@-t $@
130         rm -rf bin $@-t
131
132 $(builddir)/initrd-x86_64.img.gz: initrd-x86_64.img
133         rm -f $@ $@-t
134         gzip --best -c $< > $@-t
135         mv $@-t $@
136
137 $(builddir)/test-grep.txt.gz: test-grep.txt
138         rm -f $@ $@-t
139         gzip --best -c $< > $@-t
140         mv $@-t $@