summaryrefslogtreecommitdiff
path: root/testing/tools/run_corpus_tests.py
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-09 13:05:42 -0700
committerLei Zhang <thestig@chromium.org>2015-09-09 13:05:42 -0700
commit77aaf96a165272ab52916c04b5ec69e4f2fd13de (patch)
tree13780e258aaacc1dd55784d16cc16d5557866d90 /testing/tools/run_corpus_tests.py
parent396e872d872b760813036b7e7dd8bb68a8b61598 (diff)
downloadpdfium-77aaf96a165272ab52916c04b5ec69e4f2fd13de.tar.xz
Merge to XFA: Remove existing generated images before running a test.
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1314443007 . (cherry picked from commit 8ead9036aab18d45498e310866210dfff20da188) Review URL: https://codereview.chromium.org/1331643004 .
Diffstat (limited to 'testing/tools/run_corpus_tests.py')
-rwxr-xr-xtesting/tools/run_corpus_tests.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py
index 28616fb531..0dadd52d19 100755
--- a/testing/tools/run_corpus_tests.py
+++ b/testing/tools/run_corpus_tests.py
@@ -24,6 +24,14 @@ def test_one_file(input_filename, source_dir, working_dir,
pdfium_test_path, image_differ):
input_path = os.path.join(source_dir, input_filename)
pdf_path = os.path.join(working_dir, input_filename)
+
+ # Remove any existing generated images from previous runs.
+ actual_images = image_differ.GetActualFiles(
+ input_filename, source_dir, working_dir)
+ for image in actual_images:
+ if os.path.exists(image):
+ os.remove(image)
+
try:
shutil.copyfile(input_path, pdf_path)
sys.stdout.flush()
@@ -35,6 +43,7 @@ def test_one_file(input_filename, source_dir, working_dir,
return False
return True
+
def main():
parser = optparse.OptionParser()
parser.add_option('--build-dir', default=os.path.join('out', 'Debug'),