summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2018-10-29 22:53:16 -0700
committerBehdad Esfahbod <behdad@behdad.org>2018-10-29 22:53:16 -0700
commitad3cededdd5ee6a364161e9d27e4cf4d95a80177 (patch)
tree877d810ecd18dcb41406c88f47af5b80034123d7
parent4ef671f25f38895e3f87cd69687670c3d8ea4600 (diff)
[fuzzing] Make test runners less verbose
-rwxr-xr-xtest/fuzzing/run-shape-fuzzer-tests.py3
-rwxr-xr-xtest/fuzzing/run-subset-fuzzer-tests.py1
2 files changed, 2 insertions, 2 deletions
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)