OSDN Git Service

Try to fix the openbsd bot.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 25 Oct 2013 15:07:59 +0000 (15:07 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 25 Oct 2013 15:07:59 +0000 (15:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193413 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/main.py

index 6f672a0..44042a3 100755 (executable)
@@ -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