summaryrefslogtreecommitdiffstats
path: root/tests/local.mk
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-22 01:48:57 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-22 01:48:57 (EDT)
commitd841dc0bfb1d18a2f85f76096d4aebc4d772b88e (patch)
treed3c59eed4e2af1a88b7a6cc7c06f1eee6c4e6110 /tests/local.mk
parent44e452fb3c8cc7a093d72fbc280be3973e627a62 (diff)
parent76885ce7f12b98f0700a3a0535e06425bc1a9aa5 (diff)
Merge branch 'feature/tap-tests'
Diffstat (limited to 'tests/local.mk')
-rw-r--r--tests/local.mk29
1 files changed, 8 insertions, 21 deletions
diff --git a/tests/local.mk b/tests/local.mk
index 6eb9878..42ac039 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -1,8 +1,6 @@
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
@@ -12,7 +10,9 @@ TESTS = $(check_PROGRAMS)
tests_parse_control_basic_SOURCES = \
tests/parse_control.basic.sh \
tests/parse_control.common.sh \
- tests/common.sh \
+ tests/aux/common.sh \
+ tests/aux/tap-functions.sh \
+ src/locale.sh \
src/output.sh \
src/control.sh
tests_parse_control_basic_LDADD = $(tests_parse_control_basic_SOURCES:.sh=.sho)
@@ -20,42 +20,29 @@ CLEANFILES += $(tests_parse_control_basic_LDADD)
tests_resolve_deps_basic_SOURCES = \
tests/resolve_deps.basic.sh \
- tests/common.sh \
+ tests/aux/common.sh \
+ tests/aux/tap-functions.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 \
+ tests/aux/tap-functions.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 \
+ tests/aux/tap-functions.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 \
+ tests/aux/tap-functions.sh \
src/deps.sh \
src/archplat.sh
tests_reduce_deps_LDADD = $(tests_reduce_deps_SOURCES:.sh=.sho)