From 0abce58139bb58b8b97171db6387d2ac7eebdee0 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 4 Oct 2018 16:23:42 +0200 Subject: [PATCH] [test] Choose 'ot' shaper specifically Now that we added morx support, our OS X bot is running them through CoreText and failing (with a DoS / infinite loop no less!). Always run tests through our own shaper. --- test/shaping/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/shaping/run-tests.py b/test/shaping/run-tests.py index 5592aea58..18b2118dc 100755 --- a/test/shaping/run-tests.py +++ b/test/shaping/run-tests.py @@ -46,7 +46,7 @@ for filename in args: cwd = os.path.dirname(filename) fontfile = os.path.normpath (os.path.join (cwd, fontfile)) - extra_options = [] + extra_options = ["--shaper=ot"] glyphs_expected = glyphs_expected.strip() if glyphs_expected != '*': extra_options.append("--verify")