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

Unified Diff: Makefile.standalone

Issue 987503004: Subzero: Run cross tests as a much more configurable python script. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add import to be safe 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 | crosstest/crosstest.cfg » ('j') | 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 58d535793bbb724da7456e351027c1bda32ed2c7..22273501943f5e249c8f15021ae24381254264dc 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -224,7 +224,13 @@ check: check-lit check-unit runtime
@echo "Crosstests ignored, minimal build"
else
check: check-lit check-unit runtime
- (cd crosstest; ./runtests.sh)
+ # 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 \
+ -i native,sse2 -i native,sse4.1,test_vector_ops \
+ -i sandbox,sse4.1,Om1
+ LLVM_BIN_PATH=$(LLVM_BIN_PATH) \
+ $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
endif
FORMAT_BLACKLIST =
« no previous file with comments | « no previous file | crosstest/crosstest.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698