1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Actually switch the default to use multiprocessing

llvm-svn: 193282
This commit is contained in:
Rafael Espindola 2013-10-23 22:32:53 +00:00
parent 2764343ead
commit 21ab8e791a

View File

@ -200,7 +200,7 @@ def main(builtinParameters = {}):
action="store_true", default=useProcessesIsDefault)
group.add_option("", "--use-threads", dest="useProcesses",
help="Run tests in parallel with threads (not processes)",
action="store_false", default=not useProcessesIsDefault)
action="store_false", default=useProcessesIsDefault)
parser.add_option_group(group)
(opts, args) = parser.parse_args()