Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: Makefile.standalone

Issue 1452553002: Subzero: Add a "make check-presubmit" target. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove debugging Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index f06ec157bda15388489b4a20587d0a383d4974c8..a157f59df89e733e7725229c5ec254383cbb64b8 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -417,16 +417,39 @@ ifeq ($(TARGET),arm32)
SETUP=SetupGccArmOpt
SPEC := -O2 --filetype=asm
endif
-
+SPECFLAGS :=
+SPECBUILDONLY := false
John 2015/11/16 14:03:23 \o/
Jim Stichnoth 2015/11/16 18:17:59 Is there a complaint or suggestion here?
%.spec2k: % $(OBJDIR)/pnacl-sz make_symlink runtime
- ./pydir/szbuild_spec2k.py -v --force --target=$(TARGETFLAG) $(SPEC) $<
- ( cd ../../../tests/spec2k; \
+ ./pydir/szbuild_spec2k.py -v --force \
+ $(SPECFLAGS) --target=$(TARGETFLAG) $(SPEC) $<
+ $(SPECBUILDONLY) || ( cd ../../../tests/spec2k; \
./run_all.sh RunTimedBenchmarks $(SETUP) train $< )
check-spec: $(ALLSPEC:=.spec2k)
check: check-lit check-unit check-xtest
+NPROCS := $(shell grep processor /proc/cpuinfo | wc -l)
+
+check-presubmit:
+ make -f Makefile.standalone format
+ git diff --quiet
+ make -f Makefile.standalone -j$(NPROCS) \
John 2015/11/16 14:03:23 Too aggressive? Maybe -j$(NPROCS - 5), or somethin
Jim Stichnoth 2015/11/16 18:17:59 FWIW, I always run -j32 on my z620 and -j4 on my l
+ MINIMAL=1 check
+ make -f Makefile.standalone -j$(NPROCS) \
+ DEBUG=1 CHECK_X86_ASM=1 check-unit
+ make -f Makefile.standalone -j$(NPROCS) \
+ check check-spec
+ make -f Makefile.standalone -j$(NPROCS) \
+ SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
+ make -f Makefile.standalone -j$(NPROCS) \
+ SPECFLAGS='--sz=--phi-edge-split=0' check-spec
+ make -f Makefile.standalone -j$(NPROCS) \
+ TARGET=arm32 SPECBUILDONLY=true check-spec
+ make -f Makefile.standalone -j$(NPROCS) \
+ TARGET=arm32 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
+ echo Success
John 2015/11/16 14:03:23 Maybe run some light-weight benchmarks as a smoke
Jim Stichnoth 2015/11/16 18:17:59 That's a good idea. However, for now we have a pr
+
FORMAT_BLACKLIST =
# Add one of the following lines for each source file to ignore.
FORMAT_BLACKLIST += ! -name IceParseInstsTest.cpp
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698