Configure automake to run the new subset tests.

This commit is contained in:
Garret Rieger 2018-01-29 13:30:02 -08:00 committed by Rod Sheeter
parent 5c63c37b2b
commit 0853260e99
6 changed files with 45 additions and 1 deletions

View File

@ -500,6 +500,8 @@ test/shaping/Makefile
test/shaping/data/Makefile
test/shaping/data/in-house/Makefile
test/shaping/data/text-rendering-tests/Makefile
test/subset/Makefile
test/subset/data/Makefile
docs/Makefile
docs/version.xml
])

View File

@ -2,7 +2,7 @@
NULL =
EXTRA_DIST =
SUBDIRS = api shaping fuzzing
SUBDIRS = api shaping fuzzing subset
EXTRA_DIST += \
CMakeLists.txt \

16
test/subset/Makefile.am Normal file
View File

@ -0,0 +1,16 @@
# Process this file with automake to produce Makefile.in
NULL =
EXTRA_DIST =
CLEANFILES =
SUBDIRS = data
# Convenience targets:
lib:
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
CLEANFILES += \
subset_test_suite.py[c0] \
$(NULL)
-include $(top_srcdir)/git.mk

View File

@ -0,0 +1,16 @@
# Process this file with automake to produce Makefile.in
NULL =
EXTRA_DIST =
CLEANFILES =
SUBDIRS =
# Convenience targets:
lib:
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
TEST_EXTENSIONS = .tests
TESTS_LOG_COMPILER = $(srcdir)/../run-tests.py $(top_builddir)/util/hb-subset$(EXEEXT)
include Makefile.sources
-include $(top_srcdir)/git.mk

View File

@ -0,0 +1,10 @@
TESTS = \
tests/basics.tests \
$(NULL)
XFAIL_TESTS = \
tests/basics.tests \
$(NULL)
DISABLED_TESTS = \
$(NULL)