diff --git a/test/fuzzing/run-shape-fuzzer-tests.py b/test/fuzzing/run-shape-fuzzer-tests.py index 53c4f501a..e3d180f2b 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 d4e3487f0..7392a92ec 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)