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

Try to fix the openbsd bot.

llvm-svn: 193413
This commit is contained in:
Rafael Espindola 2013-10-25 15:07:59 +00:00
parent cd9791ce72
commit 57067f1916

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