diff options
Diffstat (limited to 'testing/tools/test_runner.py')
-rw-r--r-- | testing/tools/test_runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/tools/test_runner.py b/testing/tools/test_runner.py index 6bd2d72474..bc4ad053e8 100644 --- a/testing/tools/test_runner.py +++ b/testing/tools/test_runner.py @@ -91,7 +91,8 @@ class TestRunner: def TestPixel(self, input_root, pdf_path): cmd_to_run = common.DrMemoryWrapper(self.drmem_wrapper, input_root) - cmd_to_run.extend([self.pdfium_test_path, '--png', pdf_path]) + cmd_to_run.extend([self.pdfium_test_path, '--send-events', '--png', + pdf_path]) return common.RunCommand(cmd_to_run) |