diff options
author | Sergey Andreenko <seandree@microsoft.com> | 2019-03-29 16:45:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-29 16:45:31 -0700 |
commit | 2ca512927b7d8e8b4b4c8f8eb0cf7986d3115c0f (patch) | |
tree | 8e56faca8aa6c516aaff657ac106ef6e7c226219 | |
parent | c7761a233b1e894bf9972d527aa85b02f6662cad (diff) | |
parent | fd81d2dfc658a1cfc7bf7957ef538b1ae2172989 (diff) | |
download | coreclr-2ca512927b7d8e8b4b4c8f8eb0cf7986d3115c0f.tar.gz coreclr-2ca512927b7d8e8b4b4c8f8eb0cf7986d3115c0f.tar.bz2 coreclr-2ca512927b7d8e8b4b4c8f8eb0cf7986d3115c0f.zip |
Increase GCStress test timeouts. (#23576)
New machines are slower that we had before, so increate the timeout for the longest runs.
-rw-r--r-- | eng/test-job.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eng/test-job.yml b/eng/test-job.yml index 8963c9e1d2..7c70377596 100644 --- a/eng/test-job.yml +++ b/eng/test-job.yml @@ -169,9 +169,12 @@ jobs: ${{ if eq(parameters.testGroup, 'outerloop') }}: timeoutPerTestCollectionInMinutes: 60 timeoutPerTestInMinutes: 10 - ${{ if in(parameters.testGroup, 'outerloop-jitminopts-jitstress1-jitstress2', 'outerloop-jitstressregs', 'outerloop-jitstress2-jitstressregs', 'outerloop-gcstress0x3-gcstress0xc') }}: + ${{ if in(parameters.testGroup, 'outerloop-jitminopts-jitstress1-jitstress2', 'outerloop-jitstressregs', 'outerloop-jitstress2-jitstressregs') }}: timeoutPerTestCollectionInMinutes: 120 timeoutPerTestInMinutes: 30 + ${{ if in(parameters.testGroup, 'outerloop-gcstress0x3-gcstress0xc') }}: + timeoutPerTestCollectionInMinutes: 240 + timeoutPerTestInMinutes: 60 runCrossGen: ${{ parameters.readyToRun }} |