summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-10-22 09:40:37 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-10-22 09:40:37 +0000
commit9cf3b58ebbcb8eac5480a4ac1c2a774b9ced8a42 (patch)
tree0937fa9f7d0eab4aa512da8a795c5dada5ee1b3d /test/Makefile
parent523579e0758bfa5781b63eabdc079a3ff074c36a (diff)
downloadllvm-9cf3b58ebbcb8eac5480a4ac1c2a774b9ced8a42.tar.gz
llvm-9cf3b58ebbcb8eac5480a4ac1c2a774b9ced8a42.tar.bz2
llvm-9cf3b58ebbcb8eac5480a4ac1c2a774b9ced8a42.tar.xz
test/Makefile: Force lit -j1 on Cygwin.
lit -jN causes crash on Cygwin's python. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 7ca46beccc..87f21cfa54 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -33,6 +33,11 @@ else
LIT_ARGS := -s -v
endif
+# -jN causes crash on Cygwin's python.
+ifneq (,$(filter $(HOST_OS),Cygwin))
+ LIT_ARGS += -j1
+endif
+
ifdef TESTSUITE
LIT_TESTSUITE := $(TESTSUITE)
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))