Commit c9258225 by Jim Stichnoth

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
parent 17b1a133
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment