From 89ba5941f6398934618c837fe8eddd9ced50467c Mon Sep 17 00:00:00 2001 From: jashook Date: Tue, 21 Feb 2017 10:05:10 -0800 Subject: [PATCH] Up the timeout for gcstress arm64 jobs. Commit migrated from https://github.com/dotnet/coreclr/commit/ff4806c00a6e687fe26dfea47c703982865dea32 --- src/coreclr/netci.groovy | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 348104c..87b0907 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -2025,6 +2025,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR break case 'arm64': assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc') + // Set time out setTestJobTimeOut(newJob, scenario) @@ -2033,8 +2034,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2" } else { - // Up the timeout for arm64 testing. - Utilities.setJobTimeout(newJob, 240) + if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc')) + { + // Up the timeout for arm64 checked testing only. + // Keep the longer timeout for gcstress. + Utilities.setJobTimeout(newJob, 240) + } buildCommands += "set __TestIntermediateDir=int&&build.cmd skiptests ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2" // Test build and run are launched together. -- 2.7.4