[llvm-commits] [test-suite] r94629 - /test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile

Jim Grosbach grosbach at apple.com
Tue Jan 26 16:10:29 PST 2010


Author: grosbach
Date: Tue Jan 26 18:10:29 2010
New Revision: 94629

URL: http://llvm.org/viewvc/llvm-project?rev=94629&view=rev
Log:
reduce the problem size further for explicit SMALL_PROBLEM_SIZE. Otherwise Thumb1 can't finish (not even close) before the timeout.

Modified:
    test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile

Modified: test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile?rev=94629&r1=94628&r2=94629&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile Tue Jan 26 18:10:29 2010
@@ -20,8 +20,14 @@
 
 include ../../Makefile.spec2006
 
+# For SMALL_PROBLEM_SIZE, we want even fewer cycles. Some targets (ARM Thumb1,
+# for example), take a very long time.
+ifdef SMALL_PROBLEM_SIZE
+  RUN_OPTIONS = 3
+else
 ifeq ($(RUN_TYPE),test)
   RUN_OPTIONS = 8
 else
   RUN_OPTIONS = 10
 endif
+endif





More information about the llvm-commits mailing list