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, 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())