From: NAKAMURA Takumi Date: Fri, 22 Oct 2010 09:40:37 +0000 (+0000) Subject: test/Makefile: Force lit -j1 on Cygwin. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9cf3b58ebbcb8eac5480a4ac1c2a774b9ced8a42;p=oota-llvm.git 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 --- diff --git a/test/Makefile b/test/Makefile index 7ca46beccc3..87f21cfa546 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))