From: Rafael Espindola Date: Fri, 25 Oct 2013 15:07:59 +0000 (+0000) Subject: Try to fix the openbsd bot. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b94be5f21eb43f057a8ea2f8afda3c5fecf9e2d8;p=llvm Try to fix the openbsd bot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193413 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/lit/main.py b/utils/lit/lit/main.py index 6f672a01eb3..44042a34a51 100755 --- a/utils/lit/lit/main.py +++ b/utils/lit/lit/main.py @@ -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