summaryrefslogtreecommitdiffstats
path: root/tests/local.mk
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-12-07 12:07:15 (EST)
committer P. J. McDermott <pj@pehjota.net>2015-12-07 12:07:15 (EST)
commit34a77f7822126263fed5c72aedaa65b58fee94ac (patch)
treea3404e611672f64126298e2f0f6d3398b014851e /tests/local.mk
parent84f3cccfb57fc8270b2ae14f0adf2c2ff24cc69b (diff)
parent41f638c961d5c7832e2b18a9f2e45a09b54dc53e (diff)
Merge branch 'feature/use-shld'
Diffstat (limited to 'tests/local.mk')
-rw-r--r--tests/local.mk51
1 files changed, 49 insertions, 2 deletions
diff --git a/tests/local.mk b/tests/local.mk
index 023eae1..4c54bc8 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -1,8 +1,55 @@
-TESTS = \
+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)
+
+tests_resolve_deps_basic_SOURCES = \
tests/resolve_deps.basic.sh \
+ tests/common.sh \
+ src/pkg.sh
+tests_resolve_deps_basic_LDADD = $(tests_resolve_deps_basic_SOURCES:.sh=.sho)
+
+tests_match_arch_SOURCES = \
tests/match_arch.sh \
+ tests/common.sh \
+ src/archplat.sh
+tests_match_arch_LDADD = $(tests_match_arch_SOURCES:.sh=.sho)
+
+tests_match_plat_SOURCES = \
tests/match_plat.sh \
+ tests/common.sh \
+ src/archplat.sh
+tests_match_plat_LDADD = $(tests_match_plat_SOURCES:.sh=.sho)
+
+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)
+
+tests_plat_is_concerned_SOURCES = \
tests/plat_is_concerned.sh \
- tests/reduce_deps.sh
+ tests/common.sh \
+ src/archplat.sh
+tests_plat_is_concerned_LDADD = $(tests_plat_is_concerned_SOURCES:.sh=.sho)
+
+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)