diff options
-rw-r--r-- | testing/SUPPRESSIONS | 10 | ||||
-rw-r--r-- | testing/tools/test_runner.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/testing/SUPPRESSIONS b/testing/SUPPRESSIONS index 309ab21f2c..ed35c71bd5 100644 --- a/testing/SUPPRESSIONS +++ b/testing/SUPPRESSIONS @@ -291,6 +291,16 @@ bug_679643.in * * noxfa bug_679642.in * * noxfa # +# TODO(hnakashima): These might never have been run. Go over them and fix. +# +FRC_8.5_E&X.pdf * * * +FRC_8.5_O&PO_GoToE.pdf * * * +FRC_8.5_OpenAction&O_URI.pdf * * * +FRC_8.5_PC&C_GoToE_T_T.pdf * * * +FRC_8.5_PC_GoToE_T_R&P&A.pdf * * * +FRC_8.5_PO_GoToE_T_R&N.pdf * * * + +# # xfa_specific # Choose.pdf * * * diff --git a/testing/tools/test_runner.py b/testing/tools/test_runner.py index 97a2513385..81225b7de8 100644 --- a/testing/tools/test_runner.py +++ b/testing/tools/test_runner.py @@ -202,7 +202,7 @@ class TestRunner: self.test_cases = [] self.execution_suppressed_cases = [] - input_file_re = re.compile('^[a-zA-Z0-9_.]+[.](in|pdf)$') + input_file_re = re.compile('^.+[.](in|pdf)$') if args: for file_name in args: file_name.replace('.pdf', '.in') |