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