From dbc14facb99d7b6e9af5dd76f036b7bf59705b2f Mon Sep 17 00:00:00 2001 From: dsinclair Date: Tue, 17 May 2016 10:02:00 -0700 Subject: Allow multiprocess Dr Memory tests The Dr Memory tests currently run -j1 which makes corpus tests take a long time. Previously, multip-process corpus would override stdout which caused conflict when using Dr. Memory. That has been resolved so enable more parallelism. Review-Url: https://codereview.chromium.org/1981153003 --- tools/drmemory/scripts/pdfium_tests.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/drmemory/scripts/pdfium_tests.py b/tools/drmemory/scripts/pdfium_tests.py index 5a89d9491b..f1d5308f98 100644 --- a/tools/drmemory/scripts/pdfium_tests.py +++ b/tools/drmemory/scripts/pdfium_tests.py @@ -296,9 +296,6 @@ class ChromeTests: script_cmd = ["python", script] if self._options.build_dir: script_cmd.extend(["--build-dir", self._options.build_dir]) - # TODO(zhaoqin): it only runs in single process mode now, - # need figure out why it does not work with test_one_file_parallel. - script_cmd.extend(["-j", "1"]) # Now run script_cmd with the wrapper in cmd cmd.append("--") cmd.extend(script_cmd) -- cgit v1.2.3