Subzero: Add a separate check-xtest target to Makefile.standlone.
This makes it more convenient to directly test the crosstests without having to go through the lit tests first.
BUG= none
R=kschimpf@google.com
Review URL: https://codereview.chromium.org/1005163002
diff --git a/Makefile.standalone b/Makefile.standalone
index 2227350..c0d2cbb 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -216,14 +216,11 @@
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 @@
$(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