[test-suite] r308165 - Set higher timeouts for Misc-C++ on AArch64
Diana Picus via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 17 02:03:26 PDT 2017
Author: rovka
Date: Mon Jul 17 02:03:25 2017
New Revision: 308165
URL: http://llvm.org/viewvc/llvm-project?rev=308165&view=rev
Log:
Set higher timeouts for Misc-C++ on AArch64
When running the test-suite on AArch64 at -O0, we sometimes get timeouts
in stepanov-v1p2. It usually takes more than 450s to run it, and the
threshold is only 500s. Increase it to 750s.
We're modifying the Makefiles because this is what the AArch64 buildbots
currently use.
Similar to r305671, which increased the timeouts for PAQ8p and SciMark-2.
Modified:
test-suite/trunk/SingleSource/Benchmarks/Misc-C++/Makefile
Modified: test-suite/trunk/SingleSource/Benchmarks/Misc-C++/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Misc-C%2B%2B/Makefile?rev=308165&r1=308164&r2=308165&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Misc-C++/Makefile (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Misc-C++/Makefile Mon Jul 17 02:03:25 2017
@@ -8,6 +8,12 @@ ifeq ($(ARCH),XCore)
ifndef SMALL_PROBLEM_SIZE
XCORE_TARGET_NEEDS_MEMORY := 128
endif
+else
+ifeq ($(ARCH),AArch64)
+# On AArch64 at -O0 we get very close to 500s and sometimes we go over the
+# threshold. Set it to a more comfortable value.
+RUNTIMELIMIT := 750
+endif
endif
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list