Install the other a11y tests as well

This commit is contained in:
Matthias Clasen 2013-05-14 23:51:37 -04:00
parent 53b3d068cb
commit c4f0ff9d77
7 changed files with 40 additions and 5 deletions

View File

@ -77,7 +77,7 @@ testdata = \
if BUILDOPT_INSTALL_TESTS
insttestdir=$(pkglibexecdir)/installed-tests
insttest_PROGRAMS = accessibility-dump
insttest_PROGRAMS = $(TEST_PROGS)
a11ytestdir = $(insttestdir)/a11ytests
a11ytest_DATA = $(testdata)
@ -86,14 +86,25 @@ substitutions = \
-e s,@pkglibexecdir\@,$(pkglibexecdir),g \
$(NULL)
a11ytests.test: a11ytests.test.in Makefile
test_in_files = \
a11ytests.test.in \
a11ychildren.test.in \
a11ytree.test.in \
a11yvalue.test.in \
a11yderive.test.in \
a11ytext.test.in \
a11yutil.test.in \
$(NULL)
test_files = $(test_in_files:.test.in=.test)
$(test_files): %.test: %.test.in
$(AM_V_GEN) sed $(substitutions) $< > $@.tmp && mv $@.tmp $@
EXTRA_DIST += \
a11ytests.test.in
EXTRA_DIST += $(test_in_files)
testmetadir = $(datadir)/installed-tests/$(PACKAGE)
testmeta_DATA = a11ytests.test
testmeta_DATA = $(test_files)
endif
-include $(top_srcdir)/git.mk

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/children"
Type=session

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/derive"
Type=session

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/text"
Type=session

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/tree-relationships"
Type=session

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/util"
Type=session

View File

@ -0,0 +1,4 @@
[Test]
Exec=/bin/sh -c "@pkglibexecdir@/installed-tests/value"
Type=session