[llvm-commits] [test-suite] r160992 - /test-suite/trunk/SingleSource/Benchmarks/Makefile
Daniel Dunbar
daniel at zuster.org
Mon Jul 30 13:33:28 PDT 2012
Author: ddunbar
Date: Mon Jul 30 15:33:28 2012
New Revision: 160992
URL: http://llvm.org/viewvc/llvm-project?rev=160992&view=rev
Log:
Disable polybench on ARM for the time being, the tests/datasets are such that
the tests take a *very* long time (unlike other tests in the suite, they do not
generally support the small dataset config variable).
Modified:
test-suite/trunk/SingleSource/Benchmarks/Makefile
Modified: test-suite/trunk/SingleSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Makefile?rev=160992&r1=160991&r2=160992&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Makefile Mon Jul 30 15:33:28 2012
@@ -1,6 +1,11 @@
LEVEL = ../..
-PARALLEL_DIRS=Dhrystone CoyoteBench Shootout Shootout-C++ Stanford McGill \
+PARALLEL_DIRS := Dhrystone CoyoteBench Shootout Shootout-C++ Stanford McGill \
Misc Misc-C++ Misc-C++-EH BenchmarkGame Adobe-C++ Polybench
LDFLAGS += -lm
+# Disable Polybench tests on ARM for the time being, they are very long running.
+ifeq ($(ARCH),ARM)
+PARALLEL_DIRS := $(filter-out Polybench, $(PARALLEL_DIRS))
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list