]> git.ozlabs.org Git - petitboot/blob - test/parser/Makefile.am
75411496526f2034874a50984fb9e60f3b7a2233
[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 parser_TESTS = \
15         test/parser/test-null \
16         test/parser/test-grub2-single \
17         test/parser/test-grub2-default \
18         test/parser/test-grub2-empty \
19         test/parser/test-grub2-default-index \
20         test/parser/test-grub2-default-multiword \
21         test/parser/test-grub2-multiple-resolve \
22         test/parser/test-grub2-multiple-id \
23         test/parser/test-grub2-single-line-if \
24         test/parser/test-grub2-load-env \
25         test/parser/test-grub2-save-env \
26         test/parser/test-grub2-saved-default \
27         test/parser/test-grub2-nondefault-prefix \
28         test/parser/test-grub2-f18-ppc64 \
29         test/parser/test-grub2-f20-ppc64 \
30         test/parser/test-grub2-ubuntu-13_04-x86 \
31         test/parser/test-grub2-lexer-error \
32         test/parser/test-grub2-parser-error \
33         test/parser/test-kboot-single \
34         test/parser/test-yaboot-empty \
35         test/parser/test-yaboot-single \
36         test/parser/test-yaboot-partition \
37         test/parser/test-yaboot-partition-override \
38         test/parser/test-yaboot-external \
39         test/parser/test-yaboot-root-global \
40         test/parser/test-yaboot-root-override \
41         test/parser/test-yaboot-device-override \
42         test/parser/test-yaboot-global-state \
43         test/parser/test-yaboot-leftovers \
44         test/parser/test-yaboot-default \
45         test/parser/test-yaboot-rh8-ppc64 \
46         test/parser/test-pxe-empty \
47         test/parser/test-pxe-single \
48         test/parser/test-pxe-initrd-in-append \
49         test/parser/test-pxe-mac-without-conf \
50         test/parser/test-pxe-ip-without-conf \
51         test/parser/test-pxe-non-url-conf \
52         test/parser/test-pxe-local \
53         test/parser/test-pxe-pathprefix-with-conf \
54         test/parser/test-pxe-non-url-pathprefix-with-conf \
55         test/parser/test-pxe-pathprefix-discover \
56         test/parser/test-pxe-pathprefix-discover-mac \
57         test/parser/test-pxe-path-resolve-relative \
58         test/parser/test-pxe-path-resolve-absolute \
59         test/parser/test-pxe-discover-bootfile-root \
60         test/parser/test-pxe-discover-bootfile-subdir \
61         test/parser/test-pxe-discover-bootfile-pathprefix \
62         test/parser/test-pxe-discover-bootfile-relative-conffile \
63         test/parser/test-pxe-discover-bootfile-absolute-conffile \
64         test/parser/test-unresolved-remove
65
66 TESTS += $(parser_TESTS)
67 check_PROGRAMS += $(parser_TESTS) test/parser/libtest.ro
68
69 check_DATA += \
70         test/parser/data/grub2-f18-ppc64.conf \
71         test/parser/data/grub2-f20-ppc.conf \
72         test/parser/data/grub2-ubuntu-13_04-x86.conf \
73         test/parser/data/yaboot-rh8-ppc64.conf
74
75 $(parser_TESTS): AM_CPPFLAGS += \
76                 -I$(top_srcdir)/discover \
77                 -DLOCAL_STATE_DIR='"$(localstatedir)"'
78 $(parser_TESTS): LDADD += $@.embedded-config.o test/parser/libtest.ro $(core_lib)
79 $(parser_TESTS): %: %.embedded-config.o test/parser/libtest.ro
80
81 extract_config = $(srcdir)/test/parser/extract-config.awk
82
83 %.embedded-config.c: %.c $(extract_config)
84         $(AM_V_GEN)$(AWK) -f $(extract_config) $< > $@
85
86 # objects under test
87
88 test_parser_libtest_ro_SOURCES = \
89         test/parser/main.c \
90         test/parser/utils.c \
91         test/parser/handler.c \
92         test/parser/parser-test.h \
93         discover/yaboot-parser.c \
94         discover/kboot-parser.c \
95         discover/pxe-parser.c \
96         discover/platform.c \
97         discover/resource.c \
98         discover/paths.c \
99         discover/device-handler.c \
100         discover/parser-conf.c \
101         discover/user-event.c \
102         discover/event.c \
103         $(discover_grub2_grub2_parser_ro_SOURCES)
104
105 test_parser_libtest_ro_CPPFLAGS = \
106         $(AM_CPPFLAGS) \
107         -I$(top_srcdir)/discover \
108         -I$(top_srcdir)/discover/grub2 \
109         -DPETITBOOT_TEST \
110         -DLOCAL_STATE_DIR='"$(localstatedir)"' \
111         -DTEST_CONF_BASE='"$(top_srcdir)/test/parser/data"'
112
113 test/parser/libtest.ro$(EXEEXT): $(test_parser_libtest_ro_OBJECTS) \
114                                            $(test_parser_libtest_ro_LDADD)
115         $(AM_V_GEN)$(LD) -o $@ -r $^
116
117 EXTRA_DIST += $(check_DATA) $(extract_config)
118
119 CLEANFILES += \
120         $(foreach f, $(TESTS), $(f).embedded-config.c $(f).embedded-config.o)
121