Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Add JitELTHookEnabled scenarios and testGroup in CI (#26542)
Browse files Browse the repository at this point in the history
* Add jitelthookenabled, jitelthookenabled_tiered scenarios in tests/testenvironment.proj

* Add jitelthookenabled testGroup in eng/run-test-job.yml
  • Loading branch information
echesakov authored Sep 20, 2019
1 parent a97d193 commit 93c9dc5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eng/run-test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
timeoutPerTestCollectionInMinutes: 360
# gc reliability may take up to 2 hours to shutdown. Some scenarios have very long iteration times.
timeoutPerTestInMinutes: 240
${{ if in(parameters.testGroup, 'jitstress', 'jitstress-isas-arm', 'jitstress-isas-x86', 'jitstressregs-x86', 'jitstressregs', 'jitstress2-jitstressregs' ) }}:
${{ if in(parameters.testGroup, 'jitstress', 'jitstress-isas-arm', 'jitstress-isas-x86', 'jitstressregs-x86', 'jitstressregs', 'jitstress2-jitstressregs', 'jitelthookenabled' ) }}:
timeoutPerTestCollectionInMinutes: 120
timeoutPerTestInMinutes: 30
${{ if in(parameters.testGroup, 'gcstress0x3-gcstress0xc') }}:
Expand Down Expand Up @@ -266,3 +266,7 @@ jobs:
longRunningGcTests: true
scenarios:
- normal
${{ if in(parameters.testGroup, 'jitelthookenabled') }}:
scenarios:
- jitelthookenabled
- jitelthookenabled_tiered
3 changes: 3 additions & 0 deletions tests/testenvironment.proj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
COMPlus_GCStress;
COMPlus_HeapVerify;
COMPlus_JITMinOpts;
COMPlus_JitELTHookEnabled;
COMPlus_JitStress;
COMPlus_JitStressRegs;
COMPlus_TailcallStress;
Expand Down Expand Up @@ -112,6 +113,8 @@
<TestEnvironment Include="jitstress2_jitstressregs0x10" JitStress="2" JitStressRegs="0x10" />
<TestEnvironment Include="jitstress2_jitstressregs0x80" JitStress="2" JitStressRegs="0x80" />
<TestEnvironment Include="jitstress2_jitstressregs0x1000" JitStress="2" JitStressRegs="0x1000" />
<TestEnvironment Include="jitelthookenabled" JitELTHookEnabled="1" />
<TestEnvironment Include="jitelthookenabled_tiered" JitELTHookEnabled="1" TieredCompilation="1" />
<TestEnvironment Include="tailcallstress" TailcallStress="1" />
<TestEnvironment Include="gcstress0x3" GCStress="0x3" />
<TestEnvironment Include="gcstress0xc" GCStress="0xC" />
Expand Down

0 comments on commit 93c9dc5

Please sign in to comment.