[test-suite] r236871 - [mips] Increase timeouts to fix bullet and tramp3d-v4 on Mips64r6 with MSA.
Daniel Sanders
daniel.sanders at imgtec.com
Fri May 8 09:00:17 PDT 2015
Author: dsanders
Date: Fri May 8 11:00:17 2015
New Revision: 236871
URL: http://llvm.org/viewvc/llvm-project?rev=236871&view=rev
Log:
[mips] Increase timeouts to fix bullet and tramp3d-v4 on Mips64r6 with MSA.
Bullet currently needs ~1200s to execute under qemu.
Tramp3D-v4 currently needs ~520s to compile. It currently fails during execution
and this is being investigated.
Modified:
test-suite/trunk/MultiSource/Benchmarks/Bullet/Makefile
test-suite/trunk/MultiSource/Benchmarks/tramp3d-v4/Makefile
Modified: test-suite/trunk/MultiSource/Benchmarks/Bullet/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Bullet/Makefile?rev=236871&r1=236870&r2=236871&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Bullet/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Bullet/Makefile Fri May 8 11:00:17 2015
@@ -7,8 +7,9 @@ ifeq ($(ARCH),XCore)
# Use default RUNTIMELIMIT for the XCore.
XCORE_TARGET_NEEDS_MEMORY := 64
else
-# This test can take more than the default 500s timeout on Thumb1
-RUNTIMELIMIT:=1000
+# This test can take more than the default 500s timeout on Thumb1.
+# It also takes longer on Mips64r6 with MSA when running under qemu.
+RUNTIMELIMIT:=1500
endif
include $(LEVEL)/Makefile.config
Modified: test-suite/trunk/MultiSource/Benchmarks/tramp3d-v4/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/tramp3d-v4/Makefile?rev=236871&r1=236870&r2=236871&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/tramp3d-v4/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/tramp3d-v4/Makefile Fri May 8 11:00:17 2015
@@ -10,4 +10,10 @@ RUN_OPTIONS = --cartvis 1.0 0.0 --rhomi
endif
FP_ABSTOLERANCE := 0.0000001
+ifeq ($(ARCH),Mips)
+# Mips needs a bit more compilation time when Mips64r6 and MSA are used
+# together.
+RUNTIMELIMIT := 700
+endif
+
include ../../Makefile.multisrc
More information about the llvm-commits
mailing list