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

Unified Diff: Makefile.standalone

Issue 1278173009: Inline memove for small constant sizes and refactor memcpy and memset. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Simplify xtests and add flags for memory intrinsic optimization. Created 5 years, 4 months 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 | crosstest/crosstest.cfg » ('j') | crosstest/crosstest.cfg » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 0248a1137451c3bb3f20b992c482a55333f7dfac..e8efef31565a704d4f36403884c8fd6b5b0d9c7c 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -361,8 +361,13 @@ check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
endif
+ifdef DEBUG
check-unit: $(OBJDIR)/run_unittests
$(OBJDIR)/run_unittests
+else
+check-unit:
+ @echo "Run with DEBUG=1 lest your machine perish."
Jim Stichnoth 2015/08/18 17:11:28 Cool. Maybe add "check-unit" to the echo string,
ascull 2015/08/18 18:38:01 Done.
John 2015/08/18 18:51:39 I have something similar in a patch -- which I rep
ascull 2015/08/18 19:03:10 We can merge to yours when the time comes. Mine is
+endif
check: check-lit check-unit check-xtest
« no previous file with comments | « no previous file | crosstest/crosstest.cfg » ('j') | crosstest/crosstest.cfg » ('J')

Powered by Google App Engine
This is Rietveld 408576698