[llvm-commits] [test-suite] r165855 - /test-suite/trunk/MultiSource/Benchmarks/Makefile
Daniel Dunbar
daniel at zuster.org
Fri Oct 12 16:54:35 PDT 2012
Author: ddunbar
Date: Fri Oct 12 18:54:35 2012
New Revision: 165855
URL: http://llvm.org/viewvc/llvm-project?rev=165855&view=rev
Log:
Disable TSVC tests for Darwin/ARM.
- The running times of these tests is insanely high relative to the rest of the
benchmark suite, and they don't support SMALL_PROBLEM_SIZE=1.
- On some of the systems I test, testing with TSVC more than doubles the size
of running the entire test suite, including SPEC.
Modified:
test-suite/trunk/MultiSource/Benchmarks/Makefile
Modified: test-suite/trunk/MultiSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Makefile?rev=165855&r1=165854&r2=165855&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Makefile Fri Oct 12 18:54:35 2012
@@ -11,6 +11,13 @@
nbench ASCI_Purple MiBench Trimaran VersaBench NPB-serial\
BitBench ASC_Sequoia TSVC
+# Disable TSVC on Darwin until the tests support SMALL_PROBLEM_SIZE=1.
+ifeq ($(TARGET_OS),Darwin)
+ifeq ($(ARCH),ARM)
+PARALLEL_DIRS := $(filter-out TSVC,$(PARALLEL_DIRS))
+endif
+endif
+
ifndef DISABLE_CXX
PARALLEL_DIRS += Prolangs-C++ PAQ8p tramp3d-v4 Bullet
endif
More information about the llvm-commits
mailing list