summaryrefslogtreecommitdiffstats
path: root/tests/local.mk
blob: 6eb9878e098e4ca86a6174b2610b847c7ca42312 (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
check_PROGRAMS = \
	tests/parse_control.basic \
	tests/resolve_deps.basic \
	tests/match_arch \
	tests/match_plat \
	tests/arch_is_concerned \
	tests/plat_is_concerned \
	tests/reduce_deps

TESTS = $(check_PROGRAMS)

tests_parse_control_basic_SOURCES = \
	tests/parse_control.basic.sh \
	tests/parse_control.common.sh \
	tests/common.sh \
	src/output.sh \
	src/control.sh
tests_parse_control_basic_LDADD = $(tests_parse_control_basic_SOURCES:.sh=.sho)
CLEANFILES += $(tests_parse_control_basic_LDADD)

tests_resolve_deps_basic_SOURCES = \
	tests/resolve_deps.basic.sh \
	tests/common.sh \
	src/deps.sh
tests_resolve_deps_basic_LDADD = $(tests_resolve_deps_basic_SOURCES:.sh=.sho)
CLEANFILES += $(tests_resolve_deps_basic_LDADD)

tests_match_arch_SOURCES = \
	tests/match_arch.sh \
	tests/common.sh \
	src/archplat.sh
tests_match_arch_LDADD = $(tests_match_arch_SOURCES:.sh=.sho)
CLEANFILES += $(tests_match_arch_LDADD)

tests_match_plat_SOURCES = \
	tests/match_plat.sh \
	tests/common.sh \
	src/archplat.sh
tests_match_plat_LDADD = $(tests_match_plat_SOURCES:.sh=.sho)
CLEANFILES += $(tests_match_plat_LDADD)

tests_arch_is_concerned_SOURCES = \
	tests/arch_is_concerned.sh \
	tests/common.sh \
	src/archplat.sh
tests_arch_is_concerned_LDADD = $(tests_arch_is_concerned_SOURCES:.sh=.sho)
CLEANFILES += $(tests_arch_is_concerned_LDADD)

tests_plat_is_concerned_SOURCES = \
	tests/plat_is_concerned.sh \
	tests/common.sh \
	src/archplat.sh
tests_plat_is_concerned_LDADD = $(tests_plat_is_concerned_SOURCES:.sh=.sho)
CLEANFILES += $(tests_plat_is_concerned_LDADD)

tests_reduce_deps_SOURCES = \
	tests/reduce_deps.sh \
	tests/common.sh \
	src/deps.sh \
	src/archplat.sh
tests_reduce_deps_LDADD = $(tests_reduce_deps_SOURCES:.sh=.sho)
CLEANFILES += $(tests_reduce_deps_LDADD)