[test-suite] r208847 - [Mips] Extentd RUNTIMELIMIT for a couple tests when they are running for

Simon Atanasyan simon at atanasyan.com
Wed May 14 21:54:11 PDT 2014


Author: atanasyan
Date: Wed May 14 23:54:11 2014
New Revision: 208847

URL: http://llvm.org/viewvc/llvm-project?rev=208847&view=rev
Log:
[Mips] Extentd RUNTIMELIMIT for a couple tests when they are running for
MIPS target.

Modified:
    test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile
    test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/Makefile

Modified: test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile?rev=208847&r1=208846&r2=208847&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/mafft/Makefile Wed May 14 23:54:11 2014
@@ -19,6 +19,11 @@ XCORE_TARGET_NEEDS_MEMORY := 256
 RUNTIMELIMIT:=10800
 endif
 
+ifeq ($(ARCH),Mips)
+# Mips takes ~25 minutes.
+RUNTIMELIMIT:=1500
+endif
+
 include $(LEVEL)/MultiSource/Makefile.multisrc
 
 clean::

Modified: test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/Makefile?rev=208847&r1=208846&r2=208847&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/Makefile (original)
+++ test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/Makefile Wed May 14 23:54:11 2014
@@ -9,5 +9,10 @@ RUNTIMELIMIT:=7200
 endif
 endif
 
+ifeq ($(ARCH),Mips)
+# Mips takes ~20 minutes.
+RUNTIMELIMIT:=1200
+endif
+
 include $(LEVEL)/SingleSource/Makefile.singlesrc
 





More information about the llvm-commits mailing list