[llvm-commits] [test-suite] r78353 - /test-suite/trunk/External/SPEC/CFP2006/Makefile
Bob Wilson
bob.wilson at apple.com
Thu Aug 6 15:58:11 PDT 2009
Author: bwilson
Date: Thu Aug 6 17:58:10 2009
New Revision: 78353
URL: http://llvm.org/viewvc/llvm-project?rev=78353&view=rev
Log:
Skip 470.lbm when SMALL_PROBLEM_SIZE is defined.
This test will not run on a system with limited memory.
Modified:
test-suite/trunk/External/SPEC/CFP2006/Makefile
Modified: test-suite/trunk/External/SPEC/CFP2006/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/Makefile?rev=78353&r1=78352&r2=78353&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/Makefile Thu Aug 6 17:58:10 2009
@@ -11,9 +11,14 @@
433.milc \
444.namd \
447.dealII \
- 470.lbm \
450.soplex
+ifndef SMALL_PROBLEM_SIZE
+# Skip tests that take too much memory to run.
+PARALLEL_DIRS += \
+ 470.lbm
+endif
+
ifdef USE_F95
PARALLEL_DIRS += \
410.bwaves \
More information about the llvm-commits
mailing list