From 9e1e03c70cd28b8b77c0d018a74b09dcb85d325e Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee Date: Thu, 30 Jun 2016 15:00:07 -0700 Subject: [PATCH] ARM64: Enable GCStress0x3 Private Job Commit migrated from https://github.com/dotnet/coreclr/commit/1e142344d7b67c7cce3d1d1346223b630f84496f --- src/coreclr/netci.groovy | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 37cb09b..4d99f06 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1068,7 +1068,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, } break case 'arm64': - assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0xc') + assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc') // Set up a private trigger def contextString = "${os} ${architecture} Cross ${configuration}" @@ -1089,6 +1089,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}", null, arm64Users) break case 'pri1r2r': + case 'gcstress0x3': case 'gcstress0xc': Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}", null, arm64Users) @@ -1325,7 +1326,7 @@ combinedScenarios.each { scenario -> switch (architecture) { case 'arm64': - if (scenario != 'gcstress0xc') { + if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc')) { return } break @@ -1649,7 +1650,7 @@ combinedScenarios.each { scenario -> break case 'arm64': - assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0xc') + assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc') // Set time out setTestJobTimeOut(newJob, scenario) -- 2.7.4