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

[Arm64] Implement managed Short Vector ABI for Vector64<T> Vector128<T> #16310

Closed
wants to merge 3 commits into from

Conversation

sdmaclea
Copy link

@sdmaclea sdmaclea commented Feb 9, 2018

This change implements changes necessary to support Vector64<T> Vector128<T> as Homogeneous Vector Aggregate (HVA) types each containing a single Short Vector.

It should also implement most of the change necessary to also handle multiple element HVA in managed code. I actually believe the functional implementation is complete. Lacking test coverage it is difficult to confirm this also works. I will write a test shortly.

This change is fairly extensive. I would appreciate an early review.

Current status:

  • All Arm64 tests are passing with this change except one test is failing in LinearScan::checkLastUses() (debugging now)
  • Need comments regarding use of #ifdef.
    • I am tempted to add a FEATURE_ARM64_HVA_ABI
    • I added #ifdef in most places even when it felt like the code should be common
  • Need comments related to VM to JIT interface
    • I probably need to change the GUID
  • Need comments relative to whether this should be done.
    • For Arm64 if we plan to do this, now would be good. I have spent 6 days writing and debugging this so far. I would hate to scrap it and then have to redo the work in 6 months.
  • Need comments about skipping treating types as a struct containing a Short Vector.
    • It feels natural to me, but it was not the original plan

Fixes #14371
Fixes #16021
Prepares to fix #16022

@janvorli @jkotas @RussKeldorph @CarolEidt @tannergooding PTAL
@dotnet/jit-contrib @dotnet/arm64-contrib FYI

@tannergooding
Copy link
Member

tannergooding commented Feb 9, 2018

Is it "accurate" to treat short vectors as HFA?

My understanding of the spec is that short vectors are a "fundamental data type" and that you could construct an HFA/HVA using them, but that they themselves are not HFA/HVAs.

Additionally, I had thought that any type which is composed of short vectors would generally make it a HVA, which is similar (but not identical) to a HFA.

@sdmaclea
Copy link
Author

sdmaclea commented Feb 9, 2018

My understanding of the spec is that short vectors are a "fundamental data type" and that you could construct an HFA/HVA using them, but that they themselves are not HFA/HVAs.

Correct.

Additionally, I had thought that any type which is composed of short vectors would generally make it a HVA, which is similar (but not identical) to a HFA.

Correct.

To be semantically correct, I should change all references to HFA to HomogeneousAggregate (or any other generic name).

It didn't seem necessary or worth it, but it could easily be done with a global search and replace. If it was renamed, it should be done in a separate PR.

SVE will introduce two new vector types and two new aggregate types.

  • Scalable Vector, Scalable Predicate, Scalable Vector Aggregate, Scalable Predicate Aggregate

It seemed silly to treat these all differently, when the only difference would be the aggregated type.

Is it "accurate" to treat short vectors as HFA?

It is accurate to treat Vector64<T> and Vector128<T> as an HVA containing one Short Vector.

It also could be accurate to treat Vector64<T> and Vector128<T> as a Short Vector. While this was a viable option, this was less convenient and added an extra use case which didn't need to be supported in managed code.

In the JIT we treat a single element homogenous aggregate as the primitive type (TYP_DOUBLE,TYP_FLOAT, TYP_SIMD16, or TYP_SIMD8) for ABI purposes. So from a JIT perspective it is only a semantic difference.

Observation:

  • float, double, 8 or 16 byte short vector are all passed in the same registers using the same conventions as each other.
  • A struct containing float, double, 8 or16 byte short vector are all passed in the same registers using the same conventions as the bare primitives.
  • Similarly a struct containing 2-4 floats, doubles, short vectors are all passed in the same registers using the same conventions as each other.
  • Similarly a struct containing multiple nested structs containing floats, doubles, short vectors are all passed in the same registers using the same conventions as the unnested structs.

This is all logical because the Homogenous Aggregates rules are based on in memory layout. Struct is a higher level language construct which doesn't affect the ABI.

@tannergooding
Copy link
Member

Looking at the spec, I think the primary benefit in differentiating is that there are a number of steps which differ slightly for a fundamental type vs a HVA/HFA type that can ultimately make the argument passing logic simpler for a given type.

That being said, I think that can probably be tracked by a work item and fixed/handled later (But I do think it will be worth fixing, eventually).

@sdmaclea
Copy link
Author

sdmaclea commented Feb 9, 2018

I think the primary benefit in differentiating is that there are a number of steps which differ slightly for a fundamental type vs a HVA/HFA type that can ultimately make the argument passing logic simpler for a given type.

Stage C – Assignment of arguments to registers and stack

Can you be more specific? I do not see a functional difference. JIT already treated C.1 as equivalent to C.2 in getPrimitiveTypeForStruct()

@sdmaclea
Copy link
Author

sdmaclea commented Feb 9, 2018

OK, maybe already was a stretch. Since Vector64<T> and Vector128<T> are structs it seemed already to me.

@tannergooding
Copy link
Member

Can you be more specific?

Stage C has 15 steps. Several of those apply only to integer fundamental types, several apply only to floating-point fundamental types, and several only apply to HVA/HFA.

While it does look to be the case that an HVA containing a single short vector ends up being treated the same as if you just treated it as short vector directly, the HFA/HVA specific steps end up doing several things that it is possible to short-circuit for short vector types directly (such as alignment checks and size adjustments). The same goes for integer fundamental types in comparison with composite types.

Copy link

@briansull briansull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I looked through all the changes and
generally they look good to me

src/inc/corhdr.h Outdated
@@ -913,6 +913,9 @@ typedef enum CorElementType
ELEMENT_TYPE_SENTINEL = 0x01 | ELEMENT_TYPE_MODIFIER, // sentinel for varargs
ELEMENT_TYPE_PINNED = 0x05 | ELEMENT_TYPE_MODIFIER,

ELEMENT_TYPE_SHORT_VECTOR = 0x80,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is meant to contain only the standard ELEMENT_TYPE_ constants that show up in regular metadata.

The various custom area specific should rather be somewhere else. corpriv.h may be a good place - there are several of them already (look for ELEMENT_TYPE_).

@@ -1664,6 +1664,31 @@ CorElementType MethodTable::GetHFAType()
_ASSERTE(pMT->IsValueType());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need to modify all callers of GetHFAType to handle these new values correctly?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought I looked at them all,but maybe I maybe I waiting for an assert to fire... I'll take a look next week.

@sdmaclea
Copy link
Author

sdmaclea commented Feb 10, 2018

@tannergooding

such as alignment checks and size adjustments

For Arm64 C#, these are treated the same as Short Vector, since

  • the Short Vector size is always a multiple of 8 bytes
  • structs (and therefore Vector64 et al) are always 8 byte aligned
  • HVA are 1-4 Short Vectors (no layout)
  • Stack is 16-byte aligned
  • Heap objects are 8 byte aligned

I looked at those operations as noop (git spelling) or freebies

I can believe I missed something. When we look at native interoperability, we may find something important.

@sdmaclea
Copy link
Author

@dotnet-bot help

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Repository

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following jobs are launched by default for each PR against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Alpine.3.6 x64 Debug Build Alpine.3.6 x64 Debug Build

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Outerloop Alpine.3.6 x64 Debug Build Queues Outerloop Alpine.3.6 x64 Debug Build
@dotnet-bot test Alpine.3.6 x64 Release Build Queues Alpine.3.6 x64 Release Build
@dotnet-bot test Outerloop Alpine.3.6 x64 Release Build Queues Outerloop Alpine.3.6 x64 Release Build

Have a nice day!

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Perf help

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Windows_NT x64 illink Queues Windows_NT x64 full_opt ryujit IlLink Tests
@dotnet-bot test linux perf flow Queues Linux Perf Test Flow
@dotnet-bot test Windows_NT x64 perf Queues Windows_NT x64 full_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x64 min_opts perf Queues Windows_NT x64 min_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x86 perf Queues Windows_NT x86 full_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x86 min_opts perf Queues Windows_NT x86 min_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x64 perf scenarios Queues Windows_NT x64 full_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x64 min_opts perf scenarios Queues Windows_NT x64 min_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x64 perf scenarios Queues Windows_NT x64 tiered ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 perf scenarios Queues Windows_NT x86 full_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 min_opts perf scenarios Queues Windows_NT x86 min_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 perf scenarios Queues Windows_NT x86 tiered ryujit Performance Scenarios Tests
@dotnet-bot test linux throughput flow Queues Linux Throughput Perf Test Flow
@dotnet-bot test Windows_NT x64 throughput Queues Windows_NT x64 full_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 nopgo throughput Queues Windows_NT x64 full_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 min_opts throughput Queues Windows_NT x64 min_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 min_opts nopgo throughput Queues Windows_NT x64 min_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 throughput Queues Windows_NT x86 full_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 nopgo throughput Queues Windows_NT x86 full_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 min_opts throughput Queues Windows_NT x86 min_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 min_opts nopgo throughput Queues Windows_NT x86 min_opt ryujit pgo CoreCLR Throughput Perf Tests

Have a nice day!

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Repository

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following jobs are launched by default for each PR against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Windows_NT arm64 Cross Checked Innerloop Build and Test Windows_NT arm64 Cross Checked Innerloop Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug Innerloop Build Ubuntu arm64 Cross Debug Innerloop Build
@dotnet-bot test Windows_NT arm Cross Checked Innerloop Build and Test Windows_NT arm Cross Checked Innerloop Build and Test
@dotnet-bot test Tizen armel Cross Checked Innerloop Build and Test Tizen armel Cross Checked Innerloop Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked Innerloop Build and Test Windows_NT armlb Cross Checked Innerloop Build and Test
@dotnet-bot test CentOS7.1 x64 Checked Innerloop Build and Test CentOS7.1 x64 Checked Innerloop Build and Test
@dotnet-bot test OSX10.12 x64 Checked Innerloop Build and Test OSX10.12 x64 Checked Innerloop Build and Test
@dotnet-bot test Ubuntu x64 Checked Innerloop Build and Test Ubuntu x64 Checked Innerloop Build and Test
@dotnet-bot test Windows_NT x64 Checked Innerloop Build and Test Windows_NT x64 Checked Innerloop Build and Test
@dotnet-bot test CentOS7.1 x64 Debug Innerloop Build CentOS7.1 x64 Debug Innerloop Build
@dotnet-bot test Ubuntu x64 Formatting Ubuntu x64 Formatting
@dotnet-bot test Windows_NT x64 Formatting Windows_NT x64 Formatting
@dotnet-bot test Windows_NT x86 Checked Innerloop Build and Test Windows_NT x86 Checked Innerloop Build and Test
@dotnet-bot test Windows_NT x86 Release Innerloop Build and Test Windows_NT x86 Release Innerloop Build and Test

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Ubuntu arm64 Cross Checked normal Build and Test Queues Ubuntu arm64 Checked Build and Test
@dotnet-bot test Ubuntu arm64 Cross Checked normal Build and Test Queues Ubuntu arm64 Checked Build and Test
@dotnet-bot test Ubuntu arm64 Cross Checked r2r Build and Test Queues Ubuntu arm64 Checked R2R Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked normal Build and Test Queues Windows_NT arm64 Cross Checked normal Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r Build and Test Queues Windows_NT arm64 Cross Checked r2r Build and Test
@dotnet-bot test Windows_NT arm64 Cross Debug normal Build Queues Windows_NT arm64 Cross Debug normal Build
@dotnet-bot test Windows_NT arm64 Cross Release normal Build and Test Queues Windows_NT arm64 Cross Release normal Build and Test
@dotnet-bot test Windows_NT arm64 Cross Release r2r Build and Test Queues Windows_NT arm64 Cross Release r2r Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug normal Build Queues Ubuntu arm64 Debug Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug normal Build Queues Ubuntu arm64 Debug Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release normal Build and Test Queues Ubuntu arm64 Release Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release normal Build and Test Queues Ubuntu arm64 Release Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release r2r Build and Test Queues Ubuntu arm64 Release R2R Build and Test
@dotnet-bot test Ubuntu16.04 arm Cross Checked Build Queues Ubuntu16.04 arm Cross Checked Build
@dotnet-bot test Ubuntu arm Cross Checked Build Queues Ubuntu arm Cross Checked Build
@dotnet-bot test Windows_NT arm Cross Checked normal Build and Test Queues Windows_NT arm Cross Checked normal Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r Build and Test Queues Windows_NT arm Cross Checked r2r Build and Test
@dotnet-bot test Ubuntu16.04 arm Cross Debug Build Queues Ubuntu16.04 arm Cross Debug Build
@dotnet-bot test Ubuntu arm Cross Debug Build Queues Ubuntu arm Cross Debug Build
@dotnet-bot test Windows_NT arm Cross Debug normal Build Queues Windows_NT arm Cross Debug normal Build
@dotnet-bot test Ubuntu16.04 arm Cross Release Build Queues Ubuntu16.04 arm Cross Release Build
@dotnet-bot test Ubuntu arm Cross Release Build Queues Ubuntu arm Cross Release Build
@dotnet-bot test Windows_NT arm Cross Release normal Build and Test Queues Windows_NT arm Cross Release normal Build and Test
@dotnet-bot test Windows_NT arm Cross Release r2r Build and Test Queues Windows_NT arm Cross Release r2r Build and Test
@dotnet-bot test Tizen armel Cross Checked Build Queues Tizen armel Cross Checked Build
@dotnet-bot test Tizen armel Cross Debug Build Queues Tizen armel Cross Debug Build
@dotnet-bot test Tizen armel Cross Release Build Queues Tizen armel Cross Release Build
@dotnet-bot test Windows_NT armlb Cross Checked normal Build and Test Queues Windows_NT armlb Cross Checked normal Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r Build and Test Queues Windows_NT armlb Cross Checked r2r Build and Test
@dotnet-bot test Windows_NT armlb Cross Debug normal Build Queues Windows_NT armlb Cross Debug normal Build
@dotnet-bot test Windows_NT armlb Cross Release normal Build and Test Queues Windows_NT armlb Cross Release normal Build and Test
@dotnet-bot test Windows_NT armlb Cross Release r2r Build and Test Queues Windows_NT armlb Cross Release r2r Build and Test
@dotnet-bot test CentOS7.1 x64 Build and Test Queues CentOS7.1 x64 Checked Build and Test
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Checked Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Checked Build
@dotnet-bot test OSX10.12 x64 Build and Test Queues OSX10.12 x64 Checked Build and Test
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Checked Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Checked Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Checked Build
@dotnet-bot test Ubuntu x64 Build and Test Queues Ubuntu x64 Checked Build and Test
@dotnet-bot test Windows_NT x64 Build and Test Queues Windows_NT x64 Checked Build and Test
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Debug Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Debug Build
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Debug Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Debug Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Debug Build
@dotnet-bot test Ubuntu x64 Checked illink Queues Ubuntu x64 Checked via ILLink
@dotnet-bot test Ubuntu x64 Checked illink Queues Ubuntu x64 Checked via ILLink
@dotnet-bot test Windows_NT x64 Checked illink Queues Windows_NT x64 Checked via ILLink
@dotnet-bot test Ubuntu x64 Debug illink Queues Ubuntu x64 Debug via ILLink
@dotnet-bot test Ubuntu x64 Debug illink Queues Ubuntu x64 Debug via ILLink
@dotnet-bot test Windows_NT x64 Debug illink Queues Windows_NT x64 Debug via ILLink
@dotnet-bot test Ubuntu x64 Release illink Queues Ubuntu x64 Release via ILLink
@dotnet-bot test Ubuntu x64 Release illink Queues Ubuntu x64 Release via ILLink
@dotnet-bot test Windows_NT x64 Release illink Queues Windows_NT x64 Release via ILLink
@dotnet-bot test Windows_NT x86 Checked illink Queues Windows_NT x86 Checked via ILLink
@dotnet-bot test Windows_NT x86 Debug illink Queues Windows_NT x86 Debug via ILLink
@dotnet-bot test Windows_NT x86 Release illink Queues Windows_NT x86 Release via ILLink
@dotnet-bot test Windows_NT arm64 Cross Checked forcerelocs Build and Test Queues Windows_NT arm64 Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0x3 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitnosimd Build and Test Queues Windows_NT arm64 Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked minopts Build and Test Queues Windows_NT arm64 Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT arm64 Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitminopts Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked tailcallstress Build and Test Queues Windows_NT arm64 Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked tieredcompilation Build and Test Queues Windows_NT arm64 Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked zapdisable Build and Test Queues Windows_NT arm64 Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_baseline Build and Test Queues Windows_NT arm Cross Checked corefx_baseline Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstress1 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstress2 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_minopts Build and Test Queues Windows_NT arm Cross Checked corefx_minopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_tieredcompilation Build and Test Queues Windows_NT arm Cross Checked corefx_tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm Cross Checked forcerelocs Build and Test Queues Windows_NT arm Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0x3 Build and Test Queues Windows_NT arm Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc Build and Test Queues Windows_NT arm Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked heapverify1 Build and Test Queues Windows_NT arm Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitnosimd Build and Test Queues Windows_NT arm Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress1 Build and Test Queues Windows_NT arm Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2 Build and Test Queues Windows_NT arm Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked minopts Build and Test Queues Windows_NT arm Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT arm Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT arm Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitminopts Build and Test Queues Windows_NT arm Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked tailcallstress Build and Test Queues Windows_NT arm Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT arm Cross Checked tieredcompilation Build and Test Queues Windows_NT arm Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm Cross Checked zapdisable Build and Test Queues Windows_NT arm Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked forcerelocs Build and Test Queues Windows_NT armlb Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0x3 Build and Test Queues Windows_NT armlb Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked heapverify1 Build and Test Queues Windows_NT armlb Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitnosimd Build and Test Queues Windows_NT armlb Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress1 Build and Test Queues Windows_NT armlb Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2 Build and Test Queues Windows_NT armlb Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked minopts Build and Test Queues Windows_NT armlb Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT armlb Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT armlb Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitminopts Build and Test Queues Windows_NT armlb Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked tailcallstress Build and Test Queues Windows_NT armlb Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked tieredcompilation Build and Test Queues Windows_NT armlb Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked zapdisable Build and Test Queues Windows_NT armlb Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_baseline Queues Windows_NT x64_arm64_altjit Checked corefx_baseline
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstress1 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstress2 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_minopts Queues Windows_NT x64_arm64_altjit Checked corefx_minopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_tieredcompilation Queues Windows_NT x64_arm64_altjit Checked corefx_tieredcompilation
@dotnet-bot test Windows_NT x64_arm64_altjit Checked forcerelocs Queues Windows_NT x64_arm64_altjit Checked forcerelocs
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitincompletehwintrinsic Queues Windows_NT x64_arm64_altjit Checked jitincompletehwintrinsic
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitnosimd Queues Windows_NT x64_arm64_altjit Checked jitnosimd
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitnox86hwintrinsic Queues Windows_NT x64_arm64_altjit Checked jitnox86hwintrinsic
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitsse2only Queues Windows_NT x64_arm64_altjit Checked jitsse2only
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress1 Queues Windows_NT x64_arm64_altjit Checked jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2 Queues Windows_NT x64_arm64_altjit Checked jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnosimd Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnosimd
@dotnet-bot test Windows_NT x64_arm64_altjit Checked minopts Queues Windows_NT x64_arm64_altjit Checked minopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitforcerelocs Queues Windows_NT x64_arm64_altjit Checked r2r_jitforcerelocs
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitminopts Queues Windows_NT x64_arm64_altjit Checked r2r_jitminopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstress1 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstress2 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked tailcallstress Queues Windows_NT x64_arm64_altjit Checked tailcallstress
@dotnet-bot test Windows_NT x64_arm64_altjit Checked tieredcompilation Queues Windows_NT x64_arm64_altjit Checked tieredcompilation
@dotnet-bot test CentOS7.1 x64 Checked r2r_gcstress15 Queues CentOS7.1 x64 Checked R2R gcstress15 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitforcerelocs Queues CentOS7.1 x64 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitminopts Queues CentOS7.1 x64 Checked R2R jitminopts Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstress1 Queues CentOS7.1 x64 Checked R2R jitstress1 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstress2 Queues CentOS7.1 x64 Checked R2R jitstress2 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x1000 Queues CentOS7.1 x64 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x10 Queues CentOS7.1 x64 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x80 Queues CentOS7.1 x64 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs1 Queues CentOS7.1 x64 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs2 Queues CentOS7.1 x64 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs3 Queues CentOS7.1 x64 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs4 Queues CentOS7.1 x64 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs8 Queues CentOS7.1 x64 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test OSX10.12 x64 Checked forcerelocs Queues OSX10.12 x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0x3 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_jitstress1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_minopts_heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable_heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable_jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked jitincompletehwintrinsic Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test OSX10.12 x64 Checked jitnosimd Queues OSX10.12 x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test OSX10.12 x64 Checked jitnox86hwintrinsic Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test OSX10.12 x64 Checked jitsse2only Queues OSX10.12 x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test OSX10.12 x64 Checked jitstress1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test OSX10.12 x64 Checked jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x1000 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x10 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x80 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs3 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs4 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs8 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x1000 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x10 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x80 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs3 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs4 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs8 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnoavx2 Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnoavx Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnosimd Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test OSX10.12 x64 Checked minopts Queues OSX10.12 x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test OSX10.12 x64 Checked r2r_gcstress15 Queues OSX10.12 x64 Checked R2R gcstress15 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitforcerelocs Queues OSX10.12 x64 Checked R2R jitforcerelocs Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitminopts Queues OSX10.12 x64 Checked R2R jitminopts Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstress1 Queues OSX10.12 x64 Checked R2R jitstress1 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstress2 Queues OSX10.12 x64 Checked R2R jitstress2 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x1000 Queues OSX10.12 x64 Checked R2R jitstressregs0x1000 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x10 Queues OSX10.12 x64 Checked R2R jitstressregs0x10 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x80 Queues OSX10.12 x64 Checked R2R jitstressregs0x80 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs1 Queues OSX10.12 x64 Checked R2R jitstressregs1 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs2 Queues OSX10.12 x64 Checked R2R jitstressregs2 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs3 Queues OSX10.12 x64 Checked R2R jitstressregs3 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs4 Queues OSX10.12 x64 Checked R2R jitstressregs4 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs8 Queues OSX10.12 x64 Checked R2R jitstressregs8 Build and Test
@dotnet-bot test OSX10.12 x64 Checked tailcallstress Queues OSX10.12 x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test OSX10.12 x64 Checked tieredcompilation Queues OSX10.12 x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test OSX10.12 x64 Checked zapdisable Queues OSX10.12 x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Ubuntu x64 Checked corefx_baseline Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked corefx_minopts Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Ubuntu x64 Checked corefx_tieredcompilation Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Ubuntu x64 Checked forcerelocs Queues Ubuntu x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0x3 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_minopts_heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable_heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Ubuntu x64 Checked heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked jitincompletehwintrinsic Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Ubuntu x64 Checked jitnosimd Queues Ubuntu x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Ubuntu x64 Checked jitnox86hwintrinsic Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Ubuntu x64 Checked jitsse2only Queues Ubuntu x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Ubuntu x64 Checked jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Ubuntu x64 Checked jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnoavx2 Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnoavx Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnosimd Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Ubuntu x64 Checked minopts Queues Ubuntu x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Ubuntu x64 Checked r2r_gcstress15 Queues Ubuntu x64 Checked R2R gcstress15 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitforcerelocs Queues Ubuntu x64 Checked R2R jitforcerelocs Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitminopts Queues Ubuntu x64 Checked R2R jitminopts Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstress1 Queues Ubuntu x64 Checked R2R jitstress1 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstress2 Queues Ubuntu x64 Checked R2R jitstress2 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x1000 Queues Ubuntu x64 Checked R2R jitstressregs0x1000 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x10 Queues Ubuntu x64 Checked R2R jitstressregs0x10 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x80 Queues Ubuntu x64 Checked R2R jitstressregs0x80 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs1 Queues Ubuntu x64 Checked R2R jitstressregs1 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs2 Queues Ubuntu x64 Checked R2R jitstressregs2 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs3 Queues Ubuntu x64 Checked R2R jitstressregs3 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs4 Queues Ubuntu x64 Checked R2R jitstressregs4 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs8 Queues Ubuntu x64 Checked R2R jitstressregs8 Build and Test
@dotnet-bot test Ubuntu x64 Checked tailcallstress Queues Ubuntu x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Ubuntu x64 Checked tieredcompilation Queues Ubuntu x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Ubuntu x64 Checked zapdisable Queues Ubuntu x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x64 Checked corefx_baseline Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked corefx_minopts Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Windows_NT x64 Checked corefx_tieredcompilation Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x64 Checked forcerelocs Queues Windows_NT x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0x3 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_minopts_heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable_heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x64 Checked heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked jitincompletehwintrinsic Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Windows_NT x64 Checked jitnosimd Queues Windows_NT x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Windows_NT x64 Checked jitnox86hwintrinsic Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Windows_NT x64 Checked jitsse2only Queues Windows_NT x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Windows_NT x64 Checked jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnoavx Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnosimd Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Windows_NT x64 Checked minopts Queues Windows_NT x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Windows_NT x64 Checked r2r_gcstress15 Queues Windows_NT x64 Checked R2R gcstress15 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitforcerelocs Queues Windows_NT x64 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitminopts Queues Windows_NT x64 Checked R2R jitminopts Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstress1 Queues Windows_NT x64 Checked R2R jitstress1 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstress2 Queues Windows_NT x64 Checked R2R jitstress2 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x1000 Queues Windows_NT x64 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x10 Queues Windows_NT x64 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x80 Queues Windows_NT x64 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs1 Queues Windows_NT x64 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs2 Queues Windows_NT x64 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs3 Queues Windows_NT x64 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs4 Queues Windows_NT x64 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs8 Queues Windows_NT x64 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test Windows_NT x64 Checked tailcallstress Queues Windows_NT x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Windows_NT x64 Checked tieredcompilation Queues Windows_NT x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x64 Checked zapdisable Queues Windows_NT x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_baseline Queues Windows_NT x86_arm_altjit Checked corefx_baseline
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstress1 Queues Windows_NT x86_arm_altjit Checked corefx_jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstress2 Queues Windows_NT x86_arm_altjit Checked corefx_jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_minopts Queues Windows_NT x86_arm_altjit Checked corefx_minopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_tieredcompilation Queues Windows_NT x86_arm_altjit Checked corefx_tieredcompilation
@dotnet-bot test Windows_NT x86_arm_altjit Checked forcerelocs Queues Windows_NT x86_arm_altjit Checked forcerelocs
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitincompletehwintrinsic Queues Windows_NT x86_arm_altjit Checked jitincompletehwintrinsic
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitnosimd Queues Windows_NT x86_arm_altjit Checked jitnosimd
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitnox86hwintrinsic Queues Windows_NT x86_arm_altjit Checked jitnox86hwintrinsic
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitsse2only Queues Windows_NT x86_arm_altjit Checked jitsse2only
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress1 Queues Windows_NT x86_arm_altjit Checked jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2 Queues Windows_NT x86_arm_altjit Checked jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs1 Queues Windows_NT x86_arm_altjit Checked jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs2 Queues Windows_NT x86_arm_altjit Checked jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs3 Queues Windows_NT x86_arm_altjit Checked jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs4 Queues Windows_NT x86_arm_altjit Checked jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs8 Queues Windows_NT x86_arm_altjit Checked jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnosimd Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnosimd
@dotnet-bot test Windows_NT x86_arm_altjit Checked minopts Queues Windows_NT x86_arm_altjit Checked minopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitforcerelocs Queues Windows_NT x86_arm_altjit Checked r2r_jitforcerelocs
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitminopts Queues Windows_NT x86_arm_altjit Checked r2r_jitminopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstress1 Queues Windows_NT x86_arm_altjit Checked r2r_jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstress2 Queues Windows_NT x86_arm_altjit Checked r2r_jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked tailcallstress Queues Windows_NT x86_arm_altjit Checked tailcallstress
@dotnet-bot test Windows_NT x86_arm_altjit Checked tieredcompilation Queues Windows_NT x86_arm_altjit Checked tieredcompilation
@dotnet-bot test Windows_NT x86 Checked corefx_baseline Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked corefx_minopts Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Windows_NT x86 Checked corefx_tieredcompilation Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x86 Checked forcerelocs Queues Windows_NT x86 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0x3 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_minopts_heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable_heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x86 Checked heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked jitincompletehwintrinsic Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Windows_NT x86 Checked jitnosimd Queues Windows_NT x86 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Windows_NT x86 Checked jitnox86hwintrinsic Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Windows_NT x86 Checked jitsse2only Queues Windows_NT x86 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Windows_NT x86 Checked jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnoavx Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnosimd Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Windows_NT x86 Checked minopts Queues Windows_NT x86 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Windows_NT x86 Checked r2r_gcstress15 Queues Windows_NT x86 Checked R2R gcstress15 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitforcerelocs Queues Windows_NT x86 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitminopts Queues Windows_NT x86 Checked R2R jitminopts Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstress1 Queues Windows_NT x86 Checked R2R jitstress1 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstress2 Queues Windows_NT x86 Checked R2R jitstress2 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x1000 Queues Windows_NT x86 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x10 Queues Windows_NT x86 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x80 Queues Windows_NT x86 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs1 Queues Windows_NT x86 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs2 Queues Windows_NT x86 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs3 Queues Windows_NT x86 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs4 Queues Windows_NT x86 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs8 Queues Windows_NT x86 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test Windows_NT x86 Checked tailcallstress Queues Windows_NT x86 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Windows_NT x86 Checked tieredcompilation Queues Windows_NT x86 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x86 Checked zapdisable Queues Windows_NT x86 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Release Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Release Build
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Release Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Release Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Release Build
@dotnet-bot test Windows_NT x64_arm64_altjit Checked Build and Test Queues Windows_NT x64_arm64_altjit Checked Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r Queues Windows_NT x64_arm64_altjit Checked r2r
@dotnet-bot test Windows_NT x64_arm64_altjit Debug Build and Test Queues Windows_NT x64_arm64_altjit Debug Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Debug r2r Queues Windows_NT x64_arm64_altjit Debug r2r
@dotnet-bot test Windows_NT x64_arm64_altjit Release Build and Test Queues Windows_NT x64_arm64_altjit Release Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Release r2r Queues Windows_NT x64_arm64_altjit Release r2r
@dotnet-bot test CentOS7.1 x64 Checked r2r Queues CentOS7.1 x64 Checked R2R Build & Test
@dotnet-bot test OSX10.12 Checked gc_reliability_framework Queues OSX10.12 x64 Checked GC Reliability Framework
@dotnet-bot test OSX10.12 x64 Checked r2r Queues OSX10.12 x64 Checked R2R Build and Test
@dotnet-bot test OSX10.12 Checked standalone_gc Queues OSX10.12 x64 Checked Standalone GC
@dotnet-bot test Ubuntu Checked gc_reliability_framework Queues Ubuntu x64 Checked GC Reliability Framework
@dotnet-bot test Ubuntu x64 Checked r2r Queues Ubuntu x64 Checked R2R Build and Test
@dotnet-bot test Ubuntu Checked standalone_gc Queues Ubuntu x64 Checked Standalone GC
@dotnet-bot test Windows_NT Checked gc_reliability_framework Queues Windows_NT x64 Checked GC Reliability Framework
@dotnet-bot test Windows_NT x64 Checked r2r Queues Windows_NT x64 Checked R2R Build & Test
@dotnet-bot test Windows_NT Checked standalone_gc Queues Windows_NT x64 Checked Standalone GC
@dotnet-bot test CentOS7.1 x64 Release r2r Queues CentOS7.1 x64 Release R2R Build & Test
@dotnet-bot test OSX10.12 Release gc_reliability_framework Queues OSX10.12 x64 Release GC Reliability Framework
@dotnet-bot test OSX10.12 Release gcsimulator Queues OSX10.12 x64 Release GC Simulator
@dotnet-bot test OSX10.12 ilrt Queues OSX10.12 x64 Release IL RoundTrip Build and Test
@dotnet-bot test OSX10.12 Release longgc Queues OSX10.12 x64 Release Long-Running GC Build & Test
@dotnet-bot test OSX10.12 x64 Release r2r Queues OSX10.12 x64 Release R2R Build and Test
@dotnet-bot test OSX10.12 Release standalone_gc Queues OSX10.12 x64 Release Standalone GC
@dotnet-bot test Ubuntu Release gc_reliability_framework Queues Ubuntu x64 Release GC Reliability Framework
@dotnet-bot test Ubuntu Release gcsimulator Queues Ubuntu x64 Release GC Simulator
@dotnet-bot test Ubuntu ilrt Queues Ubuntu x64 Release IL RoundTrip Build and Test
@dotnet-bot test Ubuntu Release longgc Queues Ubuntu x64 Release Long-Running GC Build & Test
@dotnet-bot test Ubuntu x64 Release r2r Queues Ubuntu x64 Release R2R Build and Test
@dotnet-bot test Ubuntu Release standalone_gc Queues Ubuntu x64 Release Standalone GC
@dotnet-bot test Windows_NT Release gc_reliability_framework Queues Windows_NT x64 Release GC Reliability Framework
@dotnet-bot test Windows_NT Release gcsimulator Queues Windows_NT x64 Release GC Simulator
@dotnet-bot test Windows_NT ilrt Queues Windows_NT x64 Release IL RoundTrip Build and Test
@dotnet-bot test Windows_NT Release longgc Queues Windows_NT x64 Release Long-Running GC Build & Test
@dotnet-bot test Windows_NT x64 Release r2r Queues Windows_NT x64 Release R2R Build & Test
@dotnet-bot test Windows_NT Release standalone_gc Queues Windows_NT x64 Release Standalone GC
@dotnet-bot test Windows_NT x86_arm_altjit Checked Build and Test Queues Windows_NT x86_arm_altjit Checked Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r Queues Windows_NT x86_arm_altjit Checked r2r
@dotnet-bot test Windows_NT x86_arm_altjit Debug Build and Test Queues Windows_NT x86_arm_altjit Debug Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Debug r2r Queues Windows_NT x86_arm_altjit Debug r2r
@dotnet-bot test Windows_NT x86_arm_altjit Release Build and Test Queues Windows_NT x86_arm_altjit Release Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Release r2r Queues Windows_NT x86_arm_altjit Release r2r
@dotnet-bot test Ubuntu x86 Checked Queues Ubuntu x86 Checked Build
@dotnet-bot test Windows_NT x86 Checked Build and Test Queues Windows_NT x86 Checked Build and Test
@dotnet-bot test Windows_NT x86 Checked r2r Queues Windows_NT x86 Checked R2R Build & Test
@dotnet-bot test Ubuntu x86 Debug Queues Ubuntu x86 Debug Build
@dotnet-bot test Ubuntu x86 Release Queues Ubuntu x86 Release Build
@dotnet-bot test Windows_NT x86 Release r2r Queues Windows_NT x86 Release R2R Build & Test

