summaryrefslogtreecommitdiff
path: root/testing/tools/test_runner.py
diff options
context:
space:
mode:
authorstephana <stephana@google.com>2017-01-13 13:16:40 -0800
committerCommit bot <commit-bot@chromium.org>2017-01-13 13:16:40 -0800
commit38c2705c697cd9a67b02ead1d601610d7af96524 (patch)
tree434dc7672e680de8119ba24c44545be8dadd2d47 /testing/tools/test_runner.py
parent98d00b230aa14924dfde2eba3aaf69f86d18a45b (diff)
downloadpdfium-chromium/2983.tar.xz
Ensures that the gold output directory existschromium/2983chromium/2982chromium/2981
This will land after this CL https://chromium-review.googlesource.com/c/424575/ as a way of making sure it works as intended. TBR=borenet BUG=skia:5973 Review-Url: https://codereview.chromium.org/2629943002
Diffstat (limited to 'testing/tools/test_runner.py')
-rw-r--r--testing/tools/test_runner.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/testing/tools/test_runner.py b/testing/tools/test_runner.py
index fad7a9c66a..92db9118dd 100644
--- a/testing/tools/test_runner.py
+++ b/testing/tools/test_runner.py
@@ -127,10 +127,11 @@ class TestRunner:
def HandleResult(self, input_filename, input_path, result):
if self.gold_results:
success, image_paths = result
- for img_path, md5_hash in image_paths:
- # the output filename (without extension becomes the test name)
- test_name = os.path.splitext(os.path.split(img_path)[1])[0]
- self.gold_results.AddTestResult(test_name, md5_hash, img_path)
+ if image_paths:
+ for img_path, md5_hash in image_paths:
+ # the output filename (without extension becomes the test name)
+ test_name = os.path.splitext(os.path.split(img_path)[1])[0]
+ self.gold_results.AddTestResult(test_name, md5_hash, img_path)
if self.test_suppressor.IsResultSuppressed(input_filename):
if result: