summaryrefslogtreecommitdiff
path: root/testing/tools/run_xfa_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tools/run_xfa_tests.py')
-rwxr-xr-xtesting/tools/run_xfa_tests.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/tools/run_xfa_tests.py b/testing/tools/run_xfa_tests.py
new file mode 100755
index 0000000000..6647cfd939
--- /dev/null
+++ b/testing/tools/run_xfa_tests.py
@@ -0,0 +1,16 @@
+#!/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())