diff --git a/test/fuzzing/run-fuzzer-tests.py b/test/fuzzing/run-fuzzer-tests.py index 79e47c9f4ba42135dc04abd3b6a9e23cabae76c3..9455a4b6b319de6076385e98dd6a03f0f1ee3f30 100755 --- a/test/fuzzing/run-fuzzer-tests.py +++ b/test/fuzzing/run-fuzzer-tests.py @@ -22,15 +22,11 @@ fails = 0 for line in open (os.path.join (srcdir, "..", "shaping", "data", "in-house", "tests", "fuzzed.tests")): font = line.split (":")[0] - p = subprocess.Popen ( - [hb_fuzzer, os.path.join (srcdir, "..", "shaping", font)], - stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p = subprocess.Popen ([hb_fuzzer, os.path.join (srcdir, "..", "shaping", font)]) if p.wait () != 0: fails = fails + 1 - print ((p.stdout.read () + p.stderr.read ()).decode ("utf-8").strip ()) - if fails: print ("%i fuzzer related tests failed." % fails) sys.exit (1)