diff options
author | dsinclair <dsinclair@chromium.org> | 2016-05-17 10:02:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-17 10:02:00 -0700 |
commit | dbc14facb99d7b6e9af5dd76f036b7bf59705b2f (patch) | |
tree | be08452e316d37c3f40b6a920e7128dcc181ea39 | |
parent | dd427007f2c44b10752e7ee3101c9785f1e46c15 (diff) | |
download | pdfium-dbc14facb99d7b6e9af5dd76f036b7bf59705b2f.tar.xz |
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
-rw-r--r-- | tools/drmemory/scripts/pdfium_tests.py | 3 |
1 files changed, 0 insertions, 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) |