Have a nice day!

@sdmaclea
Copy link
Author

sdmaclea commented Mar 7, 2018

Fixed broken test, rebased, fixed merge conflicts, and enabled simd tests now that Arm64 HW intrinsics are included in corefx packages.

@sdmaclea sdmaclea force-pushed the PR-ARM64-SHORT-VECTORS branch 2 times, most recently from ea14dcf to eaa6e07 Compare March 8, 2018 17:34
@sdmaclea
Copy link
Author

This PR got a bit crufty while I was working on enabling official arm64 builds.

This is important for arm64 HW intrinsics ZBB. I will work on fixing this.

sdmaclea added a commit to sdmaclea/coreclr that referenced this pull request Mar 16, 2018
@sdmaclea
Copy link
Author

@dotnet-bot help

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Repository

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following jobs are launched by default for each PR against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Alpine.3.6 x64 Debug Build Alpine.3.6 x64 Debug Build

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Outerloop Alpine.3.6 x64 Debug Build Queues Outerloop Alpine.3.6 x64 Debug Build
@dotnet-bot test Alpine.3.6 x64 Release Build Queues Alpine.3.6 x64 Release Build
@dotnet-bot test Outerloop Alpine.3.6 x64 Release Build Queues Outerloop Alpine.3.6 x64 Release Build

