mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-25 21:46:50 +00:00
[lit] Use multiprocessing based parallelism by default, on Unix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193279 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
250f4e8ec2
commit
a0d3bcfd8c
@ -115,6 +115,10 @@ def main(builtinParameters = {}):
|
|||||||
# FIXME: This is a hack.
|
# FIXME: This is a hack.
|
||||||
sys.setcheckinterval(1000)
|
sys.setcheckinterval(1000)
|
||||||
|
|
||||||
|
# Use processes by default on Unix platforms.
|
||||||
|
isWindows = platform.system() == 'Windows'
|
||||||
|
useProcessesIsDefault = not isWindows
|
||||||
|
|
||||||
global options
|
global options
|
||||||
from optparse import OptionParser, OptionGroup
|
from optparse import OptionParser, OptionGroup
|
||||||
parser = OptionParser("usage: %prog [options] {file-or-path}")
|
parser = OptionParser("usage: %prog [options] {file-or-path}")
|
||||||
@ -199,10 +203,10 @@ def main(builtinParameters = {}):
|
|||||||
action="store_true", default=False)
|
action="store_true", default=False)
|
||||||
group.add_option("", "--use-processes", dest="useProcesses",
|
group.add_option("", "--use-processes", dest="useProcesses",
|
||||||
help="Run tests in parallel with processes (not threads)",
|
help="Run tests in parallel with processes (not threads)",
|
||||||
action="store_true", default=False)
|
action="store_true", default=useProcessesIsDefault)
|
||||||
group.add_option("", "--use-threads", dest="useProcesses",
|
group.add_option("", "--use-threads", dest="useProcesses",
|
||||||
help="Run tests in parallel with threads (not processes)",
|
help="Run tests in parallel with threads (not processes)",
|
||||||
action="store_false", default=False)
|
action="store_false", default=not useProcessesIsDefault)
|
||||||
parser.add_option_group(group)
|
parser.add_option_group(group)
|
||||||
|
|
||||||
(opts, args) = parser.parse_args()
|
(opts, args) = parser.parse_args()
|
||||||
@ -241,7 +245,7 @@ def main(builtinParameters = {}):
|
|||||||
valgrindArgs = opts.valgrindArgs,
|
valgrindArgs = opts.valgrindArgs,
|
||||||
noExecute = opts.noExecute,
|
noExecute = opts.noExecute,
|
||||||
debug = opts.debug,
|
debug = opts.debug,
|
||||||
isWindows = (platform.system()=='Windows'),
|
isWindows = isWindows,
|
||||||
params = userParams,
|
params = userParams,
|
||||||
config_prefix = opts.configPrefix)
|
config_prefix = opts.configPrefix)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user