Index: Makefile |
diff --git a/Makefile b/Makefile |
index b524cbee6848a0c0af5c516ddbaa718d10bb9678..8d65da2dd61bb79c9d58a22368179d808b262770 100644 |
--- a/Makefile |
+++ b/Makefile |
@@ -247,13 +247,15 @@ NACL_BUILDS = $(foreach mode,$(MODES), \ |
$(addsuffix .$(mode),$(NACL_ARCHES))) |
# Generates corresponding test targets, e.g. "ia32.release.check". |
CHECKS = $(addsuffix .check,$(BUILDS)) |
+QUICKCHECKS = $(addsuffix .quickcheck,$(BUILDS)) |
ANDROID_CHECKS = $(addsuffix .check,$(ANDROID_BUILDS)) |
NACL_CHECKS = $(addsuffix .check,$(NACL_BUILDS)) |
# File where previously used GYPFLAGS are stored. |
ENVFILE = $(OUTDIR)/environment |
.PHONY: all check clean dependencies $(ENVFILE).new native \ |
- qc quickcheck \ |
+ qc quickcheck $(QUICKCHECKS) \ |
+ $(addsuffix .quickcheck,$(MODES)) $(addsuffix .quickcheck,$(ARCHES)) \ |
$(ARCHES) $(MODES) $(BUILDS) $(CHECKS) $(addsuffix .clean,$(ARCHES)) \ |
$(addsuffix .check,$(MODES)) $(addsuffix .check,$(ARCHES)) \ |
$(ANDROID_ARCHES) $(ANDROID_BUILDS) $(ANDROID_CHECKS) \ |
@@ -270,7 +272,7 @@ buildbot: |
$(MAKE) -C "$(OUTDIR)" BUILDTYPE=$(BUILDTYPE) \ |
builddir="$(abspath $(OUTDIR))/$(BUILDTYPE)" |
-mips mips.release mips.debug: |
+mips mips.release mips.debug mips.optdebug: |
Sven Panne
2014/03/05 09:32:33
I think we should rename these targets to "mipseb.
Benedikt Meurer
2014/03/05 11:31:09
Separate issue.
Jakob Kummerow
2014/03/05 12:48:52
I think these targets should remain exactly as the
|
@echo "V8 does not support big-endian MIPS builds at the moment," \ |
"please use little-endian builds (mipsel)." |
@@ -332,6 +334,18 @@ $(CHECKS): $$(basename $$@) |
@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
--arch-and-mode=$(basename $@) $(TESTFLAGS) |
+$(addsuffix .quickcheck,$(MODES)): $$(basename $$@) |
+ @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
+ --mode=$(basename $@) $(TESTFLAGS) --quickcheck |
+ |
+$(addsuffix .quickcheck,$(ARCHES)): $$(basename $$@) |
+ @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
+ --arch=$(basename $@) $(TESTFLAGS) --quickcheck |
+ |
+$(QUICKCHECKS): $$(basename $$@) |
+ @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
+ --arch-and-mode=$(basename $@) $(TESTFLAGS) --quickcheck |
+ |
$(addsuffix .sync, $(ANDROID_BUILDS)): $$(basename $$@) |
@tools/android-sync.sh $(basename $@) $(OUTDIR) \ |
$(shell pwd) $(ANDROID_V8) |