[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Tue Oct 30 05:54:00 UTC 2018


 test/fuzzing/run-shape-fuzzer-tests.py  |    3 ++-
 test/fuzzing/run-subset-fuzzer-tests.py |    1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ad3cededdd5ee6a364161e9d27e4cf4d95a80177
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Mon Oct 29 22:53:16 2018 -0700

    [fuzzing] Make test runners less verbose

diff --git a/test/fuzzing/run-shape-fuzzer-tests.py b/test/fuzzing/run-shape-fuzzer-tests.py
index 53c4f501..e3d180f2 100755
--- a/test/fuzzing/run-shape-fuzzer-tests.py
+++ b/test/fuzzing/run-shape-fuzzer-tests.py
@@ -76,7 +76,8 @@ for file in os.listdir (parent_path):
 	path = os.path.join(parent_path, file)
 
 	text, returncode = cmd ([hb_shape_fuzzer, path])
-	print (text)
+	if text.strip ():
+		print (text)
 
 	failed = False
 	if returncode != 0 or 'error' in text:
diff --git a/test/fuzzing/run-subset-fuzzer-tests.py b/test/fuzzing/run-subset-fuzzer-tests.py
index d4e3487f..7392a92e 100755
--- a/test/fuzzing/run-subset-fuzzer-tests.py
+++ b/test/fuzzing/run-subset-fuzzer-tests.py
@@ -22,7 +22,6 @@ fails = 0
 
 def run_dir (parent_path):
 	global fails
-	print ("running subset fuzzer against fonts in %s" % parent_path)
 	for file in os.listdir (parent_path):
 		path = os.path.join(parent_path, file)
 


More information about the HarfBuzz mailing list