From 7b3ae5ffd202346cb3742fe0f8cfafe8c36a4bd5 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 4 Oct 2018 16:36:42 +0200 Subject: [PATCH] More bot fixes --- test/shaping/run-tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/shaping/run-tests.py b/test/shaping/run-tests.py index 18b2118dc..0b27872fc 100755 --- a/test/shaping/run-tests.py +++ b/test/shaping/run-tests.py @@ -65,7 +65,7 @@ for filename in args: unicodes] + (options.split (' ') if options else [])) if returncode: - print ("hb-shape --font-funcs=ft failed.") # file=sys.stderr + print ("ERROR: hb-shape --font-funcs=ft failed.") # file=sys.stderr fails = fails + 1 #continue @@ -78,7 +78,7 @@ for filename in args: fails = fails + 1 #continue - if glyphs1 != glyphs2: + if glyphs1 != glyphs2 and glyphs_expected != '*': print ("FT funcs: " + glyphs1) # file=sys.stderr print ("OT funcs: " + glyphs2) # file=sys.stderr fails = fails + 1