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
diff --git a/tools/drmemory/scripts/pdfium_tests.py b/tools/drmemory/scripts/pdfium_tests.py
index 5a89d94..f1d5308 100644
--- a/tools/drmemory/scripts/pdfium_tests.py
+++ b/tools/drmemory/scripts/pdfium_tests.py
@@ -296,9 +296,6 @@
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)