35 lines
1017 B
Python
Executable File
35 lines
1017 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import sys, os, subprocess
|
|
|
|
srcdir = os.environ.get ("srcdir", ".")
|
|
EXEEXT = os.environ.get ("EXEEXT", "")
|
|
top_builddir = os.environ.get ("top_builddir", ".")
|
|
hb_shape_fuzzer = os.path.join (top_builddir, "hb-shape-fuzzer" + EXEEXT)
|
|
|
|
if not os.path.exists (hb_shape_fuzzer):
|
|
if len (sys.argv) == 1 or not os.path.exists (sys.argv[1]):
|
|
print ("""Failed to find hb-shape-fuzzer binary automatically,
|
|
please provide it as the first argument to the tool""")
|
|
sys.exit (1)
|
|
|
|
hb_shape_fuzzer = sys.argv[1]
|
|
|
|
print ('hb_shape_fuzzer:', hb_shape_fuzzer)
|
|
fails = 0
|
|
|
|
parent_path = os.path.join (srcdir, "..", "shaping", "data", "in-house", "tests")
|
|
for line in open (os.path.join (parent_path, "fuzzed.tests")):
|
|
font = line.split (":")[0]
|
|
font_path = os.path.join (parent_path, font)
|
|
|
|
p = subprocess.Popen ([hb_shape_fuzzer, font_path])
|
|
|
|
if p.wait () != 0:
|
|
fails = fails + 1
|
|
|
|
if fails:
|
|
print ("%i shape fuzzer related tests failed." % fails)
|
|
sys.exit (1)
|