Have a nice day!

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Repository

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following jobs are launched by default for each PR against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Windows_NT arm64 Cross Checked Innerloop Build and Test Windows_NT arm64 Cross Checked Innerloop Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug Innerloop Build Ubuntu arm64 Cross Debug Innerloop Build
@dotnet-bot test Windows_NT arm Cross Checked Innerloop Build and Test Windows_NT arm Cross Checked Innerloop Build and Test
@dotnet-bot test Tizen armel Cross Checked Innerloop Build and Test Tizen armel Cross Checked Innerloop Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked Innerloop Build and Test Windows_NT armlb Cross Checked Innerloop Build and Test
@dotnet-bot test CentOS7.1 x64 Checked Innerloop Build and Test CentOS7.1 x64 Checked Innerloop Build and Test
@dotnet-bot test OSX10.12 x64 Checked Innerloop Build and Test OSX10.12 x64 Checked Innerloop Build and Test
@dotnet-bot test Ubuntu x64 Checked Innerloop Build and Test Ubuntu x64 Checked Innerloop Build and Test
@dotnet-bot test Windows_NT x64 Checked Innerloop Build and Test Windows_NT x64 Checked Innerloop Build and Test
@dotnet-bot test CentOS7.1 x64 Debug Innerloop Build CentOS7.1 x64 Debug Innerloop Build
@dotnet-bot test Ubuntu x64 Formatting Ubuntu x64 Formatting
@dotnet-bot test Windows_NT x64 Formatting Windows_NT x64 Formatting
@dotnet-bot test Windows_NT x86 Checked Innerloop Build and Test Windows_NT x86 Checked Innerloop Build and Test
@dotnet-bot test Windows_NT x86 Release Innerloop Build and Test Windows_NT x86 Release Innerloop Build and Test

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Ubuntu arm64 Cross Checked normal Build and Test Queues Ubuntu arm64 Checked Build and Test
@dotnet-bot test Ubuntu arm64 Cross Checked normal Build and Test Queues Ubuntu arm64 Checked Build and Test
@dotnet-bot test Ubuntu arm64 Cross Checked r2r Build and Test Queues Ubuntu arm64 Checked R2R Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked normal Build and Test Queues Windows_NT arm64 Cross Checked normal Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r Build and Test Queues Windows_NT arm64 Cross Checked r2r Build and Test
@dotnet-bot test Windows_NT arm64 Cross Debug normal Build Queues Windows_NT arm64 Cross Debug normal Build
@dotnet-bot test Windows_NT arm64 Cross Release normal Build and Test Queues Windows_NT arm64 Cross Release normal Build and Test
@dotnet-bot test Windows_NT arm64 Cross Release r2r Build and Test Queues Windows_NT arm64 Cross Release r2r Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug normal Build Queues Ubuntu arm64 Debug Build and Test
@dotnet-bot test Ubuntu arm64 Cross Debug normal Build Queues Ubuntu arm64 Debug Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release normal Build and Test Queues Ubuntu arm64 Release Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release normal Build and Test Queues Ubuntu arm64 Release Build and Test
@dotnet-bot test Ubuntu arm64 Cross Release r2r Build and Test Queues Ubuntu arm64 Release R2R Build and Test
@dotnet-bot test Ubuntu16.04 arm Cross Checked Build Queues Ubuntu16.04 arm Cross Checked Build
@dotnet-bot test Ubuntu arm Cross Checked Build Queues Ubuntu arm Cross Checked Build
@dotnet-bot test Windows_NT arm Cross Checked normal Build and Test Queues Windows_NT arm Cross Checked normal Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r Build and Test Queues Windows_NT arm Cross Checked r2r Build and Test
@dotnet-bot test Ubuntu16.04 arm Cross Debug Build Queues Ubuntu16.04 arm Cross Debug Build
@dotnet-bot test Ubuntu arm Cross Debug Build Queues Ubuntu arm Cross Debug Build
@dotnet-bot test Windows_NT arm Cross Debug normal Build Queues Windows_NT arm Cross Debug normal Build
@dotnet-bot test Ubuntu16.04 arm Cross Release Build Queues Ubuntu16.04 arm Cross Release Build
@dotnet-bot test Ubuntu arm Cross Release Build Queues Ubuntu arm Cross Release Build
@dotnet-bot test Windows_NT arm Cross Release normal Build and Test Queues Windows_NT arm Cross Release normal Build and Test
@dotnet-bot test Windows_NT arm Cross Release r2r Build and Test Queues Windows_NT arm Cross Release r2r Build and Test
@dotnet-bot test Tizen armel Cross Checked Build Queues Tizen armel Cross Checked Build
@dotnet-bot test Tizen armel Cross Debug Build Queues Tizen armel Cross Debug Build
@dotnet-bot test Tizen armel Cross Release Build Queues Tizen armel Cross Release Build
@dotnet-bot test Windows_NT armlb Cross Checked normal Build and Test Queues Windows_NT armlb Cross Checked normal Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r Build and Test Queues Windows_NT armlb Cross Checked r2r Build and Test
@dotnet-bot test Windows_NT armlb Cross Debug normal Build Queues Windows_NT armlb Cross Debug normal Build
@dotnet-bot test Windows_NT armlb Cross Release normal Build and Test Queues Windows_NT armlb Cross Release normal Build and Test
@dotnet-bot test Windows_NT armlb Cross Release r2r Build and Test Queues Windows_NT armlb Cross Release r2r Build and Test
@dotnet-bot test CentOS7.1 x64 Build and Test Queues CentOS7.1 x64 Checked Build and Test
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Checked Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Checked Build
@dotnet-bot test OSX10.12 x64 Build and Test Queues OSX10.12 x64 Checked Build and Test
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Checked Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Checked Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Checked Build
@dotnet-bot test Ubuntu x64 Build and Test Queues Ubuntu x64 Checked Build and Test
@dotnet-bot test Windows_NT x64 Build and Test Queues Windows_NT x64 Checked Build and Test
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Debug Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Debug Build
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Debug Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Debug Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Debug Build
@dotnet-bot test Ubuntu x64 Checked illink Queues Ubuntu x64 Checked via ILLink
@dotnet-bot test Ubuntu x64 Checked illink Queues Ubuntu x64 Checked via ILLink
@dotnet-bot test Windows_NT x64 Checked illink Queues Windows_NT x64 Checked via ILLink
@dotnet-bot test Ubuntu x64 Debug illink Queues Ubuntu x64 Debug via ILLink
@dotnet-bot test Ubuntu x64 Debug illink Queues Ubuntu x64 Debug via ILLink
@dotnet-bot test Windows_NT x64 Debug illink Queues Windows_NT x64 Debug via ILLink
@dotnet-bot test Ubuntu x64 Release illink Queues Ubuntu x64 Release via ILLink
@dotnet-bot test Ubuntu x64 Release illink Queues Ubuntu x64 Release via ILLink
@dotnet-bot test Windows_NT x64 Release illink Queues Windows_NT x64 Release via ILLink
@dotnet-bot test Windows_NT x86 Checked illink Queues Windows_NT x86 Checked via ILLink
@dotnet-bot test Windows_NT x86 Debug illink Queues Windows_NT x86 Debug via ILLink
@dotnet-bot test Windows_NT x86 Release illink Queues Windows_NT x86 Release via ILLink
@dotnet-bot test Windows_NT arm64 Cross Checked forcerelocs Build and Test Queues Windows_NT arm64 Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0x3 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked heapverify1 Build and Test Queues Windows_NT arm64 Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitnosimd Build and Test Queues Windows_NT arm64 Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked minopts Build and Test Queues Windows_NT arm64 Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT arm64 Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitminopts Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT arm64 Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked tailcallstress Build and Test Queues Windows_NT arm64 Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked tieredcompilation Build and Test Queues Windows_NT arm64 Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm64 Cross Checked zapdisable Build and Test Queues Windows_NT arm64 Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_baseline Build and Test Queues Windows_NT arm Cross Checked corefx_baseline Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstress1 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstress2 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked corefx_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_minopts Build and Test Queues Windows_NT arm Cross Checked corefx_minopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked corefx_tieredcompilation Build and Test Queues Windows_NT arm Cross Checked corefx_tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm Cross Checked forcerelocs Build and Test Queues Windows_NT arm Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0x3 Build and Test Queues Windows_NT arm Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc Build and Test Queues Windows_NT arm Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT arm Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked heapverify1 Build and Test Queues Windows_NT arm Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitnosimd Build and Test Queues Windows_NT arm Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress1 Build and Test Queues Windows_NT arm Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2 Build and Test Queues Windows_NT arm Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked minopts Build and Test Queues Windows_NT arm Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT arm Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT arm Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitminopts Build and Test Queues Windows_NT arm Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT arm Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT arm Cross Checked tailcallstress Build and Test Queues Windows_NT arm Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT arm Cross Checked tieredcompilation Build and Test Queues Windows_NT arm Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT arm Cross Checked zapdisable Build and Test Queues Windows_NT arm Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked forcerelocs Build and Test Queues Windows_NT armlb Cross Checked forcerelocs Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0x3 Build and Test Queues Windows_NT armlb Cross Checked gcstress0x3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_jitstress1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_minopts_heapverify1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_minopts_heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable_heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked gcstress0xc_zapdisable_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked heapverify1 Build and Test Queues Windows_NT armlb Cross Checked heapverify1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitnosimd Build and Test Queues Windows_NT armlb Cross Checked jitnosimd Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress1 Build and Test Queues Windows_NT armlb Cross Checked jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2 Build and Test Queues Windows_NT armlb Cross Checked jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstress2_jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked jitstress2_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked minopts Build and Test Queues Windows_NT armlb Cross Checked minopts Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_gcstress15 Build and Test Queues Windows_NT armlb Cross Checked r2r_gcstress15 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitforcerelocs Build and Test Queues Windows_NT armlb Cross Checked r2r_jitforcerelocs Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitminopts Build and Test Queues Windows_NT armlb Cross Checked r2r_jitminopts Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstress1 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstress1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstress2 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstress2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x1000 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x1000 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x10 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x10 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs0x80 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs0x80 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs1 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs1 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs2 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs2 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs3 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs3 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs4 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs4 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked r2r_jitstressregs8 Build and Test Queues Windows_NT armlb Cross Checked r2r_jitstressregs8 Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked tailcallstress Build and Test Queues Windows_NT armlb Cross Checked tailcallstress Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked tieredcompilation Build and Test Queues Windows_NT armlb Cross Checked tieredcompilation Build and Test
@dotnet-bot test Windows_NT armlb Cross Checked zapdisable Build and Test Queues Windows_NT armlb Cross Checked zapdisable Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_baseline Queues Windows_NT x64_arm64_altjit Checked corefx_baseline
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstress1 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstress2 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked corefx_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_minopts Queues Windows_NT x64_arm64_altjit Checked corefx_minopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked corefx_tieredcompilation Queues Windows_NT x64_arm64_altjit Checked corefx_tieredcompilation
@dotnet-bot test Windows_NT x64_arm64_altjit Checked forcerelocs Queues Windows_NT x64_arm64_altjit Checked forcerelocs
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitincompletehwintrinsic Queues Windows_NT x64_arm64_altjit Checked jitincompletehwintrinsic
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitnosimd Queues Windows_NT x64_arm64_altjit Checked jitnosimd
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitnox86hwintrinsic Queues Windows_NT x64_arm64_altjit Checked jitnox86hwintrinsic
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitsse2only Queues Windows_NT x64_arm64_altjit Checked jitsse2only
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress1 Queues Windows_NT x64_arm64_altjit Checked jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked jitstress2_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstress2 Queues Windows_NT x64_arm64_altjit Checked jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnoavx
@dotnet-bot test Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnosimd Queues Windows_NT x64_arm64_altjit Checked jitx86hwintrinsicnosimd
@dotnet-bot test Windows_NT x64_arm64_altjit Checked minopts Queues Windows_NT x64_arm64_altjit Checked minopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitforcerelocs Queues Windows_NT x64_arm64_altjit Checked r2r_jitforcerelocs
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitminopts Queues Windows_NT x64_arm64_altjit Checked r2r_jitminopts
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstress1 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstress1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstress2 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstress2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x1000 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x1000
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x10 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x10
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x80 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs0x80
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs1 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs1
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs2 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs2
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs3 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs3
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs4 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs4
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r_jitstressregs8 Queues Windows_NT x64_arm64_altjit Checked r2r_jitstressregs8
@dotnet-bot test Windows_NT x64_arm64_altjit Checked tailcallstress Queues Windows_NT x64_arm64_altjit Checked tailcallstress
@dotnet-bot test Windows_NT x64_arm64_altjit Checked tieredcompilation Queues Windows_NT x64_arm64_altjit Checked tieredcompilation
@dotnet-bot test CentOS7.1 x64 Checked r2r_gcstress15 Queues CentOS7.1 x64 Checked R2R gcstress15 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitforcerelocs Queues CentOS7.1 x64 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitminopts Queues CentOS7.1 x64 Checked R2R jitminopts Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstress1 Queues CentOS7.1 x64 Checked R2R jitstress1 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstress2 Queues CentOS7.1 x64 Checked R2R jitstress2 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x1000 Queues CentOS7.1 x64 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x10 Queues CentOS7.1 x64 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs0x80 Queues CentOS7.1 x64 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs1 Queues CentOS7.1 x64 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs2 Queues CentOS7.1 x64 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs3 Queues CentOS7.1 x64 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs4 Queues CentOS7.1 x64 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test CentOS7.1 x64 Checked r2r_jitstressregs8 Queues CentOS7.1 x64 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test OSX10.12 x64 Checked forcerelocs Queues OSX10.12 x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0x3 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_jitstress1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_minopts_heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable_heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked gcstress0xc_zapdisable_jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked heapverify1 Queues OSX10.12 x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test OSX10.12 x64 Checked jitincompletehwintrinsic Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test OSX10.12 x64 Checked jitnosimd Queues OSX10.12 x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test OSX10.12 x64 Checked jitnox86hwintrinsic Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test OSX10.12 x64 Checked jitsse2only Queues OSX10.12 x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test OSX10.12 x64 Checked jitstress1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test OSX10.12 x64 Checked jitstress2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x1000 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x10 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs0x80 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs3 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs4 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test OSX10.12 x64 Checked jitstress2_jitstressregs8 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x1000 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x10 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs0x80 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs1 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs2 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs3 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs4 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test OSX10.12 x64 Checked jitstressregs8 Queues OSX10.12 x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnoavx2 Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnoavx Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test OSX10.12 x64 Checked jitx86hwintrinsicnosimd Queues OSX10.12 x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test OSX10.12 x64 Checked minopts Queues OSX10.12 x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test OSX10.12 x64 Checked r2r_gcstress15 Queues OSX10.12 x64 Checked R2R gcstress15 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitforcerelocs Queues OSX10.12 x64 Checked R2R jitforcerelocs Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitminopts Queues OSX10.12 x64 Checked R2R jitminopts Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstress1 Queues OSX10.12 x64 Checked R2R jitstress1 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstress2 Queues OSX10.12 x64 Checked R2R jitstress2 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x1000 Queues OSX10.12 x64 Checked R2R jitstressregs0x1000 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x10 Queues OSX10.12 x64 Checked R2R jitstressregs0x10 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs0x80 Queues OSX10.12 x64 Checked R2R jitstressregs0x80 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs1 Queues OSX10.12 x64 Checked R2R jitstressregs1 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs2 Queues OSX10.12 x64 Checked R2R jitstressregs2 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs3 Queues OSX10.12 x64 Checked R2R jitstressregs3 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs4 Queues OSX10.12 x64 Checked R2R jitstressregs4 Build and Test
@dotnet-bot test OSX10.12 x64 Checked r2r_jitstressregs8 Queues OSX10.12 x64 Checked R2R jitstressregs8 Build and Test
@dotnet-bot test OSX10.12 x64 Checked tailcallstress Queues OSX10.12 x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test OSX10.12 x64 Checked tieredcompilation Queues OSX10.12 x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test OSX10.12 x64 Checked zapdisable Queues OSX10.12 x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Ubuntu x64 Checked corefx_baseline Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked corefx_jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked corefx_minopts Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Ubuntu x64 Checked corefx_tieredcompilation Queues Ubuntu x64 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Ubuntu x64 Checked forcerelocs Queues Ubuntu x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0x3 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_minopts_heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable_heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked gcstress0xc_zapdisable_jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Ubuntu x64 Checked heapverify1 Queues Ubuntu x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Ubuntu x64 Checked jitincompletehwintrinsic Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Ubuntu x64 Checked jitnosimd Queues Ubuntu x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Ubuntu x64 Checked jitnox86hwintrinsic Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Ubuntu x64 Checked jitsse2only Queues Ubuntu x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Ubuntu x64 Checked jitstress1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Ubuntu x64 Checked jitstress2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked jitstress2_jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x1000 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x10 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Ubuntu x64 Checked jitstressregs0x80 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Ubuntu x64 Checked jitstressregs1 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Ubuntu x64 Checked jitstressregs2 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Ubuntu x64 Checked jitstressregs3 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Ubuntu x64 Checked jitstressregs4 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Ubuntu x64 Checked jitstressregs8 Queues Ubuntu x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnoavx2 Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnoavx Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Ubuntu x64 Checked jitx86hwintrinsicnosimd Queues Ubuntu x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Ubuntu x64 Checked minopts Queues Ubuntu x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Ubuntu x64 Checked r2r_gcstress15 Queues Ubuntu x64 Checked R2R gcstress15 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitforcerelocs Queues Ubuntu x64 Checked R2R jitforcerelocs Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitminopts Queues Ubuntu x64 Checked R2R jitminopts Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstress1 Queues Ubuntu x64 Checked R2R jitstress1 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstress2 Queues Ubuntu x64 Checked R2R jitstress2 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x1000 Queues Ubuntu x64 Checked R2R jitstressregs0x1000 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x10 Queues Ubuntu x64 Checked R2R jitstressregs0x10 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs0x80 Queues Ubuntu x64 Checked R2R jitstressregs0x80 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs1 Queues Ubuntu x64 Checked R2R jitstressregs1 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs2 Queues Ubuntu x64 Checked R2R jitstressregs2 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs3 Queues Ubuntu x64 Checked R2R jitstressregs3 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs4 Queues Ubuntu x64 Checked R2R jitstressregs4 Build and Test
@dotnet-bot test Ubuntu x64 Checked r2r_jitstressregs8 Queues Ubuntu x64 Checked R2R jitstressregs8 Build and Test
@dotnet-bot test Ubuntu x64 Checked tailcallstress Queues Ubuntu x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Ubuntu x64 Checked tieredcompilation Queues Ubuntu x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Ubuntu x64 Checked zapdisable Queues Ubuntu x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x64 Checked corefx_baseline Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked corefx_jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked corefx_minopts Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Windows_NT x64 Checked corefx_tieredcompilation Queues Windows_NT x64 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x64 Checked forcerelocs Queues Windows_NT x64 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0x3 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_minopts_heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable_heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable_jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Windows_NT x64 Checked gcstress0xc_zapdisable Queues Windows_NT x64 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x64 Checked heapverify1 Queues Windows_NT x64 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Windows_NT x64 Checked jitincompletehwintrinsic Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Windows_NT x64 Checked jitnosimd Queues Windows_NT x64 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Windows_NT x64 Checked jitnox86hwintrinsic Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Windows_NT x64 Checked jitsse2only Queues Windows_NT x64 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Windows_NT x64 Checked jitstress1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked jitstress2_jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked jitstress2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x1000 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x10 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Windows_NT x64 Checked jitstressregs0x80 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Windows_NT x64 Checked jitstressregs1 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Windows_NT x64 Checked jitstressregs2 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Windows_NT x64 Checked jitstressregs3 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Windows_NT x64 Checked jitstressregs4 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Windows_NT x64 Checked jitstressregs8 Queues Windows_NT x64 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnoavx Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Windows_NT x64 Checked jitx86hwintrinsicnosimd Queues Windows_NT x64 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Windows_NT x64 Checked minopts Queues Windows_NT x64 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Windows_NT x64 Checked r2r_gcstress15 Queues Windows_NT x64 Checked R2R gcstress15 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitforcerelocs Queues Windows_NT x64 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitminopts Queues Windows_NT x64 Checked R2R jitminopts Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstress1 Queues Windows_NT x64 Checked R2R jitstress1 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstress2 Queues Windows_NT x64 Checked R2R jitstress2 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x1000 Queues Windows_NT x64 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x10 Queues Windows_NT x64 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs0x80 Queues Windows_NT x64 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs1 Queues Windows_NT x64 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs2 Queues Windows_NT x64 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs3 Queues Windows_NT x64 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs4 Queues Windows_NT x64 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test Windows_NT x64 Checked r2r_jitstressregs8 Queues Windows_NT x64 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test Windows_NT x64 Checked tailcallstress Queues Windows_NT x64 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Windows_NT x64 Checked tieredcompilation Queues Windows_NT x64 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x64 Checked zapdisable Queues Windows_NT x64 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_baseline Queues Windows_NT x86_arm_altjit Checked corefx_baseline
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstress1 Queues Windows_NT x86_arm_altjit Checked corefx_jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstress2 Queues Windows_NT x86_arm_altjit Checked corefx_jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked corefx_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_minopts Queues Windows_NT x86_arm_altjit Checked corefx_minopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked corefx_tieredcompilation Queues Windows_NT x86_arm_altjit Checked corefx_tieredcompilation
@dotnet-bot test Windows_NT x86_arm_altjit Checked forcerelocs Queues Windows_NT x86_arm_altjit Checked forcerelocs
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitincompletehwintrinsic Queues Windows_NT x86_arm_altjit Checked jitincompletehwintrinsic
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitnosimd Queues Windows_NT x86_arm_altjit Checked jitnosimd
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitnox86hwintrinsic Queues Windows_NT x86_arm_altjit Checked jitnox86hwintrinsic
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitsse2only Queues Windows_NT x86_arm_altjit Checked jitsse2only
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress1 Queues Windows_NT x86_arm_altjit Checked jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked jitstress2_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstress2 Queues Windows_NT x86_arm_altjit Checked jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs1 Queues Windows_NT x86_arm_altjit Checked jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs2 Queues Windows_NT x86_arm_altjit Checked jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs3 Queues Windows_NT x86_arm_altjit Checked jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs4 Queues Windows_NT x86_arm_altjit Checked jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitstressregs8 Queues Windows_NT x86_arm_altjit Checked jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx2
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnoavx
@dotnet-bot test Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnosimd Queues Windows_NT x86_arm_altjit Checked jitx86hwintrinsicnosimd
@dotnet-bot test Windows_NT x86_arm_altjit Checked minopts Queues Windows_NT x86_arm_altjit Checked minopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitforcerelocs Queues Windows_NT x86_arm_altjit Checked r2r_jitforcerelocs
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitminopts Queues Windows_NT x86_arm_altjit Checked r2r_jitminopts
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstress1 Queues Windows_NT x86_arm_altjit Checked r2r_jitstress1
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstress2 Queues Windows_NT x86_arm_altjit Checked r2r_jitstress2
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x1000 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x1000
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x10 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x10
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x80 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs0x80
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs1 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs1
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs2 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs2
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs3 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs3
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs4 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs4
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r_jitstressregs8 Queues Windows_NT x86_arm_altjit Checked r2r_jitstressregs8
@dotnet-bot test Windows_NT x86_arm_altjit Checked tailcallstress Queues Windows_NT x86_arm_altjit Checked tailcallstress
@dotnet-bot test Windows_NT x86_arm_altjit Checked tieredcompilation Queues Windows_NT x86_arm_altjit Checked tieredcompilation
@dotnet-bot test Windows_NT x86 Checked corefx_baseline Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStress=1)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStress=2)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked corefx_jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked corefx_minopts Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx JITMinOpts=1)
@dotnet-bot test Windows_NT x86 Checked corefx_tieredcompilation Queues Windows_NT x86 Checked Build and Test (Jit - CoreFx EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x86 Checked forcerelocs Queues Windows_NT x86 Checked Build and Test (Jit - ForceRelocs=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0x3 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0x3)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JitStress=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JitStress=2)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_minopts_heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC JITMinOpts=1 HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable_heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable_jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0 JitStress=2)
@dotnet-bot test Windows_NT x86 Checked gcstress0xc_zapdisable Queues Windows_NT x86 Checked Build and Test (Jit - GCStress=0xC ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Windows_NT x86 Checked heapverify1 Queues Windows_NT x86 Checked Build and Test (Jit - HeapVerify=1)
@dotnet-bot test Windows_NT x86 Checked jitincompletehwintrinsic Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1)
@dotnet-bot test Windows_NT x86 Checked jitnosimd Queues Windows_NT x86 Checked Build and Test (Jit - FeatureSIMD=0)
@dotnet-bot test Windows_NT x86 Checked jitnox86hwintrinsic Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableSSE=0 EnableSSE2=0 EnableSSE3=0 EnableSSSE3=0 EnableSSE41=0 EnableSSE42=0 EnableAVX=0 EnableAVX2=0 EnableAES=0 EnableBMI1=0 EnableBMI2=0 EnableFMA=0 EnableLZCNT=0 EnablePCLMULQDQ=0 EnablePOPCNT=0)
@dotnet-bot test Windows_NT x86 Checked jitsse2only Queues Windows_NT x86 Checked Build and Test (Jit - EnableAVX=0 EnableSSE3_4=0)
@dotnet-bot test Windows_NT x86 Checked jitstress1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=1)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked jitstress2_jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2 JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked jitstress2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStress=2)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x1000 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x1000)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x10 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x10)
@dotnet-bot test Windows_NT x86 Checked jitstressregs0x80 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=0x80)
@dotnet-bot test Windows_NT x86 Checked jitstressregs1 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=1)
@dotnet-bot test Windows_NT x86 Checked jitstressregs2 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=2)
@dotnet-bot test Windows_NT x86 Checked jitstressregs3 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=3)
@dotnet-bot test Windows_NT x86 Checked jitstressregs4 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=4)
@dotnet-bot test Windows_NT x86 Checked jitstressregs8 Queues Windows_NT x86 Checked Build and Test (Jit - JitStressRegs=8)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnoavx2 Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX2=0)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnoavx Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 EnableAVX=0)
@dotnet-bot test Windows_NT x86 Checked jitx86hwintrinsicnosimd Queues Windows_NT x86 Checked Build and Test (Jit - EnableIncompleteISAClass=1 FeatureSIMD=0)
@dotnet-bot test Windows_NT x86 Checked minopts Queues Windows_NT x86 Checked Build and Test (Jit - JITMinOpts=1)
@dotnet-bot test Windows_NT x86 Checked r2r_gcstress15 Queues Windows_NT x86 Checked R2R gcstress15 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitforcerelocs Queues Windows_NT x86 Checked R2R jitforcerelocs Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitminopts Queues Windows_NT x86 Checked R2R jitminopts Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstress1 Queues Windows_NT x86 Checked R2R jitstress1 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstress2 Queues Windows_NT x86 Checked R2R jitstress2 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x1000 Queues Windows_NT x86 Checked R2R jitstressregs0x1000 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x10 Queues Windows_NT x86 Checked R2R jitstressregs0x10 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs0x80 Queues Windows_NT x86 Checked R2R jitstressregs0x80 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs1 Queues Windows_NT x86 Checked R2R jitstressregs1 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs2 Queues Windows_NT x86 Checked R2R jitstressregs2 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs3 Queues Windows_NT x86 Checked R2R jitstressregs3 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs4 Queues Windows_NT x86 Checked R2R jitstressregs4 Build & Test
@dotnet-bot test Windows_NT x86 Checked r2r_jitstressregs8 Queues Windows_NT x86 Checked R2R jitstressregs8 Build & Test
@dotnet-bot test Windows_NT x86 Checked tailcallstress Queues Windows_NT x86 Checked Build and Test (Jit - TailcallStress=1)
@dotnet-bot test Windows_NT x86 Checked tieredcompilation Queues Windows_NT x86 Checked Build and Test (Jit - EXPERIMENTAL_TieredCompilation=1)
@dotnet-bot test Windows_NT x86 Checked zapdisable Queues Windows_NT x86 Checked Build and Test (Jit - ZapDisable=1 ReadyToRun=0)
@dotnet-bot test Debian8.4 x64 Queues Debian8.4 x64 Release Build
@dotnet-bot test Fedora24 Queues Fedora24 x64 Release Build
@dotnet-bot test RHEL7.2 x64 Queues RHEL7.2 x64 Release Build
@dotnet-bot test Ubuntu16.04 x64 Queues Ubuntu16.04 x64 Release Build
@dotnet-bot test Ubuntu16.10 Queues Ubuntu16.10 x64 Release Build
@dotnet-bot test Windows_NT x64_arm64_altjit Checked Build and Test Queues Windows_NT x64_arm64_altjit Checked Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Checked r2r Queues Windows_NT x64_arm64_altjit Checked r2r
@dotnet-bot test Windows_NT x64_arm64_altjit Debug Build and Test Queues Windows_NT x64_arm64_altjit Debug Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Debug r2r Queues Windows_NT x64_arm64_altjit Debug r2r
@dotnet-bot test Windows_NT x64_arm64_altjit Release Build and Test Queues Windows_NT x64_arm64_altjit Release Build and Test
@dotnet-bot test Windows_NT x64_arm64_altjit Release r2r Queues Windows_NT x64_arm64_altjit Release r2r
@dotnet-bot test CentOS7.1 x64 Checked r2r Queues CentOS7.1 x64 Checked R2R Build & Test
@dotnet-bot test OSX10.12 Checked gc_reliability_framework Queues OSX10.12 x64 Checked GC Reliability Framework
@dotnet-bot test OSX10.12 x64 Checked r2r Queues OSX10.12 x64 Checked R2R Build and Test
@dotnet-bot test OSX10.12 Checked standalone_gc Queues OSX10.12 x64 Checked Standalone GC
@dotnet-bot test Ubuntu Checked gc_reliability_framework Queues Ubuntu x64 Checked GC Reliability Framework
@dotnet-bot test Ubuntu x64 Checked r2r Queues Ubuntu x64 Checked R2R Build and Test
@dotnet-bot test Ubuntu Checked standalone_gc Queues Ubuntu x64 Checked Standalone GC
@dotnet-bot test Windows_NT Checked gc_reliability_framework Queues Windows_NT x64 Checked GC Reliability Framework
@dotnet-bot test Windows_NT x64 Checked r2r Queues Windows_NT x64 Checked R2R Build & Test
@dotnet-bot test Windows_NT Checked standalone_gc Queues Windows_NT x64 Checked Standalone GC
@dotnet-bot test CentOS7.1 x64 Release r2r Queues CentOS7.1 x64 Release R2R Build & Test
@dotnet-bot test OSX10.12 Release gc_reliability_framework Queues OSX10.12 x64 Release GC Reliability Framework
@dotnet-bot test OSX10.12 Release gcsimulator Queues OSX10.12 x64 Release GC Simulator
@dotnet-bot test OSX10.12 ilrt Queues OSX10.12 x64 Release IL RoundTrip Build and Test
@dotnet-bot test OSX10.12 Release longgc Queues OSX10.12 x64 Release Long-Running GC Build & Test
@dotnet-bot test OSX10.12 x64 Release r2r Queues OSX10.12 x64 Release R2R Build and Test
@dotnet-bot test OSX10.12 Release standalone_gc Queues OSX10.12 x64 Release Standalone GC
@dotnet-bot test Ubuntu Release gc_reliability_framework Queues Ubuntu x64 Release GC Reliability Framework
@dotnet-bot test Ubuntu Release gcsimulator Queues Ubuntu x64 Release GC Simulator
@dotnet-bot test Ubuntu ilrt Queues Ubuntu x64 Release IL RoundTrip Build and Test
@dotnet-bot test Ubuntu Release longgc Queues Ubuntu x64 Release Long-Running GC Build & Test
@dotnet-bot test Ubuntu x64 Release r2r Queues Ubuntu x64 Release R2R Build and Test
@dotnet-bot test Ubuntu Release standalone_gc Queues Ubuntu x64 Release Standalone GC
@dotnet-bot test Windows_NT Release gc_reliability_framework Queues Windows_NT x64 Release GC Reliability Framework
@dotnet-bot test Windows_NT Release gcsimulator Queues Windows_NT x64 Release GC Simulator
@dotnet-bot test Windows_NT ilrt Queues Windows_NT x64 Release IL RoundTrip Build and Test
@dotnet-bot test Windows_NT Release longgc Queues Windows_NT x64 Release Long-Running GC Build & Test
@dotnet-bot test Windows_NT x64 Release r2r Queues Windows_NT x64 Release R2R Build & Test
@dotnet-bot test Windows_NT Release standalone_gc Queues Windows_NT x64 Release Standalone GC
@dotnet-bot test Windows_NT x86_arm_altjit Checked Build and Test Queues Windows_NT x86_arm_altjit Checked Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Checked r2r Queues Windows_NT x86_arm_altjit Checked r2r
@dotnet-bot test Windows_NT x86_arm_altjit Debug Build and Test Queues Windows_NT x86_arm_altjit Debug Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Debug r2r Queues Windows_NT x86_arm_altjit Debug r2r
@dotnet-bot test Windows_NT x86_arm_altjit Release Build and Test Queues Windows_NT x86_arm_altjit Release Build and Test
@dotnet-bot test Windows_NT x86_arm_altjit Release r2r Queues Windows_NT x86_arm_altjit Release r2r
@dotnet-bot test Ubuntu x86 Checked Queues Ubuntu x86 Checked Build
@dotnet-bot test Windows_NT x86 Checked Build and Test Queues Windows_NT x86 Checked Build and Test
@dotnet-bot test Windows_NT x86 Checked r2r Queues Windows_NT x86 Checked R2R Build & Test
@dotnet-bot test Ubuntu x86 Debug Queues Ubuntu x86 Debug Build
@dotnet-bot test Ubuntu x86 Release Queues Ubuntu x86 Release Build
@dotnet-bot test Windows_NT x86 Release r2r Queues Windows_NT x86 Release R2R Build & Test

