diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-02-27 22:01:25 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-27 22:01:25 +0000 |
commit | 53f555a619bfa9eed7b80ff3e1f01fd08e174195 (patch) | |
tree | f64b3fe627500f14ea446d56a3c809dc52d371db /testing/tools | |
parent | 821c7236cea91645d32e1028b6f40d500961441c (diff) | |
download | pdfium-53f555a619bfa9eed7b80ff3e1f01fd08e174195.tar.xz |
Move XFA pixel tests under pixel/chromium/3358chromium/3357
This removes the need for them to have their own runner. Due to other
upstream changes some of the expectation files needed to be
updated. The suppressions have been updated to make sure the tests do
not run for non-XFA builds.
Having these tests run on the bots surfaced an MSAN issue in the XFA
code, which is fixed in this CL.
BUG=pdfium:1020,pdfium:1008
Change-Id: I44e2fa1cba2d07f30f56f5792749acbe1ebf4b62
Reviewed-on: https://pdfium-review.googlesource.com/27710
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'testing/tools')
-rwxr-xr-x | testing/tools/run_xfa_tests.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/tools/run_xfa_tests.py b/testing/tools/run_xfa_tests.py deleted file mode 100755 index 6647cfd939..0000000000 --- a/testing/tools/run_xfa_tests.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -# Copyright 2018 The PDFium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -import sys - -import test_runner - -def main(): - runner = test_runner.TestRunner('xfa') - runner.SetEnforceExpectedImages(True) - return runner.Run() - -if __name__ == '__main__': - sys.exit(main()) |