summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSejong Oh <sejooh@microsoft.com>2016-03-11 11:04:24 -0800
committerSejong Oh <sejooh@microsoft.com>2016-03-11 11:04:24 -0800
commitae11f91bb1695bb455038223af0ed7bc1a26d45c (patch)
treeb167d3b86c903fa0b6038665ef7b87d2ddeb4145 /netci.groovy
parent04e4994ac9e983c471d46b72ceb969bf4bff5622 (diff)
parent4d9a286c5a465e543bca1733ed2cf1a51e5b13b4 (diff)
downloadcoreclr-ae11f91bb1695bb455038223af0ed7bc1a26d45c.tar.gz
coreclr-ae11f91bb1695bb455038223af0ed7bc1a26d45c.tar.bz2
coreclr-ae11f91bb1695bb455038223af0ed7bc1a26d45c.zip
Merge pull request #3645 from sejongoh/increase_gctest_time_out
Increase timeout and crond schedule for GC stress testing
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy11
1 files changed, 8 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index aa1074f98c..b8c0b914d2 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -113,7 +113,7 @@ def static isCorefxTesting(def scenario) {
def static setTestJobTimeOut(newJob, scenario) {
if (isGCStressRelatedTesting(scenario)) {
- Utilities.setJobTimeout(newJob, 720)
+ Utilities.setJobTimeout(newJob, 1440)
}
else if (isCorefxTesting(scenario)) {
Utilities.setJobTimeout(newJob, 360)
@@ -301,9 +301,14 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
+ case 'zapdisable':
+ if (os != 'CentOS7.1') {
+ assert (os == 'Windows_NT') || (os in Constants.crossList)
+ Utilities.addPeriodicTrigger(job, '@daily')
+ }
+ break
case 'gcstress0x3':
case 'gcstress0xc':
- case 'zapdisable':
case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
@@ -313,7 +318,7 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
case 'gcstress0xc_minopts_heapverify1':
if (os != 'CentOS7.1') {
assert (os == 'Windows_NT') || (os in Constants.crossList)
- Utilities.addPeriodicTrigger(job, '@daily')
+ Utilities.addPeriodicTrigger(job, '@weekly')
}
break
default: