Try to fix the openbsd bot.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193413 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2013-10-25 15:07:59 +00:00
parent 6e1c511aba
commit b94be5f21e

View File

@ -111,7 +111,7 @@ def write_test_results(run, lit_config, testing_time, output_path):
def main(builtinParameters = {}):
# Use processes by default on Unix platforms.
isWindows = platform.system() == 'Windows'
useProcessesIsDefault = not isWindows
useProcessesIsDefault = (not isWindows) and platform.system() != 'OpenBSD'
global options
from optparse import OptionParser, OptionGroup