Configure automake to run the new subset tests.
This commit is contained in:
parent
5c63c37b2b
commit
0853260e99
|
@ -500,6 +500,8 @@ test/shaping/Makefile
|
||||||
test/shaping/data/Makefile
|
test/shaping/data/Makefile
|
||||||
test/shaping/data/in-house/Makefile
|
test/shaping/data/in-house/Makefile
|
||||||
test/shaping/data/text-rendering-tests/Makefile
|
test/shaping/data/text-rendering-tests/Makefile
|
||||||
|
test/subset/Makefile
|
||||||
|
test/subset/data/Makefile
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
docs/version.xml
|
docs/version.xml
|
||||||
])
|
])
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
NULL =
|
NULL =
|
||||||
EXTRA_DIST =
|
EXTRA_DIST =
|
||||||
SUBDIRS = api shaping fuzzing
|
SUBDIRS = api shaping fuzzing subset
|
||||||
|
|
||||||
EXTRA_DIST += \
|
EXTRA_DIST += \
|
||||||
CMakeLists.txt \
|
CMakeLists.txt \
|
||||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -0,0 +1,10 @@
|
||||||
|
TESTS = \
|
||||||
|
tests/basics.tests \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
XFAIL_TESTS = \
|
||||||
|
tests/basics.tests \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
DISABLED_TESTS = \
|
||||||
|
$(NULL)
|
Loading…
Reference in New Issue