summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-08-13 11:22:54 -0700
committerTom Sepez <tsepez@chromium.org>2015-08-13 11:22:54 -0700
commitd8b5e73d8609b74e6a995ee1768d20d47bd4b089 (patch)
tree12e6c733ed18c273a6f4442e8a711ee478646233 /testing
parente42e23f34f0a685d6765ba547a26cc2e601efefd (diff)
downloadpdfium-d8b5e73d8609b74e6a995ee1768d20d47bd4b089.tar.xz
Allow external font-path configuration from pdfium_test.
R=thestig@chromium.org Review URL: https://codereview.chromium.org/1268323004 .
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/tools/run_corpus_tests.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py
index 28616fb531..d33a14971c 100755
--- a/testing/tools/run_corpus_tests.py
+++ b/testing/tools/run_corpus_tests.py
@@ -21,13 +21,14 @@ import suppressor
# c_dir - "path/to/a/b/c"
def test_one_file(input_filename, source_dir, working_dir,
- pdfium_test_path, image_differ):
+ pdfium_test_path, font_dir, image_differ):
input_path = os.path.join(source_dir, input_filename)
pdf_path = os.path.join(working_dir, input_filename)
try:
shutil.copyfile(input_path, pdf_path)
sys.stdout.flush()
- subprocess.check_call([pdfium_test_path, '--png', pdf_path])
+ subprocess.check_call([pdfium_test_path, '--font-dir=' + font_dir,
+ '--png', pdf_path])
except subprocess.CalledProcessError as e:
print "FAILURE: " + input_filename + "; " + str(e)
return False
@@ -57,6 +58,7 @@ def main():
failures = []
surprises = []
walk_from_dir = finder.TestingDir('corpus');
+ font_dir = os.path.join(walk_from_dir, 'fonts');
input_file_re = re.compile('^[a-zA-Z0-9_.]+[.]pdf$')
for source_dir, _, filename_list in os.walk(walk_from_dir):
for input_filename in filename_list:
@@ -64,7 +66,7 @@ def main():
input_path = os.path.join(source_dir, input_filename)
if os.path.isfile(input_path):
result = test_one_file(input_filename, source_dir, working_dir,
- pdfium_test_path, image_differ)
+ pdfium_test_path, font_dir, image_differ)
if test_suppressor.IsSuppressed(input_filename):
if result:
surprises.append(input_path)