Displaying 5 results from an estimated 5 matches for "cleaned_testsuite".
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...ut Directory if it does not exist already
Index: Makefile
===================================================================
--- Makefile (revision 65423)
+++ Makefile (working copy)
@@ -26,6 +26,9 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+SITE_EXP := site.exp
+FORCETGT := FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -49,22 +52,23 @@
endif
ifneq ($(RUNTEST),)
-check-local:: site.exp
+check-local:: $(SITE_EXP)
( ulimit -t 600 ; ulimit -d 512000 ; \
PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...dir]
#Make Output Directory if it does not exist already
Index: Makefile
===================================================================
--- Makefile (revision 65432)
+++ Makefile (working copy)
@@ -26,6 +26,8 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+FORCETGT := FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -63,6 +65,7 @@
CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
SUBDIR := $(shell dirname $(CLEANED_TESTONE))
TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE)
+FORCETGT :=
check-one...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
On Wed, Feb 25, 2009 at 10:26:02AM -0800, Chris Lattner wrote:
>
> On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
>
> > On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
> >> I haven't tested with objdir != srcdir.
> >
> > Ok, that was broken. Attached is a smaller diff that should work in
> > all
> > cases.
>
> This
2009 Feb 26
1
[LLVMdev] [PATCH] Parallelized make check
...akefile
===================================================================
--- test/Makefile (revision 65468)
+++ test/Makefile (working copy)
@@ -26,6 +26,9 @@
RUNTESTFLAGS := $(VERBOSE)
endif
+# Leave the possibility to override on the command line.
+FORCESITEEXP ?= FORCE
+
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
@@ -80,6 +83,7 @@
clean::
$(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
+ $(RM) -f Makefile.jcheck $(JTESTLIST) $(JLOG)
# dsymutil is used on the Darwin to manipulate DWARF...
2009 Feb 25
2
[LLVMdev] [PATCH] Parallelized make check
On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote:
> On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote:
>> I haven't tested with objdir != srcdir.
>
> Ok, that was broken. Attached is a smaller diff that should work in
> all
> cases.
This sounds really cool Julien! Two questions: 1) does it preserve
the checking that the existing tcl stuff does, which