]> git.ozlabs.org Git - petitboot/blob - test/parser/Makefile.am
discover: Check for devices with duplicate serial properties
[petitboot] / test / parser / Makefile.am
1 #  This program is free software; you can redistribute it and/or modify
2 #  it under the terms of the GNU General Public License as published by
3 #  the Free Software Foundation; version 2 of the License.
4 #
5 #  This program is distributed in the hope that it will be useful,
6 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
7 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8 #  GNU General Public License for more details.
9 #
10 #  You should have received a copy of the GNU General Public License
11 #  along with this program; if not, write to the Free Software
12 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
13
14 AUTOMAKE_OPTIONS = parallel-tests
15
16 AM_CPPFLAGS = \
17         -I$(top_srcdir) \
18         -I$(top_srcdir)/lib \
19         -I$(top_srcdir)/discover \
20         -DLOCAL_STATE_DIR='"$(localstatedir)"' \
21         -DTEST_CONF_BASE='"$(srcdir)/data"' \
22         -DDEBUG -DPETITBOOT_TEST
23
24 AM_CFLAGS = -O0 -ggdb -Wall -Wextra -Werror
25
26 LDADD = $(top_builddir)/lib/libpbcore.la libtest.ro
27
28 TESTS = \
29         test-null \
30         test-grub2-single \
31         test-grub2-multiple-resolve \
32         test-grub2-single-line-if \
33         test-grub2-f18-ppc64 \
34         test-grub2-ubuntu-13_04-x86 \
35         test-kboot-single \
36         test-yaboot-single \
37         test-yaboot-partition \
38         test-yaboot-partition-override \
39         test-yaboot-external \
40         test-yaboot-root-global \
41         test-yaboot-root-override \
42         test-yaboot-device-override \
43         test-yaboot-default \
44         test-yaboot-rh8-ppc64 \
45         test-pxe-empty \
46         test-pxe-single \
47         test-pxe-initrd-in-append \
48         test-pxe-default
49
50 $(TESTS): %: %.embedded-config.o
51 $(TESTS): LDADD += $@.embedded-config.o
52
53 extract_config = $(srcdir)/extract-config.awk
54
55 %.embedded-config.c: %.c $(extract_config)
56         $(AWK) -f $(extract_config) $< > $@
57
58 # objects under test
59 parser_objs = \
60         $(top_srcdir)/discover/yaboot-parser.c \
61         $(top_srcdir)/discover/kboot-parser.c \
62         $(top_srcdir)/discover/pxe-parser.c \
63         $(top_srcdir)/discover/resource.c \
64         $(top_srcdir)/discover/paths.c \
65         $(top_srcdir)/discover/device-handler.c \
66         $(top_srcdir)/discover/parser-conf.c
67
68 libtest_ro_SOURCES = \
69         main.c \
70         utils.c \
71         handler.c \
72         parser-test.h \
73         $(parser_objs)
74
75 libtest_ro_LDADD = \
76         ../../discover/grub2/grub2-parser.ro
77
78 libtest.ro$(EXEEXT): $(libtest_ro_OBJECTS) $(libtest_ro_LDADD)
79         $(LD) -o $@ -r $^
80
81 check_PROGRAMS = $(TESTS) libtest.ro
82
83 check_DATA = \
84         data/grub2-f18-ppc64.conf \
85         data/grub2-ubuntu-13_04-x86.conf \
86         data/yaboot-rh8-ppc64.conf
87
88 EXTRA_DIST = $(check_DATA) $(extract_config)
89
90 CLEANFILES = \
91         $(foreach f, $(TESTS), $(f).embedded-config.c $(f).embedded-config.o)
92
93 MAINTAINERCLEANFILES = Makefile.in