harfbuzz/test/shaping/Makefile.am

102 lines
2.1 KiB
Makefile
Raw Normal View History

# Process this file with automake to produce Makefile.in
2012-01-22 01:43:58 +01:00
NULL =
EXTRA_DIST =
CLEANFILES =
DISTCLEANFILES =
MAINTAINERCLEANFILES =
2015-09-01 15:45:46 +02:00
# Convenience targets:
lib:
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
manifests:
@$(srcdir)/hb-manifest-update "$(srcdir)/texts" "$(srcdir)/fonts" "$(srcdir)/tests"
2012-01-19 21:43:48 +01:00
2012-01-22 01:43:58 +01:00
EXTRA_DIST += \
README.md \
2012-01-22 01:43:58 +01:00
hb-diff \
hb-diff-colorize \
2012-01-22 01:43:58 +01:00
hb-diff-filter-failures \
2012-05-09 09:54:54 +02:00
hb-diff-ngrams \
2012-05-09 07:45:17 +02:00
hb-diff-stat \
2012-01-22 01:43:58 +01:00
hb-manifest-read \
hb-manifest-update \
hb-unicode-decode \
hb-unicode-encode \
hb-unicode-prettyname \
2014-07-16 19:32:51 +02:00
record-test.sh \
run-tests.sh \
2013-10-28 20:23:07 +01:00
texts/in-tree \
fonts/sha1sum \
$(TESTS) \
2012-01-22 01:43:58 +01:00
$(NULL)
# TODO Figure out Python stuff
EXTRA_DIST += \
hb_test_tools.py \
$(NULL)
CLEANFILES += \
hb_test_tools.py[co] \
$(NULL)
TESTS = \
tests/arabic-fallback-shaping.tests \
tests/arabic-feature-order.tests \
tests/arabic-like-joining.tests \
tests/automatic-fractions.tests \
tests/cluster.tests \
tests/color-fonts.tests \
tests/context-matching.tests \
tests/cursive-positioning.tests \
2015-07-23 13:49:09 +02:00
tests/default-ignorables.tests \
tests/emoji-flag-tags.tests \
2016-05-02 10:28:24 +02:00
tests/fallback-positioning.tests \
2015-10-09 18:34:02 +02:00
tests/fuzzed.tests \
tests/hangul-jamo.tests \
tests/hyphens.tests \
tests/indic-joiner-candrabindu.tests \
[indic] Disable automatic ZWNJ handling for Indic features Fixes https://github.com/behdad/harfbuzz/issues/294 Also fixes a bunch of other Indic issues. Test results after: BENGALI: 353725 out of 354188 tests passed. 463 failed (0.130722%) DEVANAGARI: 707307 out of 707394 tests passed. 87 failed (0.0122987%) GUJARATI: 366355 out of 366457 tests passed. 102 failed (0.0278341%) GURMUKHI: 60732 out of 60747 tests passed. 15 failed (0.0246926%) KANNADA: 951201 out of 951913 tests passed. 712 failed (0.0747968%) KHMER: 299071 out of 299124 tests passed. 53 failed (0.0177184%) MALAYALAM: 1048136 out of 1048334 tests passed. 198 failed (0.0188871%) ORIYA: 42320 out of 42329 tests passed. 9 failed (0.021262%) SINHALA: 271662 out of 271847 tests passed. 185 failed (0.068053%) TAMIL: 1091754 out of 1091754 tests passed. 0 failed (0%) TELUGU: 970555 out of 970573 tests passed. 18 failed (0.00185457%) Before: BENGALI: 353725 out of 354188 tests passed. 463 failed (0.130722%) DEVANAGARI: 707307 out of 707394 tests passed. 87 failed (0.0122987%) GUJARATI: 366349 out of 366457 tests passed. 108 failed (0.0294714%) GURMUKHI: 60732 out of 60747 tests passed. 15 failed (0.0246926%) KANNADA: 951190 out of 951913 tests passed. 723 failed (0.0759523%) KHMER: 299070 out of 299124 tests passed. 54 failed (0.0180527%) MALAYALAM: 1048136 out of 1048334 tests passed. 198 failed (0.0188871%) ORIYA: 42320 out of 42329 tests passed. 9 failed (0.021262%) SINHALA: 271662 out of 271847 tests passed. 185 failed (0.068053%) TAMIL: 1091753 out of 1091754 tests passed. 1 failed (9.15957e-05%) TELUGU: 970555 out of 970573 tests passed. 18 failed (0.00185457%)
2017-07-14 15:14:35 +02:00
tests/indic-joiners.tests \
tests/indic-old-spec.tests \
tests/indic-pref-blocking.tests \
2016-08-09 03:08:08 +02:00
tests/language-tags.tests \
tests/ligature-id.tests \
tests/mark-filtering-sets.tests \
tests/mongolian-variation-selector.tests \
tests/spaces.tests \
2015-11-27 00:48:30 +01:00
tests/simple.tests \
tests/tibetan-contractions-1.tests \
tests/tibetan-contractions-2.tests \
tests/tibetan-vowels.tests \
tests/use.tests \
tests/use-marchen.tests \
tests/vertical.tests \
tests/zero-width-marks.tests \
$(NULL)
TEST_EXTENSIONS = \
.tests \
$(NULL)
AM_TESTS_ENVIRONMENT = \
EXEEXT="$(EXEEXT)"; \
2014-07-23 00:01:46 +02:00
export EXEEXT; \
srcdir="$(srcdir)"; \
export srcdir; \
builddir="$(builddir)"; \
export builddir; \
$(NULL)
if AUTOMAKE_OLDER_THAN_1_13
TESTS_ENVIRONMENT = \
$(AM_TESTS_ENVIRONMENT) \
$(TESTS_LOG_COMPILER) \
$(NULL)
endif
TESTS_LOG_COMPILER = sh $(srcdir)/run-tests.sh
.PHONY: manifests
-include $(top_srcdir)/git.mk