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

Unified Diff: Makefile.standalone

Issue 1005163002: Subzero: Add a separate check-xtest target to Makefile.standlone. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 9 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 | 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 22273501943f5e249c8f15021ae24381254264dc..c0d2cbb7bcb52d6aa193acc0779882df9851fde1 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -216,14 +216,11 @@ check-lit: $(OBJDIR)/pnacl-sz make_symlink
BINUTILS_BIN_PATH=$(BINUTILS_BIN_PATH) \
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit
-check-unit: $(OBJDIR)/run_unittests
- $(OBJDIR)/run_unittests
-
ifdef MINIMAL
-check: check-lit check-unit runtime
- @echo "Crosstests ignored, minimal build"
+check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
+ @echo "Crosstests disabled, minimal build"
else
-check: check-lit check-unit runtime
+check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
# Do all native/sse2 tests, but only test_vector_ops for native/sse4.1.
# For (slow) sandboxed tests, limit to Om1/sse4.1.
./pydir/crosstest_generator.py -v --lit \
@@ -233,6 +230,11 @@ check: check-lit check-unit runtime
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
endif
+check-unit: $(OBJDIR)/run_unittests
+ $(OBJDIR)/run_unittests
+
+check: check-lit check-unit check-xtest
+
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