| Index: Makefile
|
| diff --git a/Makefile b/Makefile
|
| index 295ef9ac8871a81cc00f696569853876ee14a005..2ff2cdbf0759317b675f3fa3767765444ae44133 100644
|
| --- a/Makefile
|
| +++ b/Makefile
|
| @@ -350,6 +350,16 @@ native.check: native
|
| @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR)/native \
|
| --arch-and-mode=. $(TESTFLAGS)
|
|
|
| +FASTTESTFLAGS = --flaky-tests=skip --slow-tests=skip --pass-fail-tests=skip \
|
| + --variants=default,stress
|
| +FASTTESTMODES = ia32.release,x64.release,ia32.debug,x64.debug,arm.debug
|
| +
|
| +quickcheck:
|
| + @$(MAKE) all optdebug=on
|
| + @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
|
| + --arch-and-mode=$(FASTTESTMODES) $(FASTTESTFLAGS) $(TESTFLAGS)
|
| +qc: quickcheck
|
| +
|
| # Clean targets. You can clean each architecture individually, or everything.
|
| $(addsuffix .clean, $(ARCHES) $(ANDROID_ARCHES) $(NACL_ARCHES)):
|
| rm -f $(OUTDIR)/Makefile.$(basename $@)
|
|
|