*/
//------------------------------------------------------------------------
+// genInstrWithConstant: we will typically generate one instruction
+//
+// ins reg1, reg2, imm
+//
+// However the imm might not fit as a directly encodable immediate,
+// when it doesn't fit we generate extra instruction(s) that sets up
+// the 'regTmp' with the proper immediate value.
+//
+// mov regTmp, imm
+// ins reg1, reg2, regTmp
+//
+// Arguments:
+// ins - instruction
+// attr - operation size and GC attribute
+// reg1, reg2 - first and second register operands
+// imm - immediate value (third operand when it fits)
+// tmpReg - temp register to use when the 'imm' doesn't fit
+// inUnwindRegion - true if we are in a prolog/epilog region with unwind codes
+//
+// Return Value:
+// returns true if the immediate was too large and tmpReg was used and modified.
+//
+bool CodeGen::genInstrWithConstant(instruction ins,
+ emitAttr attr,
+ regNumber reg1,
+ regNumber reg2,
+ ssize_t imm,
+ regNumber tmpReg,
+ bool inUnwindRegion /* = false */)
+{
+ bool immFitsInIns = false;
+ emitAttr size = EA_SIZE(attr);
+
+ // reg1 is usually a dest register
+ // reg2 is always source register
+ assert(tmpReg != reg2); // regTmp can not match any source register
+
+ switch (ins)
+ {
+ case INS_add:
+ case INS_sub:
+ if (imm < 0)
+ {
+ imm = -imm;
+ ins = (ins == INS_add) ? INS_sub : INS_add;
+ }
+ immFitsInIns = emitter::emitIns_valid_imm_for_add(imm, size);
+ break;
+
+ case INS_strb:
+ case INS_strh:
+ case INS_str:
+ // reg1 is a source register for store instructions
+ assert(tmpReg != reg1); // regTmp can not match any source register
+ immFitsInIns = emitter::emitIns_valid_imm_for_ldst_offset(imm, size);
+ break;
+
+ case INS_ldrsb:
+ case INS_ldrsh:
+ case INS_ldrsw:
+ case INS_ldrb:
+ case INS_ldrh:
+ case INS_ldr:
+ immFitsInIns = emitter::emitIns_valid_imm_for_ldst_offset(imm, size);
+ break;
+
+ default:
+ assert(!"Unexpected instruction in genInstrWithConstant");
+ break;
+ }
+
+ if (immFitsInIns)
+ {
+ // generate a single instruction that encodes the immediate directly
+ getEmitter()->emitIns_R_R_I(ins, attr, reg1, reg2, imm);
+ }
+ else
+ {
+ // caller can specify REG_NA for tmpReg, when it "knows" that the immediate will always fit
+ assert(tmpReg != REG_NA);
+
+ // generate two or more instructions
+
+ // first we load the immediate into tmpReg
+ instGen_Set_Reg_To_Imm(size, tmpReg, imm);
+ regTracker.rsTrackRegTrash(tmpReg);
+
+ // when we are in an unwind code region
+ // we record the extra instructions using unwindPadding()
+ if (inUnwindRegion)
+ {
+ compiler->unwindPadding();
+ }
+
+ // generate the instruction using a three register encoding with the immediate in tmpReg
+ getEmitter()->emitIns_R_R_R(ins, attr, reg1, reg2, tmpReg);
+ }
+ return immFitsInIns;
+}
+
+//------------------------------------------------------------------------
// genStackPointerAdjustment: add a specified constant value to the stack pointer in either the prolog
// or the epilog. The unwind codes for the generated instructions are produced. An available temporary
// register is required to be specified, in case the constant is too large to encode in an "add"
void CodeGen::genStackPointerAdjustment(ssize_t spDelta, regNumber tmpReg, bool* pTmpRegIsZero)
{
- unsigned unwindSpDelta;
-
- if (emitter::emitIns_valid_imm_for_add(spDelta, EA_8BYTE))
- {
- getEmitter()->emitIns_R_R_I(INS_add, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, spDelta);
-
- unwindSpDelta = (unsigned)abs(spDelta);
- }
- else
+ // Even though INS_add is specified here, the encoder will choose either
+ // an INS_add or an INS_sub and encode the immediate as a positive value
+ //
+ if (genInstrWithConstant(INS_add, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, spDelta, tmpReg, true))
{
- bool adjustmentIsNegative = (spDelta < 0);
- spDelta = abs(spDelta);
- instGen_Set_Reg_To_Imm(EA_PTRSIZE, tmpReg, spDelta);
if (pTmpRegIsZero != nullptr)
{
*pTmpRegIsZero = false;
}
- compiler->unwindPadding();
-
- getEmitter()->emitIns_R_R_R(adjustmentIsNegative ? INS_sub : INS_add, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, tmpReg);
-
- unwindSpDelta = (unsigned)spDelta;
}
// spDelta is negative in the prolog, positive in the epilog, but we always tell the unwind codes the positive value.
+ ssize_t spDeltaAbs = abs(spDelta);
+ unsigned unwindSpDelta = (unsigned) spDeltaAbs;
+ assert((ssize_t)unwindSpDelta == spDeltaAbs); // make sure that it fits in a unsigned
+
compiler->unwindAllocStack(unwindSpDelta);
}
needToSaveRegs = false;
}
- else
+ else // (spDelta < -512))
{
// We need to do SP adjustment separately from the store; we can't fold in a pre-indexed addressing and the non-zero offset.
+
+ // generate sub SP,SP,imm
genStackPointerAdjustment(spDelta, tmpReg, pTmpRegIsZero);
}
}
assert(spOffset != 0);
assert(spOffset == REGSIZE_BYTES);
+ // generate sub SP,SP,imm
genStackPointerAdjustment(spDelta, tmpReg, pTmpRegIsZero);
}
getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, reg1, reg2, REG_SPBASE, spDelta, INS_OPTS_POST_INDEX);
compiler->unwindSaveRegPairPreindexed(reg1, reg2, -spDelta);
}
- else
+ else // (spDelta > 504))
{
// Can't fold in the SP change; need to use a separate ADD instruction.
getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, reg1, reg2, REG_SPBASE, spOffset);
compiler->unwindSaveRegPair(reg1, reg2, spOffset);
+ // generate add SP,SP,imm
genStackPointerAdjustment(spDelta, tmpReg, pTmpRegIsZero);
}
}
if (spDelta != 0)
{
assert(spOffset != 0);
+
+ // generate add SP,SP,imm
genStackPointerAdjustment(spDelta, tmpReg, pTmpRegIsZero);
}
}
if (genFuncletInfo.fiFrameType == 1)
{
- getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, genFuncletInfo.fiSpDelta1, INS_OPTS_PRE_INDEX);
+ getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR,
+ REG_SPBASE, genFuncletInfo.fiSpDelta1, INS_OPTS_PRE_INDEX);
compiler->unwindSaveRegPairPreindexed(REG_FP, REG_LR, genFuncletInfo.fiSpDelta1);
assert(genFuncletInfo.fiSpDelta2 == 0);
}
else if (genFuncletInfo.fiFrameType == 2)
{
- getEmitter()->emitIns_R_R_I(INS_sub, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, -genFuncletInfo.fiSpDelta1);
- compiler->unwindAllocStack(-genFuncletInfo.fiSpDelta1);
+ // fiFrameType==2 constraints:
+ assert(genFuncletInfo.fiSpDelta1 < 0);
+ assert(genFuncletInfo.fiSpDelta1 >= -512);
+
+ // generate sub SP,SP,imm
+ genStackPointerAdjustment(genFuncletInfo.fiSpDelta1, REG_NA, nullptr);
assert(genFuncletInfo.fiSpDelta2 == 0);
- getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, genFuncletInfo.fiSP_to_FPLR_save_delta);
+ getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR,
+ REG_SPBASE, genFuncletInfo.fiSP_to_FPLR_save_delta);
compiler->unwindSaveRegPair(REG_FP, REG_LR, genFuncletInfo.fiSP_to_FPLR_save_delta);
}
else
{
assert(genFuncletInfo.fiFrameType == 3);
-
- getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, genFuncletInfo.fiSpDelta1, INS_OPTS_PRE_INDEX);
+ getEmitter()->emitIns_R_R_R_I(INS_stp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE,
+ genFuncletInfo.fiSpDelta1, INS_OPTS_PRE_INDEX);
compiler->unwindSaveRegPairPreindexed(REG_FP, REG_LR, genFuncletInfo.fiSpDelta1);
lowestCalleeSavedOffset += genFuncletInfo.fiSpDelta2; // We haven't done the second adjustment of SP yet.
if (genFuncletInfo.fiFrameType == 3)
{
- assert(genFuncletInfo.fiSpDelta2 != 0);
- getEmitter()->emitIns_R_R_I(INS_sub, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, -genFuncletInfo.fiSpDelta2);
- compiler->unwindAllocStack(-genFuncletInfo.fiSpDelta2);
+ // Note that genFuncletInfo.fiSpDelta2 is always a negative value
+ assert(genFuncletInfo.fiSpDelta2 < 0);
+
+ // generate sub SP,SP,imm
+ genStackPointerAdjustment(genFuncletInfo.fiSpDelta2, REG_R2, nullptr);
}
// This is the end of the OS-reported prolog for purposes of unwinding
if (isFilter)
{
// This is the first block of a filter
+ // Note that register x1 = CallerSP of the containing function
+ // X1 is overwritten by the first Load (new callerSP)
+ // X2 is scratch when we have a large constant offset
- getEmitter()->emitIns_R_R_I(ins_Load(TYP_I_IMPL), EA_PTRSIZE, REG_R1, REG_R1, genFuncletInfo.fiCallerSP_to_PSP_slot_delta);
+ // Load the CallerSP of the main function (stored in the PSP of the dynamically containing funclet or function)
+ genInstrWithConstant(ins_Load(TYP_I_IMPL), EA_PTRSIZE, REG_R1, REG_R1, genFuncletInfo.fiCallerSP_to_PSP_slot_delta, REG_R2, false);
regTracker.rsTrackRegTrash(REG_R1);
- getEmitter()->emitIns_R_R_I(ins_Store(TYP_I_IMPL), EA_PTRSIZE, REG_R1, REG_SPBASE, genFuncletInfo.fiSP_to_PSP_slot_delta);
- getEmitter()->emitIns_R_R_I(INS_add, EA_PTRSIZE, REG_FPBASE, REG_R1, genFuncletInfo.fiFunction_CallerSP_to_FP_delta);
+
+ // Store the PSP value (aka CallerSP)
+ genInstrWithConstant(ins_Store(TYP_I_IMPL), EA_PTRSIZE, REG_R1, REG_SPBASE, genFuncletInfo.fiSP_to_PSP_slot_delta, REG_R2, false);
+
+ // re-establish the frame pointer
+ genInstrWithConstant(INS_add, EA_PTRSIZE, REG_FPBASE, REG_R1, genFuncletInfo.fiFunction_CallerSP_to_FP_delta, REG_R2, false);
}
- else
+ else // This is a non-filter funclet
{
- // This is a non-filter funclet
- getEmitter()->emitIns_R_R_Imm(INS_add, EA_PTRSIZE, REG_R3, REG_FPBASE, -genFuncletInfo.fiFunction_CallerSP_to_FP_delta);
+ // X3 is scratch, X2 can also become scratch
+
+ // compute the CallerSP, given the frame pointer. x3 is scratch.
+ genInstrWithConstant(INS_add, EA_PTRSIZE, REG_R3, REG_FPBASE, -genFuncletInfo.fiFunction_CallerSP_to_FP_delta, REG_R2, false);
regTracker.rsTrackRegTrash(REG_R3);
- getEmitter()->emitIns_R_R_I(ins_Store(TYP_I_IMPL), EA_PTRSIZE, REG_R3, REG_SPBASE, genFuncletInfo.fiSP_to_PSP_slot_delta);
+
+ genInstrWithConstant(ins_Store(TYP_I_IMPL), EA_PTRSIZE, REG_R3, REG_SPBASE, genFuncletInfo.fiSP_to_PSP_slot_delta, REG_R2, false);
}
}
if (genFuncletInfo.fiFrameType == 3)
{
- assert(genFuncletInfo.fiSpDelta2 != 0);
- getEmitter()->emitIns_R_R_I(INS_add, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, -genFuncletInfo.fiSpDelta2);
- compiler->unwindAllocStack(-genFuncletInfo.fiSpDelta2);
+ // Note that genFuncletInfo.fiSpDelta2 is always a negative value
+ assert(genFuncletInfo.fiSpDelta2 < 0);
+
+ // generate add SP,SP,imm
+ genStackPointerAdjustment(-genFuncletInfo.fiSpDelta2, REG_R2, nullptr);
lowestCalleeSavedOffset += genFuncletInfo.fiSpDelta2;
}
if (genFuncletInfo.fiFrameType == 1)
{
- getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, -genFuncletInfo.fiSpDelta1, INS_OPTS_POST_INDEX);
+ getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR,
+ REG_SPBASE, -genFuncletInfo.fiSpDelta1, INS_OPTS_POST_INDEX);
compiler->unwindSaveRegPairPreindexed(REG_FP, REG_LR, genFuncletInfo.fiSpDelta1);
assert(genFuncletInfo.fiSpDelta2 == 0);
}
else if (genFuncletInfo.fiFrameType == 2)
{
- getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, genFuncletInfo.fiSP_to_FPLR_save_delta);
+ getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR,
+ REG_SPBASE, genFuncletInfo.fiSP_to_FPLR_save_delta);
compiler->unwindSaveRegPair(REG_FP, REG_LR, genFuncletInfo.fiSP_to_FPLR_save_delta);
- getEmitter()->emitIns_R_R_I(INS_add, EA_PTRSIZE, REG_SPBASE, REG_SPBASE, -genFuncletInfo.fiSpDelta1);
- compiler->unwindAllocStack(-genFuncletInfo.fiSpDelta1);
+ // fiFrameType==2 constraints:
+ assert(genFuncletInfo.fiSpDelta1 < 0);
+ assert(genFuncletInfo.fiSpDelta1 >= -512);
+
+ // generate add SP,SP,imm
+ genStackPointerAdjustment(-genFuncletInfo.fiSpDelta1, REG_NA, nullptr);
assert(genFuncletInfo.fiSpDelta2 == 0);
}
{
assert(genFuncletInfo.fiFrameType == 3);
- getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR, REG_SPBASE, -genFuncletInfo.fiSpDelta1, INS_OPTS_POST_INDEX);
+ getEmitter()->emitIns_R_R_R_I(INS_ldp, EA_PTRSIZE, REG_FP, REG_LR,
+ REG_SPBASE, -genFuncletInfo.fiSpDelta1, INS_OPTS_POST_INDEX);
compiler->unwindSaveRegPairPreindexed(REG_FP, REG_LR, genFuncletInfo.fiSpDelta1);
}
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b15244.exe_4866]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244\b15244.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[struct5_5.exe_3386]
RelativePath=JIT\jit64\gc\misc\struct5_5\struct5_5.exe
WorkingDir=JIT\jit64\gc\misc\struct5_5
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[exploit.exe_5785]
RelativePath=Loader\classloader\methodoverriding\regressions\549411\exploit\exploit.exe
WorkingDir=Loader\classloader\methodoverriding\regressions\549411\exploit
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[parameterattributesin.exe_2006]
RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn\ParameterAttributesIn.exe
WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS;ISSUE_2925
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
[b14770.exe_4861]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770\b14770.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[cond32_il_d.exe_4456]
RelativePath=JIT\Methodical\NaN\cond32_il_d\cond32_il_d.exe
WorkingDir=JIT\Methodical\NaN\cond32_il_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[operandtypeinlinetype.exe_1907]
RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType\OperandTypeInlineType.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[charminvalue.exe_468]
RelativePath=CoreMangLib\cti\system\char\CharMinValue\CharMinValue.exe
WorkingDir=CoreMangLib\cti\system\char\CharMinValue
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[try-catch-struct08.exe_36]
RelativePath=baseservices\exceptions\generics\try-catch-struct08\try-catch-struct08.exe
WorkingDir=baseservices\exceptions\generics\try-catch-struct08
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[_speed_rels_addsub.exe_4122]
RelativePath=JIT\Methodical\int64\signed\_speed_rels_addsub\_speed_rels_addsub.exe
WorkingDir=JIT\Methodical\int64\signed\_speed_rels_addsub
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[nested-try-catch02.exe_14]
RelativePath=baseservices\exceptions\generics\nested-try-catch02\nested-try-catch02.exe
WorkingDir=baseservices\exceptions\generics\nested-try-catch02
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[versionequals2.exe_2550]
RelativePath=CoreMangLib\cti\system\version\VersionEquals2\VersionEquals2.exe
WorkingDir=CoreMangLib\cti\system\version\VersionEquals2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;DBG_PASS
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
[listienumerablegetenumerator.exe_636]
RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator\ListIEnumerableGetEnumerator.exe
WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[compareexchangelong_3.exe_160]
RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3\CompareExchangeLong_3.exe
WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[arrgetlen_il_r.exe_2848]
RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_r\arrgetlen_il_r.exe
WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_r
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[_il_relbinop.exe_4069]
RelativePath=JIT\Methodical\int64\misc\_il_relbinop\_il_relbinop.exe
WorkingDir=JIT\Methodical\int64\misc\_il_relbinop
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[_il_reldeep_array_nz.exe_4574]
RelativePath=JIT\Methodical\tailcall\_il_reldeep_array_nz\_il_reldeep_array_nz.exe
WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array_nz
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[unicodeencodinggetbytes2.exe_2337]
RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2\UnicodeEncodingGetBytes2.exe
WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[enumeratorcurrent.exe_671]
RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent\EnumeratorCurrent.exe
WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[arraysort14.exe_333]
RelativePath=CoreMangLib\cti\system\array\ArraySort14\ArraySort14.exe
WorkingDir=CoreMangLib\cti\system\array\ArraySort14
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[opcodesldind_ref.exe_1794]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref\OpCodesLdind_Ref.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS;ISSUE_2925
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
[delegstaticftn.exe_4735]
RelativePath=JIT\opt\Inline\DelegStaticFtn\DelegStaticFtn.exe
WorkingDir=JIT\opt\Inline\DelegStaticFtn
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[dev10_889822.exe_5798]
RelativePath=Loader\classloader\regressions\dev10_889822\dev10_889822\dev10_889822.exe
WorkingDir=Loader\classloader\regressions\dev10_889822\dev10_889822
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[_speed_dbgval_ctor.exe_4223]
RelativePath=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor\_speed_dbgval_ctor.exe
WorkingDir=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;ISSUE_2925
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
[b223932.exe_5501]
RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932\b223932.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[encodinggetbytecount2.exe_2269]
RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2\EncodingGetByteCount2.exe
WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[textelementenumeratorgettextelement.exe_1218]
RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement\TextElementEnumeratorGetTextElement.exe
WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[lclfldrem_cs_ro.exe_2875]
RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro\lclfldrem_cs_ro.exe
WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[invalidoperationexceptionctor1.exe_1387]
RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1\InvalidOperationExceptionctor1.exe
WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[converttoint16_18.exe_782]
RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_18\ConvertToInt16_18.exe
WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_18
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[_reltailjump_cs.exe_3683]
RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_cs\_reltailjump_cs.exe
WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_cs
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[singlegethashcode.exe_2155]
RelativePath=CoreMangLib\cti\system\single\SingleGetHashCode\SingleGetHashCode.exe
WorkingDir=CoreMangLib\cti\system\single\SingleGetHashCode
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[b14369.exe_5706]
RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369\b14369.exe
WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[_il_dbgcatchfault_jmp.exe_4290]
RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp\_il_dbgcatchfault_jmp.exe
WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[uint64parse1.exe_2527]
RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse1\UInt64Parse1.exe
WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[gc_ctor_il_d.exe_4594]
RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_d\gc_ctor_il_d.exe
WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS;ISSUE_2925
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
[interlockedaddlong_3.exe_157]
RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_3\InterlockedAddLong_3.exe
WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_3
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[arraycreateinstance1b.exe_281]
RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1b\ArrayCreateInstance1b.exe
WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1b
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[opcodesthrow.exe_1883]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow\OpCodesThrow.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING
[_dbgldc_mulovf.exe_4139]
RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mulovf\_dbgldc_mulovf.exe
WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mulovf
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[i8flat_cs_do.exe_3640]
RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_do\i8flat_cs_do.exe
WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_do
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[threadstatic01.exe_5873]
RelativePath=Threading\ThreadStatics\ThreadStatic01\ThreadStatic01.exe
WorkingDir=Threading\ThreadStatics\ThreadStatic01
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[attributector.exe_2053]
RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor\AttributeCtor.exe
WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[converttodecimal16.exe_754]
RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal16\ConvertToDecimal16.exe
WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal16
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[dictionaryidictionaryisreadonly2.exe_518]
RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2\DictionaryIDictionaryIsReadOnly2.exe
WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[atpactor.exe_2055]
RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor\ATPACtor.exe
WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[test.exe_5813]
RelativePath=Regressions\assemblyref\test\test.exe
WorkingDir=Regressions\assemblyref\test
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[datetimespecifykind.exe_953]
RelativePath=CoreMangLib\cti\system\datetime\DateTimeSpecifyKind\DateTimeSpecifyKind.exe
WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSpecifyKind
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;ISSUE_3104
[_speed_dbgjumps.exe_4631]
RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumps\_speed_dbgjumps.exe
WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumps
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[filemodecreatenew.exe_1418]
RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreateNew\FileModeCreateNew.exe
WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreateNew
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[r4rem_cs_do.exe_3846]
RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_do\r4rem_cs_do.exe
WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_do
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[b85317.exe_5669]
RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317\b85317.exe
WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[b05619.exe_5002]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619\b05619.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[b12263.exe_5691]
RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263\b12263.exe
WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[_il_dbgii1.exe_4267]
RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii1\_il_dbgii1.exe
WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[seq_funcptr_gc_r.exe_3964]
RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r\seq_funcptr_gc_r.exe
WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;ISSUE_2925
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
[arraytypemismatchexceptionctor1.exe_345]
RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1\ArrayTypeMismatchExceptionctor1.exe
WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[converttosbyte.exe_821]
RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte\ConvertToSByte.exe
WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[b140118.exe_5486]
RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118\b140118.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[parameterattributesretval.exe_2010]
RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval\ParameterAttributesRetval.exe
WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[instance_equalnull_struct01.exe_3224]
RelativePath=JIT\Generics\Fields\instance_equalnull_struct01\instance_equalnull_struct01.exe
WorkingDir=JIT\Generics\Fields\instance_equalnull_struct01
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[opcodesstind_i2.exe_1861]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2\OpCodesStind_I2.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[streamdispose2_psc.exe_1465]
RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC\StreamDispose2_PSC.exe
WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[test_csharp_base_3.exe_2750]
RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_3\Test_CSharp_Base_3.exe
WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_3
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b89409.exe_5447]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409\b89409.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[mul1_opt.exe_3522]
RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt\mul1_opt.exe
WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[typeattributesansiclass.exe_2021]
RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass\TypeAttributesAnsiClass.exe
WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_PASS
+Categories=RT;EXPECTED_PASS;UNWIND
[_dbgisinst_ldloc.exe_3697]
RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldloc\_dbgisinst_ldloc.exe
WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldloc
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_PASS;ISSUE_3032
[b14617.exe_5517]
RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617\b14617.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[ldfldahack.exe_5577]
RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack\LdfldaHack.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[b85316.exe_5436]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316\b85316.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[lt1.exe_2705]
RelativePath=JIT\CodeGenBringUpTests\Lt1\Lt1.exe
WorkingDir=JIT\CodeGenBringUpTests\Lt1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[int32iconvertibletodecimal.exe_1298]
RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal\Int32IConvertibleToDecimal.exe
WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[sbyte_cs_d.exe_4376]
RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d\sbyte_cs_d.exe
WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[_dbgiface1.exe_3741]
RelativePath=JIT\Methodical\casts\iface\_dbgiface1\_dbgiface1.exe
WorkingDir=JIT\Methodical\casts\iface\_dbgiface1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[decimalctor8.exe_986]
RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor8\DecimalCtor8.exe
WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor8
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[nullablector.exe_1562]
RelativePath=CoreMangLib\cti\system\nullable\NullableCtor\NullableCtor.exe
WorkingDir=CoreMangLib\cti\system\nullable\NullableCtor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[ulong_cs_ro.exe_4391]
RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro\ulong_cs_ro.exe
WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[arraywithfunc_o.exe_3535]
RelativePath=JIT\jit64\opt\rngchk\ArrayWithFunc_o\ArrayWithFunc_o.exe
WorkingDir=JIT\jit64\opt\rngchk\ArrayWithFunc_o
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[cgrecurseaaa_do.exe_3441]
RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do\CGRecurseAAA_do.exe
WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[stringconcat7.exe_2196]
RelativePath=CoreMangLib\cti\system\string\StringConcat7\StringConcat7.exe
WorkingDir=CoreMangLib\cti\system\string\StringConcat7
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[ldc_mul_ovf_u8.exe_3337]
RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8\ldc_mul_ovf_u8.exe
WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[_il_reli_vfld.exe_3903]
RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld\_il_reli_vfld.exe
WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;DBG_PASS
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
[_relthrow.exe_3762]
RelativePath=JIT\Methodical\casts\SEH\_relthrow\_relthrow.exe
WorkingDir=JIT\Methodical\casts\SEH\_relthrow
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;ISSUE_3104
[obsoleteattributemessage.exe_1587]
RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage\ObsoleteAttributeMessage.exe
WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[chartoupper1.exe_472]
RelativePath=CoreMangLib\cti\system\char\CharToUpper1\CharToUpper1.exe
WorkingDir=CoreMangLib\cti\system\char\CharToUpper1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_PASS
+Categories=RT;EXPECTED_PASS;UNWIND
[b18857.exe_5176]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857\b18857.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[_il_dbgptr.exe_3877]
RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr\_il_dbgptr.exe
WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[opcodesconv_r_un.exe_1730]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un\OpCodesConv_R_Un.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[arraysort1b.exe_334]
RelativePath=CoreMangLib\cti\system\array\ArraySort1b\ArraySort1b.exe
WorkingDir=CoreMangLib\cti\system\array\ArraySort1b
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[guidnewguid.exe_1271]
RelativePath=CoreMangLib\cti\system\guid\GuidNewGuid\GuidNewGuid.exe
WorkingDir=CoreMangLib\cti\system\guid\GuidNewGuid
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_il_dbgldobj_v.exe_4698]
RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V\_il_dbgldobj_V.exe
WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[int64_d.exe_3036]
RelativePath=JIT\Directed\shift\int64_d\int64_d.exe
WorkingDir=JIT\Directed\shift\int64_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[b158861.exe_5575]
RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861\b158861.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[comp32_il_r.exe_4453]
RelativePath=JIT\Methodical\NaN\comp32_il_r\comp32_il_r.exe
WorkingDir=JIT\Methodical\NaN\comp32_il_r
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[b57492.exe_5294]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492\b57492.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING
[inattributector.exe_2085]
RelativePath=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor\InAttributeCtor.exe
WorkingDir=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;DBG_PASS
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
[opcodesstelem_i2.exe_1852]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2\OpCodesStelem_I2.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[dbladd.exe_2616]
RelativePath=JIT\CodeGenBringUpTests\DblAdd\DblAdd.exe
WorkingDir=JIT\CodeGenBringUpTests\DblAdd
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[dictionaryidictionaryvalues.exe_529]
RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues\DictionaryIDictionaryValues.exe
WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[stringiconvertibletoint16.exe_2213]
RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt16\StringIConvertibleToInt16.exe
WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt16
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[classic.exe_4500]
RelativePath=JIT\Methodical\nonvirtualcall\classic\classic.exe
WorkingDir=JIT\Methodical\nonvirtualcall\classic
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;DBG_PASS
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
[b59947.exe_5317]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947\b59947.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[b48248.exe_5159]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248\b48248.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[_relexplicit3.exe_3995]
RelativePath=JIT\Methodical\explicit\misc\_relexplicit3\_relexplicit3.exe
WorkingDir=JIT\Methodical\explicit\misc\_relexplicit3
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[sbyteiconvertibletoint16.exe_2135]
RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16\SByteIConvertibleToInt16.exe
WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[gthread07.exe_122]
RelativePath=baseservices\threading\generics\threadstart\GThread07\GThread07.exe
WorkingDir=baseservices\threading\generics\threadstart\GThread07
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[decoderctor.exe_2258]
RelativePath=CoreMangLib\cti\system\text\decoder\DecoderCtor\DecoderCtor.exe
WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderCtor
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;ISSUE_2925
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
[sp1.exe_3088]
RelativePath=JIT\Directed\StructPromote\SP1\SP1.exe
WorkingDir=JIT\Directed\StructPromote\SP1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[typeattributesclasssemanticsmask.exe_2026]
RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask\TypeAttributesClassSemanticsMask.exe
WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[upgrader.exe_243]
RelativePath=baseservices\threading\readerwriterlockslim\Upgrader\Upgrader.exe
WorkingDir=baseservices\threading\readerwriterlockslim\Upgrader
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[missingmemberexceptionctor3.exe_1544]
RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3\MissingMemberExceptionCtor3.exe
WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[booleaniconvertibletosbyte.exe_387]
RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte\BooleanIConvertibleToSByte.exe
WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[int16iconvertibletoboolean.exe_1323]
RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean\Int16IConvertibleToBoolean.exe
WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL;REL_PASS
+Categories=RT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[attributetargetsdelegate.exe_354]
RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate\AttributeTargetsDelegate.exe
WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[callingconventionsstandard.exe_1640]
RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard\CallingConventionsStandard.exe
WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[opcodesldc_i4_5.exe_1762]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5\OpCodesLdc_I4_5.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[opcodesldind_u2.exe_1796]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2\OpCodesLdind_U2.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[missingmethodexceptionctor2.exe_1547]
RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2\MissingMethodExceptionCtor2.exe
WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[float_no_op_cs_d.exe_2792]
RelativePath=JIT\Directed\cmov\Float_No_Op_cs_d\Float_No_Op_cs_d.exe
WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[threadstartcast_2.exe_185]
RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_2\ThreadStartCast_2.exe
WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[marshal.exe_5844]
RelativePath=Regressions\coreclr\0275\Marshal\Marshal.exe
WorkingDir=Regressions\coreclr\0275\Marshal
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_relcast_throw.exe_3761]
RelativePath=JIT\Methodical\casts\SEH\_relcast_throw\_relcast_throw.exe
WorkingDir=JIT\Methodical\casts\SEH\_relcast_throw
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
[_il_relrotate_i4.exe_4015]
RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_i4\_il_relrotate_i4.exe
WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_i4
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[_il_dbghugedim.exe_4053]
RelativePath=JIT\Methodical\int64\arrays\_il_dbghugedim\_il_dbghugedim.exe
WorkingDir=JIT\Methodical\int64\arrays\_il_dbghugedim
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_PASS
+Categories=RT;EXPECTED_PASS;UNWIND
[_speed_relisinst_newobj.exe_3740]
RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_newobj\_speed_relisinst_newobj.exe
WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_newobj
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[sysinfo_il.exe_2969]
RelativePath=JIT\Directed\pinvoke\sysinfo_il\sysinfo_il.exe
WorkingDir=JIT\Directed\pinvoke\sysinfo_il
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b15617.exe_5518]
RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617\b15617.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[b43958.exe_5114]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958\b43958.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[b75944.exe_5411]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944\b75944.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;REL_PASS
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_3104
[test.exe_3556]
RelativePath=JIT\jit64\regress\vsw\329169\test\test.exe
WorkingDir=JIT\jit64\regress\vsw\329169\test
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[b79418.exe_5421]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418\b79418.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_il_relldobj_i8.exe_4700]
RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8\_il_relldobj_I8.exe
WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[stackbehaviourvarpush.exe_1950]
RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush\StackBehaviourVarpush.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[b70808.exe_5371]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808\b70808.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[charissurrogate2.exe_459]
RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate2\CharIsSurrogate2.exe
WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b14928.exe_4864]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928\b14928.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_speed_dbglcsbas.exe_3601]
RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas\_speed_dbglcsbas.exe
WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_il_dbgcompat_i4_i1.exe_4543]
RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1\_il_dbgcompat_i4_i1.exe
WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[25param3a_cs_do.exe_4198]
RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_do\25param3a_cs_do.exe
WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_do
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[try1_d.exe_2952]
RelativePath=JIT\Directed\leave\try1_d\try1_d.exe
WorkingDir=JIT\Directed\leave\try1_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3104
[inline_many.exe_4744]
RelativePath=JIT\opt\Inline\inline_Many\inline_Many.exe
WorkingDir=JIT\opt\Inline\inline_Many
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_PASS
+Categories=RT;EXPECTED_PASS;UNWIND
[straccess3_cs_do.exe_3083]
RelativePath=JIT\Directed\StrAccess\straccess3_cs_do\straccess3_cs_do.exe
WorkingDir=JIT\Directed\StrAccess\straccess3_cs_do
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[b19112a.exe_5696]
RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a\b19112a.exe
WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[convr8d_il_d.exe_4048]
RelativePath=JIT\Methodical\FPtrunc\convr8d_il_d\convr8d_il_d.exe
WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[_il_relcatchfault_jmp.exe_4297]
RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp\_il_relcatchfault_jmp.exe
WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[b39417.exe_5064]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417\b39417.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[textelementenumeratorelementindex.exe_1217]
RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex\TextElementEnumeratorElementIndex.exe
WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b15222.exe_4865]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222\b15222.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[arraysort1.exe_328]
RelativePath=CoreMangLib\cti\system\array\ArraySort1\ArraySort1.exe
WorkingDir=CoreMangLib\cti\system\array\ArraySort1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[b53994.exe_5274]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994\b53994.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[b07411.exe_5023]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411\b07411.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[methodattributeshidebysig.exe_1977]
RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig\MethodAttributesHideBySig.exe
WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL;ISSUE_2925
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
[dictenumidictenumget_entry.exe_534]
RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry\DictEnumIDictEnumget_Entry.exe
WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[stringcomparerequals1.exe_2250]
RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1\StringComparerEquals1.exe
WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[_il_dbgi_ref.exe_3874]
RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref\_il_dbgi_ref.exe
WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[generics2.exe_4503]
RelativePath=JIT\Methodical\nonvirtualcall\generics2\generics2.exe
WorkingDir=JIT\Methodical\nonvirtualcall\generics2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[assemblynameflagspublickey.exe_1633]
RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey\AssemblyNameFlagsPublicKey.exe
WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[converttostring12.exe_843]
RelativePath=CoreMangLib\cti\system\convert\ConvertToString12\ConvertToString12.exe
WorkingDir=CoreMangLib\cti\system\convert\ConvertToString12
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_PASS
+Categories=JIT;EXPECTED_PASS;UNWIND
[25param1c_il_d.exe_4191]
RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_d\25param1c_il_d.exe
WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_d
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[missingmanifestresourceexceptionctor2.exe_2049]
RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2\MissingManifestResourceExceptionCtor2.exe
WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
[_il_relqperm.exe_3905]
RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm\_il_relqperm.exe
WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=JIT;EXPECTED_FAIL
+Categories=JIT;EXPECTED_FAIL;ISSUE_3105
[tailcall_av.exe_4593]
RelativePath=JIT\Methodical\tailcall_v4\tailcall_AV\tailcall_AV.exe
WorkingDir=JIT\Methodical\tailcall_v4\tailcall_AV
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[opcodesconv_ovf_u_un.exe_1727]
RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un\OpCodesConv_Ovf_U_Un.exe
WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_PASS;ISSUE_3032
[b565808.exe_5560]
RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808\b565808.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;MISSING_EXE
[b36471.exe_5052]
RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471\b36471.exe
WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471
MaxAllowedDurationSeconds=600
HostStyle=Any
Expected=100
-Categories=RT;EXPECTED_FAIL
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
[threadstartdouble_2.exe_198]
RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_2\ThreadStartDouble_2.exe
WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_2