Have a nice day!

@dotnet-bot
Copy link

Welcome to the dotnet/coreclr Perf help

The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR

The following commands are valid for all PRs and repositories.

Click to expand
Comment Phrase Action
@dotnet-bot test this please Re-run all legs. Use sparingly
@dotnet-bot test ci please Generates (but does not run) jobs based on changes to the groovy job definitions in this branch
@dotnet-bot help Print this help message

The following optional jobs are available in PRs against dotnet/coreclr:master.

Click to expand
Comment Phrase Job Launched
@dotnet-bot test Windows_NT x64 illink Queues Windows_NT x64 full_opt ryujit IlLink Tests
@dotnet-bot test linux perf flow Queues Linux Perf Test Flow
@dotnet-bot test Windows_NT x64 perf Queues Windows_NT x64 full_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x64 min_opts perf Queues Windows_NT x64 min_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x86 perf Queues Windows_NT x86 full_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x86 min_opts perf Queues Windows_NT x86 min_opt ryujit CoreCLR Perf Tests
@dotnet-bot test Windows_NT x64 perf scenarios Queues Windows_NT x64 full_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x64 min_opts perf scenarios Queues Windows_NT x64 min_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x64 perf scenarios Queues Windows_NT x64 tiered ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 perf scenarios Queues Windows_NT x86 full_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 min_opts perf scenarios Queues Windows_NT x86 min_opt ryujit Performance Scenarios Tests
@dotnet-bot test Windows_NT x86 perf scenarios Queues Windows_NT x86 tiered ryujit Performance Scenarios Tests
@dotnet-bot test linux throughput flow Queues Linux Throughput Perf Test Flow
@dotnet-bot test Windows_NT x64 throughput Queues Windows_NT x64 full_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 nopgo throughput Queues Windows_NT x64 full_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 min_opts throughput Queues Windows_NT x64 min_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x64 min_opts nopgo throughput Queues Windows_NT x64 min_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 throughput Queues Windows_NT x86 full_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 nopgo throughput Queues Windows_NT x86 full_opt ryujit pgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 min_opts throughput Queues Windows_NT x86 min_opt ryujit nopgo CoreCLR Throughput Perf Tests
@dotnet-bot test Windows_NT x86 min_opts nopgo throughput Queues Windows_NT x86 min_opt ryujit pgo CoreCLR Throughput Perf Tests

Have a nice day!

@CarolEidt CarolEidt added this to the 2.2.0 milestone Apr 12, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
6 participants