diff options
-rwxr-xr-x | netci.groovy | 110 | ||||
-rw-r--r-- | tests/arm/Tests.lst | 90910 | ||||
-rw-r--r-- | tests/arm64/Tests.lst | 8 | ||||
-rw-r--r-- | tests/scripts/arm64_post_build.py | 6 | ||||
-rwxr-xr-x | tests/scripts/lst_creator.py | 46 |
5 files changed, 91012 insertions, 68 deletions
diff --git a/netci.groovy b/netci.groovy index 979d023bdb..93362dea2a 100755 --- a/netci.groovy +++ b/netci.groovy @@ -667,6 +667,33 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, addNonPRTriggers(job, branch, isPR, architecture, os, configuration, scenario, isFlowJob, isWindowsBuildOnlyJob, bidailyCrossList) return } + + def arm64Users = [ + 'adiaaida', + 'AndyAyersMS', + 'briansull', + 'BruceForstall', + 'CarolEidt', + 'cmckinsey', + 'erozenfeld', + 'jashook', + 'JosephTremoulet', + 'pgavlin', + 'russellhadley', + 'RussKeldorph', + 'sandreenko', + 'sdmaclea', + 'sivarv', + 'swaroop-sridhar', + 'gkhanna79', + 'jkotas', + 'markwilkie', + 'rahku', + 'ramarag', + 'tzwlai', + 'weshaggard' + ] + // Pull request builds. Generally these fall into two categories: default triggers and on-demand triggers // We generally only have a distinct set of default triggers but a bunch of on-demand ones. def osGroup = getOSGroup(os) @@ -1056,10 +1083,10 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, break // editor brace matching: } case 'arm': // editor brace matching: { - assert scenario == 'default' switch (os) { case 'Ubuntu': case 'Ubuntu16.04': + assert scenario == 'default' if ((os == 'Ubuntu' && configuration == 'Release') || (os == 'Ubuntu16.04' && configuration == 'Debug')) { Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build") } @@ -1078,9 +1105,36 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, } break; case 'Windows_NT': - if (configuration == 'Debug' || configuration == 'Release') - { - Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build") + // Set up a private trigger + def contextString = "${os} ${architecture} Cross ${configuration}" + if (scenario != 'default') + contextString += " ${scenario}" + contextString += " Build" + // Debug builds only. + if (configuration != 'Debug') { + contextString += " and Test" + } + switch (scenario) { + case 'default': + // For now only run Debug and Release build jobs on PR Trigger. Note this is not a private trigger. + if (configuration == 'Debug' || configuration == 'Release') + { + Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, + "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*", null, arm64Users) + } + else + { + // Checked jobs will run on private trigger and run tests. + Utilities.addDefaultPrivateGithubPRTriggerForBranch(job, branch, contextString, null, arm64Users) + } + break + case 'pri1r2r': + case 'gcstress0x3': + case 'gcstress0xc': + // Stress jobs will will run on private trigger and run tests. + Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, + "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*", null, arm64Users) + break } break default: @@ -1103,32 +1157,6 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, contextString += " and Test" } - def arm64Users = [ - 'adiaaida', - 'AndyAyersMS', - 'briansull', - 'BruceForstall', - 'CarolEidt', - 'cmckinsey', - 'erozenfeld', - 'jashook', - 'JosephTremoulet', - 'pgavlin', - 'russellhadley', - 'RussKeldorph', - 'sandreenko', - 'sdmaclea', - 'sivarv', - 'swaroop-sridhar', - 'gkhanna79', - 'jkotas', - 'markwilkie', - 'rahku', - 'ramarag', - 'tzwlai', - 'weshaggard' - ] - switch (os) { case 'Ubuntu': case 'Ubuntu16.04': @@ -1590,7 +1618,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR } break case 'arm': - assert (scenario == 'default') + assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc') // Set time out setTestJobTimeOut(newJob, scenario) @@ -1599,7 +1627,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR // For Debug builds, we will do a P1 test build buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} -priority=1" } - else { + else if (lowerConfiguration == "checked") { + // For checked runs we will also run testing. + buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} -priority=1" + buildCommands += "python tests\\scripts\\arm64_post_build.py -repo_root %WORKSPACE% -arch ${architecture} -build_type ${lowerConfiguration} -scenario ${scenario} -key_location C:\\tools\\key.txt" + } + else if (lowerConfiguration == "release") { buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture}" } // Add archival. @@ -1820,14 +1853,6 @@ combinedScenarios.each { scenario -> os = 'Windows_NT' } - // WinArm32 is only built for Debug and Release - if (os == 'Windows_NT' && architecture == 'arm') - { - if (configuration == 'Checked') - { - return - } - } // Tizen is only supported for arm architecture if (os == 'Tizen' && architecture != 'arm') { return @@ -1887,6 +1912,7 @@ combinedScenarios.each { scenario -> } switch (architecture) { + case 'arm': case 'arm64': if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc')) { return @@ -1929,7 +1955,7 @@ combinedScenarios.each { scenario -> } break case 'ilrt': - // The ilrt build isn't necessary except for Windows_NT. Non-Windows NT uses + // The ilrt build isn't necessary except for Windows_NT2003. Non-Windows NT uses // the default scenario build if (os != 'Windows_NT') { return @@ -1971,7 +1997,7 @@ combinedScenarios.each { scenario -> return } if (architecture != 'x64') { - if (architecture != 'arm64' || configuration == 'Debug') { + if ((architecture != 'arm64' && architecture != 'arm') || (configuration == 'Debug')) { return } } diff --git a/tests/arm/Tests.lst b/tests/arm/Tests.lst new file mode 100644 index 0000000000..6ccb186b26 --- /dev/null +++ b/tests/arm/Tests.lst @@ -0,0 +1,90910 @@ +## This list file has been produced automatically. Any changes +## are subject to being overwritten when reproducing this file. +## +## Last Updated: 18-Jul-2017 16:18:38 +## Commit: 82d70a6012a62c4f4233932dbe9eedab6d4e1f21 +## +[int8_il_r.cmd_1] +RelativePath=JIT\Directed\shift\int8_il_r\int8_il_r.cmd +WorkingDir=JIT\Directed\shift\int8_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relnative.cmd_2] +RelativePath=JIT\Methodical\refany\_il_relnative\_il_relnative.cmd +WorkingDir=JIT\Methodical\refany\_il_relnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorRelOp_r.cmd_3] +RelativePath=JIT\SIMD\VectorRelOp_r\VectorRelOp_r.cmd +WorkingDir=JIT\SIMD\VectorRelOp_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics010.cmd_4] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010\castclass-generics010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro237932.cmd_5] +RelativePath=Loader\classloader\generics\regressions\vsw237932\repro237932\repro237932.cmd +WorkingDir=Loader\classloader\generics\regressions\vsw237932\repro237932 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3212.cmd_6] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3212\ConvertToUInt3212.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3212 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxvaluetype_do.cmd_7] +RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do\boxunboxvaluetype_do.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchretnonlocalexitinfunclet_do.cmd_8] +RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do\catchretnonlocalexitinfunclet_do.cmd +WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8_cs_do.cmd_9] +RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_do\i8_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread17.cmd_10] +RelativePath=baseservices\threading\generics\TimerCallback\thread17\thread17.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278371.cmd_11] +RelativePath=JIT\Regression\JitBlue\DevDiv_278371\DevDiv_278371\DevDiv_278371.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278371\DevDiv_278371 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relunbox.cmd_12] +RelativePath=JIT\Methodical\xxobj\operand\_il_relunbox\_il_relunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_relunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated193.cmd_13] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest193\Generated193\Generated193.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest193\Generated193 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_815940_r.cmd_14] +RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r\DevDiv_815940_r.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListRemoveAt.cmd_15] +RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt\IListRemoveAt.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread01.cmd_16] +RelativePath=baseservices\threading\generics\syncdelegate\GThread01\GThread01.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_cs_ro.cmd_17] +RelativePath=JIT\Generics\ConstrainedCall\class1_cs_ro\class1_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1415.cmd_18] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1415\Generated1415\Generated1415.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1415\Generated1415 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetByteCount1.cmd_19] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1\EncodingGetByteCount1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteEquals2.cmd_20] +RelativePath=CoreMangLib\cti\system\byte\ByteEquals2\ByteEquals2.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LdfldGeneric_ro.cmd_21] +RelativePath=JIT\SIMD\LdfldGeneric_ro\LdfldGeneric_ro.cmd +WorkingDir=JIT\SIMD\LdfldGeneric_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_stind.cmd_22] +RelativePath=JIT\IL_Conformance\Old\Base\ldind_stind\ldind_stind.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldind_stind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics_d.cmd_23] +RelativePath=JIT\Methodical\nonvirtualcall\generics_d\generics_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_2.cmd_24] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_2\GCSimulator_2.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Positive007.cmd_25] +RelativePath=Loader\classloader\generics\Layout\Specific\Positive007\Positive007.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Positive007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh05_large.cmd_26] +RelativePath=JIT\jit64\localloc\ehverify\eh05_large\eh05_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh05_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_27] +RelativePath=Loader\classloader\generics\regressions\109968\test\test.cmd +WorkingDir=Loader\classloader\generics\regressions\109968\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_425.cmd_28] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_425\GCSimulator_425.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_425 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAdd1.cmd_29] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1\InterlockedAdd1.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_10.cmd_30] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_10\ConvertToInt32_10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbghanoi.cmd_31] +RelativePath=JIT\Methodical\VT\etc\_dbghanoi\_dbghanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbghanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgjumper.cmd_32] +RelativePath=JIT\Methodical\VT\callconv\_dbgjumper\_dbgjumper.cmd +WorkingDir=JIT\Methodical\VT\callconv\_dbgjumper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_193.cmd_33] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_193\GCSimulator_193.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_193 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1246.cmd_34] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1246\Generated1246\Generated1246.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1246\Generated1246 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1313.cmd_35] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1313\Generated1313\Generated1313.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1313\Generated1313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPAddConst.cmd_36] +RelativePath=JIT\CodeGenBringUpTests\FPAddConst\FPAddConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPAddConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b309576.cmd_37] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576\b309576.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess3_cs_r.cmd_38] +RelativePath=JIT\Directed\StrAccess\straccess3_cs_r\straccess3_cs_r.cmd +WorkingDir=JIT\Directed\StrAccess\straccess3_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49717.cmd_39] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717\b49717.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_o.cmd_40] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o\_il_relrefloc_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread03.cmd_41] +RelativePath=baseservices\threading\generics\TimerCallback\thread03\thread03.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_r4.cmd_42] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4\cgt_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated80.cmd_43] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest80\Generated80\Generated80.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest80\Generated80 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1A_d.cmd_44] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_d\hfa_sf1A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct07.cmd_45] +RelativePath=baseservices\exceptions\generics\try-catch-struct07\try-catch-struct07.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40199.cmd_46] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199\b40199.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgenum_il.cmd_47] +RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_il\_dbgenum_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartBool.cmd_48] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool\ThreadStartBool.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05639.cmd_49] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639\b05639.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor4.cmd_50] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4\MemoryStreamCtor4.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimal_cs_do.cmd_51] +RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_do\decimal_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1482.cmd_52] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1482\Generated1482\Generated1482.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1482\Generated1482 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise2_cs_ro.cmd_53] +RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_ro\xprecise2_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit2_ro.cmd_54] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro\tryCatchFinallyThrow_nonlocalexit2_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_r.cmd_55] +RelativePath=JIT\Methodical\eh\generics\throwincatch_r\throwincatch_r.cmd +WorkingDir=JIT\Methodical\eh\generics\throwincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass041.cmd_56] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041\castclass041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relformat.cmd_57] +RelativePath=JIT\Methodical\refany\_il_relformat\_il_relformat.cmd +WorkingDir=JIT\Methodical\refany\_il_relformat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14779.cmd_58] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779\b14779.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetMaxCharCount.cmd_59] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount\UTF8EncodingGetMaxCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchbackwardswithfinally_d.cmd_60] +RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d\branchbackwardswithfinally_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07483.cmd_61] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483\b07483.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dupi.cmd_62] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dupi\dupi.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dupi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse2_cs_ro.cmd_63] +RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_ro\cse2_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldadd_cs_d.cmd_64] +RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_d\lclfldadd_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated560.cmd_65] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest560\Generated560\Generated560.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest560\Generated560 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated864.cmd_66] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest864\Generated864\Generated864.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest864\Generated864 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_1296.cmd_67] +RelativePath=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296\GitHub_1296.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress2_ro.cmd_68] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_ro\CgStress2_ro.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_237.cmd_69] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_237\GCSimulator_237.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_237 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try3_d.cmd_70] +RelativePath=JIT\Directed\leave\try3_d\try3_d.cmd +WorkingDir=JIT\Directed\leave\try3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated344.cmd_71] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest344\Generated344\Generated344.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest344\Generated344 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84136.cmd_72] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136\b84136.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated536.cmd_73] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest536\Generated536\Generated536.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest536\Generated536 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcs.cmd_74] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs\_speed_dbglcs.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[33objref_cs_ro.cmd_75] +RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_ro\33objref_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsControl2.cmd_76] +RelativePath=CoreMangLib\cti\system\char\CharIsControl2\CharIsControl2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsControl2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02.cmd_77] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02\struct02.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleTryParse.cmd_78] +RelativePath=CoreMangLib\cti\system\double\DoubleTryParse\DoubleTryParse.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mainv1.cmd_79] +RelativePath=readytorun\tests\mainv1\mainv1.cmd +WorkingDir=readytorun\tests\mainv1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[ComparerCompare2.cmd_80] +RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2\ComparerCompare2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor4.cmd_81] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4\DictionaryCtor4.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[float_cs_r.cmd_82] +RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_r\float_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CSharpPart.cmd_83] +RelativePath=JIT\Regression\Dev11\External\dev11_132534\CSharpPart\CSharpPart.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_132534\CSharpPart +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_r4.cmd_84] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r4\blt_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated223.cmd_85] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest223\Generated223\Generated223.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest223\Generated223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleTypeWeak.cmd_86] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak\GCHandleTypeWeak.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToInt32.cmd_87] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32\UInt32IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoWhileBndChk.cmd_88] +RelativePath=JIT\RyuJIT\DoWhileBndChk\DoWhileBndChk.cmd +WorkingDir=JIT\RyuJIT\DoWhileBndChk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_r8.cmd_89] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r8\ldloc_s_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4d_il_r.cmd_90] +RelativePath=JIT\Methodical\FPtrunc\convr4d_il_r\convr4d_il_r.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort14.cmd_91] +RelativePath=CoreMangLib\cti\system\array\ArraySort14\ArraySort14.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstvaluetype_do.cmd_92] +RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_do\isinstvaluetype_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox008.cmd_93] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008\box-unbox008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41278.cmd_94] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278\b41278.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b410474.cmd_95] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474\b410474.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[_il_relconst.cmd_96] +RelativePath=JIT\Methodical\xxobj\operand\_il_relconst\_il_relconst.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_relconst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayTypeMismatchExceptionctor3.cmd_97] +RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3\ArrayTypeMismatchExceptionctor3.cmd +WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_gcref.cmd_98] +RelativePath=JIT\Methodical\VT\port\_il_dbghuge_gcref\_il_dbghuge_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_il_dbghuge_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_277.cmd_99] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_277\GCSimulator_277.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_277 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToUInt64.cmd_100] +RelativePath=CoreMangLib\cti\system\single\SingleToUInt64\SingleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19171.cmd_101] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171\b19171.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch04.cmd_102] +RelativePath=baseservices\exceptions\generics\nested-try-catch04\nested-try-catch04.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1156.cmd_103] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1156\Generated1156\Generated1156.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1156\Generated1156 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtypedref.cmd_104] +RelativePath=JIT\Methodical\Boxing\misc\_dbgtypedref\_dbgtypedref.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgtypedref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1330.cmd_105] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1330\Generated1330\Generated1330.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1330\Generated1330 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListAdd.cmd_106] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListAdd\ListIListAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_u4.cmd_107] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u4\ble_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated349.cmd_108] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest349\Generated349\Generated349.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest349\Generated349 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_i4.cmd_109] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4\ldc_sub_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated766.cmd_110] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest766\Generated766\Generated766.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest766\Generated766 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dlstack.cmd_111] +RelativePath=GC\Scenarios\DoublinkList\dlstack\dlstack.cmd +WorkingDir=GC\Scenarios\DoublinkList\dlstack +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1222.cmd_112] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1222\Generated1222\Generated1222.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1222\Generated1222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated517.cmd_113] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest517\Generated517\Generated517.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest517\Generated517 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null037.cmd_114] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037\castclass-null037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multipleWRs.cmd_115] +RelativePath=GC\API\WeakReference\multipleWRs\multipleWRs.cmd +WorkingDir=GC\API\WeakReference\multipleWRs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68757.cmd_116] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757\b68757.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetHashCode.cmd_117] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode\UnicodeEncodingGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw307137.cmd_118] +RelativePath=Loader\classloader\regressions\vsw307137\vsw307137\vsw307137.cmd +WorkingDir=Loader\classloader\regressions\vsw307137\vsw307137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NegTests.cmd_119] +RelativePath=GC\API\GCHandleCollector\NegTests\NegTests.cmd +WorkingDir=GC\API\GCHandleCollector\NegTests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_fail.cmd_120] +RelativePath=GC\API\GC\Collect_fail\Collect_fail.cmd +WorkingDir=GC\API\GC\Collect_fail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Simpleb207621.cmd_121] +RelativePath=JIT\Methodical\stringintern\_Simpleb207621\_Simpleb207621.cmd +WorkingDir=JIT\Methodical\stringintern\_Simpleb207621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[neg_i4.cmd_122] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i4\neg_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[regalloc2.cmd_123] +RelativePath=JIT\Directed\intrinsic\interlocked\regalloc2\regalloc2.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CollectionCountTest.cmd_124] +RelativePath=GC\API\GC\CollectionCountTest\CollectionCountTest.cmd +WorkingDir=GC\API\GC\CollectionCountTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated997.cmd_125] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest997\Generated997\Generated997.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest997\Generated997 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated88.cmd_126] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest88\Generated88\Generated88.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest88\Generated88 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int64_do.cmd_127] +RelativePath=JIT\Directed\shift\int64_do\int64_do.cmd +WorkingDir=JIT\Directed\shift\int64_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[args1.cmd_128] +RelativePath=JIT\opt\Inline\tests\args1\args1.cmd +WorkingDir=JIT\opt\Inline\tests\args1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldsshrstsfld_il_d.cmd_129] +RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d\ldsshrstsfld_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind05_dynamic.cmd_130] +RelativePath=JIT\jit64\localloc\unwind\unwind05_dynamic\unwind05_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind05_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldc_mul.cmd_131] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul\_speed_dbgldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFCos.cmd_132] +RelativePath=CoreMangLib\cti\system\mathf\MathFCos\MathFCos.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFCos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foo2_opt.cmd_133] +RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt\foo2_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_funcptr_val_d.cmd_134] +RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d\seq_funcptr_val_d.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relshortsig.cmd_135] +RelativePath=JIT\Methodical\refany\_il_relshortsig\_il_relshortsig.cmd +WorkingDir=JIT\Methodical\refany\_il_relshortsig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesDirectory.cmd_136] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory\FileAttributesDirectory.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeTypeObjmodel.cmd_137] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel\OpCodeTypeObjmodel.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baseclass01.cmd_138] +RelativePath=JIT\Generics\Instantiation\Classes\baseclass01\baseclass01.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\baseclass01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_85.cmd_139] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_85\GCSimulator_85.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_85 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw.cmd_140] +RelativePath=JIT\IL_Conformance\Old\objectmodel\throw\throw.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\throw +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated847.cmd_141] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest847\Generated847\Generated847.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest847\Generated847 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16503.cmd_142] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503\b16503.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilstind_il_r.cmd_143] +RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r\volatilstind_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchange2.cmd_144] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchange2\compareexchange2.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchange2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleNaN.cmd_145] +RelativePath=CoreMangLib\cti\system\double\DoubleNaN\DoubleNaN.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleNaN +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relfibo_cs.cmd_146] +RelativePath=JIT\Methodical\Boxing\functional\_relfibo_cs\_relfibo_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unsafe_r.cmd_147] +RelativePath=JIT\Methodical\eh\cs\unsafe_r\unsafe_r.cmd +WorkingDir=JIT\Methodical\eh\cs\unsafe_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated895.cmd_148] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest895\Generated895\Generated895.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest895\Generated895 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyloop_r.cmd_149] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_r\tryfinallyloop_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BinarySearch1.cmd_150] +RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch1\BinarySearch1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi4u1.cmd_151] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u1\_il_dbgi4u1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic2_il_r.cmd_152] +RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_r\stfldstatic2_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_113.cmd_153] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_113\GCSimulator_113.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_113 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AmbiguousMatchExceptionCtor3.cmd_154] +RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3\AmbiguousMatchExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07369.cmd_155] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369\b07369.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcs_long.cmd_156] +RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_long\_speed_dbglcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_do.cmd_157] +RelativePath=JIT\Methodical\eh\basics\throwinfinally_do\throwinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest2.cmd_158] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest2\_il_reltest2.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop1_cs_d.cmd_159] +RelativePath=JIT\Directed\UnrollLoop\loop1_cs_d\loop1_cs_d.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b140711.cmd_160] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711\b140711.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar.cmd_161] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar\ConvertToChar.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcastclass_call.cmd_162] +RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_call\_dbgcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1E_r.cmd_163] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_r\hfa_nd1E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-5.cmd_164] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-5\_dbgunsafe-5.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_jmpi.cmd_165] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi\_il_relrecurse_jmpi.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_s.cmd_166] +RelativePath=JIT\IL_Conformance\Old\Base\blt_s\blt_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\blt_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sealeddefault.cmd_167] +RelativePath=JIT\opt\Devirtualization\sealeddefault\sealeddefault.cmd +WorkingDir=JIT\opt\Devirtualization\sealeddefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated286.cmd_168] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest286\Generated286\Generated286.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest286\Generated286 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param07.cmd_169] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param07\param07.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableHasValue.cmd_170] +RelativePath=CoreMangLib\cti\system\nullable\NullableHasValue\NullableHasValue.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableHasValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1302.cmd_171] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1302\Generated1302\Generated1302.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1302\Generated1302 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32801.cmd_172] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801\b32801.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated90.cmd_173] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest90\Generated90\Generated90.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest90\Generated90 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase2_Nested_I.cmd_174] +RelativePath=Loader\classloader\InterfaceFolding\TestCase2_Nested_I\TestCase2_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase2_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch5.cmd_175] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5\ArrayBinarySearch5.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Rethrow1.cmd_176] +RelativePath=JIT\Directed\IL\rethrow\Rethrow1\Rethrow1.cmd +WorkingDir=JIT\Directed\IL\rethrow\Rethrow1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cmpxchg.cmd_177] +RelativePath=JIT\Directed\intrinsic\interlocked\cmpxchg\cmpxchg.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\cmpxchg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relaa.cmd_178] +RelativePath=JIT\Methodical\VT\callconv\_il_relaa\_il_relaa.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_relaa +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated464.cmd_179] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest464\Generated464\Generated464.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest464\Generated464 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_I8.cmd_180] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8\_il_relldobj_I8.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_simpleoddpower_il_d.cmd_181] +RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_d\_simpleoddpower_il_d.cmd +WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[char_cs_do.cmd_182] +RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_do\char_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_ro.cmd_183] +RelativePath=JIT\Directed\shift\uint8_ro\uint8_ro.cmd +WorkingDir=JIT\Directed\shift\uint8_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartNeg3.cmd_184] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg3\ThreadStartNeg3.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchange1_cti.cmd_185] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchange1_cti\compareexchange1_cti.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchange1_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionContains.cmd_186] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains\ICollectionContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25459.cmd_187] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459\b25459.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt646.cmd_188] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt646\ConvertToUInt646.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt646 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated679.cmd_189] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest679\Generated679\Generated679.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest679\Generated679 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread25.cmd_190] +RelativePath=baseservices\threading\generics\threadstart\GThread25\GThread25.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[ArraySort9.cmd_191] +RelativePath=CoreMangLib\cti\system\array\ArraySort9\ArraySort9.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated869.cmd_192] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest869\Generated869\Generated869.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest869\Generated869 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex6a.cmd_193] +RelativePath=baseservices\threading\waithandle\waitall\waitallex6a\waitallex6a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex6a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv3_il_r.cmd_194] +RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_r\callconv3_il_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyTo3.cmd_195] +RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo3\CopyTo3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1124.cmd_196] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1124\Generated1124\Generated1124.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1124\Generated1124 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LazyTTF.cmd_197] +RelativePath=CoreMangLib\system\lazyt\LazyTTF\LazyTTF.cmd +WorkingDir=CoreMangLib\system\lazyt\LazyTTF +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartLong.cmd_198] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong\ThreadStartLong.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_d_loop_try.cmd_199] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_d_loop_try\mixedexpr1_d_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_d_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relftn_t.cmd_200] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relftn_t\_il_relftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b55875.cmd_201] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875\b55875.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEnumeratorIEnumgetCurrent.cmd_202] +RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent\CharEnumeratorIEnumgetCurrent.cmd +WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetString.cmd_203] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetString\EncodingGetString.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_i4.cmd_204] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i4\beq_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexit_do.cmd_205] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do\simplenonlocalexit_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null018.cmd_206] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018\box-unbox-null018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_196.cmd_207] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_196\GCSimulator_196.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_196 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated559.cmd_208] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest559\Generated559\Generated559.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest559\Generated559 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_307.cmd_209] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_307\GCSimulator_307.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilecpobj_il_d.cmd_210] +RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_d\volatilecpobj_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07847.cmd_211] +RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847\b07847.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2441;EXCLUDED;RVA_STATIC +HostStyle=0 + +[GCSimulator_302.cmd_212] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_302\GCSimulator_302.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_302 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleIsPositiveInfinity.cmd_213] +RelativePath=CoreMangLib\cti\system\single\SingleIsPositiveInfinity\SingleIsPositiveInfinity.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleIsPositiveInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_d.cmd_214] +RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d\classarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[objectBoxing.cmd_215] +RelativePath=JIT\Generics\Typeof\objectBoxing\objectBoxing.cmd +WorkingDir=JIT\Generics\Typeof\objectBoxing +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenTypeInlined_Multinested.cmd_216] +RelativePath=Loader\classloader\TypeInitialization\Inlining\GenTypeInlined_Multinested\GenTypeInlined_Multinested.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\GenTypeInlined_Multinested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalDivide.cmd_217] +RelativePath=CoreMangLib\cti\system\decimal\DecimalDivide\DecimalDivide.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalDivide +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated554.cmd_218] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest554\Generated554\Generated554.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest554\Generated554 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11574.cmd_219] +RelativePath=JIT\Regression\JitBlue\GitHub_11574\GitHub_11574\GitHub_11574.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11574\GitHub_11574 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[methodthrowsinfinally_ro.cmd_220] +RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro\methodthrowsinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b158861.cmd_221] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861\b158861.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_cs_d.cmd_222] +RelativePath=JIT\Generics\ConstrainedCall\class1_cs_d\class1_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringEquals3.cmd_223] +RelativePath=CoreMangLib\cti\system\string\StringEquals3\StringEquals3.cmd +WorkingDir=CoreMangLib\cti\system\string\StringEquals3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfpseh5_1.cmd_224] +RelativePath=JIT\jit64\gc\misc\structfpseh5_1\structfpseh5_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfpseh5_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_d.cmd_225] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d\throwinfinallynestedintry_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b38556.cmd_226] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556\b38556.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit4_il_r.cmd_227] +RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_r\prefldinit4_il_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[plainarr_cs_do.cmd_228] +RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do\plainarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null040.cmd_229] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040\castclass-null040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63726.cmd_230] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726\b63726.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class03.cmd_231] +RelativePath=JIT\Generics\Instantiation\Interfaces\class03\class03.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\class03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85315.cmd_232] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315\b85315.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting7.cmd_233] +RelativePath=Loader\classloader\nesting\Tests\nesting7\nesting7.cmd +WorkingDir=Loader\classloader\nesting\Tests\nesting7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleMaxValue.cmd_234] +RelativePath=CoreMangLib\cti\system\double\DoubleMaxValue\DoubleMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesAnd.cmd_235] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd\OpCodesAnd.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow2_cs_ro.cmd_236] +RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_ro\pow2_cs_ro.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_range2.cmd_237] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range2\_il_relint32_range2.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_int_1_d.cmd_238] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_d\seq_gc_int_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null038.cmd_239] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038\castclass-null038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread19.cmd_240] +RelativePath=baseservices\threading\generics\threadstart\GThread19\GThread19.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleEquals1.cmd_241] +RelativePath=CoreMangLib\cti\system\double\DoubleEquals1\DoubleEquals1.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_1.cmd_242] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_1\ConvertToInt64_1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1394.cmd_243] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1394\Generated1394\Generated1394.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1394\Generated1394 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeOpen.cmd_244] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpen\FileModeOpen.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop6_cs_r.cmd_245] +RelativePath=JIT\Directed\UnrollLoop\loop6_cs_r\loop6_cs_r.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderToString1.cmd_246] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1\StringBuilderToString1.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multipleWRs_1.cmd_247] +RelativePath=GC\API\WeakReference\multipleWRs_1\multipleWRs_1.cmd +WorkingDir=GC\API\WeakReference\multipleWRs_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[366085.cmd_248] +RelativePath=baseservices\exceptions\regressions\whidbeybeta2\366085\366085\366085.cmd +WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\366085\366085 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_do.cmd_249] +RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do\jaggedarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relgcval_sideeffect.cmd_250] +RelativePath=JIT\Methodical\tailcall\_il_relgcval_sideeffect\_il_relgcval_sideeffect.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relgcval_sideeffect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated772.cmd_251] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest772\Generated772\Generated772.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest772\Generated772 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldc_mul.cmd_252] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mul\_il_dbgldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gc_nested.cmd_253] +RelativePath=JIT\Methodical\VT\etc\gc_nested\gc_nested.cmd +WorkingDir=JIT\Methodical\VT\etc\gc_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsUpper1.cmd_254] +RelativePath=CoreMangLib\cti\system\char\CharIsUpper1\CharIsUpper1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsUpper1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test12224.cmd_255] +RelativePath=Regressions\coreclr\GitHub_12224\Test12224\Test12224.cmd +WorkingDir=Regressions\coreclr\GitHub_12224\Test12224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1403.cmd_256] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1403\Generated1403\Generated1403.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1403\Generated1403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-12-3.cmd_257] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-12-3\L-2-12-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-12-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_RecursiveMethod.cmd_258] +RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod\Inline_RecursiveMethod.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01a_auto_ser.cmd_259] +RelativePath=Loader\classloader\generics\Layout\General\Base01a_auto_ser\Base01a_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01a_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_ro_loop.cmd_260] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop\staticFieldExprUnchecked1_ro_loop.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_65.cmd_261] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_65\GCSimulator_65.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_65 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case14.cmd_262] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14\case14.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelnestval_cs.cmd_263] +RelativePath=JIT\Methodical\Boxing\misc\_orelnestval_cs\_orelnestval_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_orelnestval_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value015.cmd_264] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015\box-unbox-value015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102962b.cmd_265] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b\b102962b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread27.cmd_266] +RelativePath=baseservices\threading\generics\WaitCallback\thread27\thread27.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LoadType.cmd_267] +RelativePath=Loader\classloader\regressions\451034\LoadType\LoadType.cmd +WorkingDir=Loader\classloader\regressions\451034\LoadType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi4u4.cmd_268] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u4\_il_dbgi4u4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-0.cmd_269] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0\_speed_dbgunsafe-0.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_r.cmd_270] +RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r\doublearr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b98431.cmd_271] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431\b98431.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated610.cmd_272] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest610\Generated610\Generated610.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest610\Generated610 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw2dimarray_r.cmd_273] +RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_r\throw2dimarray_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeCtor.cmd_274] +RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor\AttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Peer_4.cmd_275] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4\Generic_Test_CSharp_Peer_4.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11413.cmd_276] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413\b11413.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated785.cmd_277] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest785\Generated785\Generated785.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest785\Generated785 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedStruct03.cmd_278] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedStruct03\NestedStruct03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedStruct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45984.cmd_279] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984\b45984.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77304.cmd_280] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304\b77304.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HugeField1.cmd_281] +RelativePath=JIT\jit64\opt\cse\HugeField1\HugeField1.cmd +WorkingDir=JIT\jit64\opt\cse\HugeField1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetEncoder.cmd_282] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder\UTF8EncodingGetEncoder.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-1-1.cmd_283] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-1-1\L-1-1-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-1-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_U4.cmd_284] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4\OpCodesConv_U4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct6_4.cmd_285] +RelativePath=JIT\jit64\gc\misc\struct6_4\struct6_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct6_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB5.cmd_286] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB5\LocallocCnstB5.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_cs_r.cmd_287] +RelativePath=JIT\Directed\shift\uint16_cs_r\uint16_cs_r.cmd +WorkingDir=JIT\Directed\shift\uint16_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandle1.cmd_288] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandle1\bindhandle1.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandle1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_i8.cmd_289] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i8\rem_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_cs_do.cmd_290] +RelativePath=JIT\Generics\ConstrainedCall\class2_cs_do\class2_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15786.cmd_291] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786\b15786.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBrfalse.cmd_292] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse\OpCodesBrfalse.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics044.cmd_293] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044\box-unbox-generics044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated703.cmd_294] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest703\Generated703\Generated703.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest703\Generated703 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadlock_il_r.cmd_295] +RelativePath=JIT\Methodical\cctor\misc\deadlock_il_r\deadlock_il_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract01.cmd_296] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract01\abstract01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_i8.cmd_297] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i8\ldloca_s_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToUInt16.cmd_298] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt16\CharIConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoutoftryfinally_r.cmd_299] +RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_r\branchoutoftryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61185.cmd_300] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185\b61185.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1616.cmd_301] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1616\ConvertToUInt1616.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1616 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsEvent.cmd_302] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent\AttributeTargetsEvent.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i85.cmd_303] +RelativePath=JIT\jit64\mcc\interop\mcc_i85\mcc_i85.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i85 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated753.cmd_304] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest753\Generated753\Generated753.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest753\Generated753 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToDouble.cmd_305] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDouble\Int32IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated146.cmd_306] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest146\Generated146\Generated146.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest146\Generated146 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalgotoinatryblockinahandler_r.cmd_307] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r\nonlocalgotoinatryblockinahandler_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesOut.cmd_308] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut\ParameterAttributesOut.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated527.cmd_309] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest527\Generated527\Generated527.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest527\Generated527 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryfinally_d.cmd_310] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d\nestedtryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions02.cmd_311] +RelativePath=baseservices\exceptions\generics\GenericExceptions02\GenericExceptions02.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringReplace3.cmd_312] +RelativePath=CoreMangLib\cti\system\string\StringReplace3\StringReplace3.cmd +WorkingDir=CoreMangLib\cti\system\string\StringReplace3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_273.cmd_313] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_273\GCSimulator_273.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_273 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_260.cmd_314] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_260\GCSimulator_260.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_260 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64Opt_ro.cmd_315] +RelativePath=JIT\Directed\shift\uint64Opt_ro\uint64Opt_ro.cmd +WorkingDir=JIT\Directed\shift\uint64Opt_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenTypeInlined.cmd_316] +RelativePath=Loader\classloader\TypeInitialization\Inlining\GenTypeInlined\GenTypeInlined.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\GenTypeInlined +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct03.cmd_317] +RelativePath=JIT\Generics\Instantiation\Interfaces\struct03\struct03.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandleinvalid5.cmd_318] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandleinvalid5\bindhandleinvalid5.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandleinvalid5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_d.cmd_319] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_d\callconv1_cs_d.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHole1.cmd_320] +RelativePath=JIT\Regression\Dev11\External\dev11_149090\GCHole1\GCHole1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_149090\GCHole1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax10.cmd_321] +RelativePath=CoreMangLib\cti\system\math\MathMax10\MathMax10.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated425.cmd_322] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest425\Generated425\Generated425.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest425\Generated425 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblMulConst.cmd_323] +RelativePath=JIT\CodeGenBringUpTests\DblMulConst\DblMulConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblMulConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated885.cmd_324] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest885\Generated885\Generated885.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest885\Generated885 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgarray3.cmd_325] +RelativePath=JIT\Methodical\refany\_il_dbgarray3\_il_dbgarray3.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgarray3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_i4.cmd_326] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4\_il_dbgrefloc_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25701.cmd_327] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701\b25701.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-25-9-two.cmd_328] +RelativePath=Loader\classloader\rmv\il\RMV-2-25-9-two\RMV-2-25-9-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-25-9-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_value.cmd_329] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_value\_il_dbgdeep_value.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_value +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-7-1.cmd_330] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-7-1\L-1-7-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-7-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalOne.cmd_331] +RelativePath=CoreMangLib\cti\system\decimal\DecimalOne\DecimalOne.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalOne +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass045.cmd_332] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045\castclass045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_d.cmd_333] +RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_d\cascadedcatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1396.cmd_334] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1396\Generated1396\Generated1396.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1396\Generated1396 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Complex1.cmd_335] +RelativePath=JIT\Directed\Arrays\Complex1\Complex1.cmd +WorkingDir=JIT\Directed\Arrays\Complex1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollGenericICollContains.cmd_336] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains\ValueCollGenericICollContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63730.cmd_337] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730\b63730.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66620.cmd_338] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620\b66620.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_93.cmd_339] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_93\GCSimulator_93.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_93 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84129.cmd_340] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129\b84129.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[neg_r4.cmd_341] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r4\neg_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test448035.cmd_342] +RelativePath=baseservices\compilerservices\dynamicobjectproperties\test448035\test448035.cmd +WorkingDir=baseservices\compilerservices\dynamicobjectproperties\test448035 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u4_u2.cmd_343] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2\ldc_conv_ovf_u4_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics027.cmd_344] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027\castclass-generics027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparisonOrdinal.cmd_345] +RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal\StringComparisonOrdinal.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test7685.cmd_346] +RelativePath=Regressions\coreclr\GitHub_7685\Test7685\Test7685.cmd +WorkingDir=Regressions\coreclr\GitHub_7685\Test7685 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated921.cmd_347] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest921\Generated921\Generated921.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest921\Generated921 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrToPointer.cmd_348] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrToPointer\IntPtrToPointer.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToPointer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subovfun1_il_d.cmd_349] +RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d\subovfun1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_o.cmd_350] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_o\_il_dbgrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AmbiguousMatchExceptionCtor1.cmd_351] +RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1\AmbiguousMatchExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47471.cmd_352] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471\b47471.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278376.cmd_353] +RelativePath=JIT\Regression\JitBlue\DevDiv_278376\DevDiv_278376\DevDiv_278376.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278376\DevDiv_278376 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41164.cmd_354] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164\b41164.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_cs_il.cmd_355] +RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il\_dbgsin_cs_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated883.cmd_356] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest883\Generated883\Generated883.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest883\Generated883 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem3.cmd_357] +RelativePath=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem3\StaticsProblem3.cmd +WorkingDir=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44204.cmd_358] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204\b44204.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics002.cmd_359] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002\box-unbox-generics002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated471.cmd_360] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest471\Generated471\Generated471.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest471\Generated471 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56174.cmd_361] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174\b56174.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1015.cmd_362] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1015\Generated1015\Generated1015.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1015\Generated1015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyInt32Array.cmd_363] +RelativePath=Interop\MarshalAPI\Copy\CopyInt32Array\CopyInt32Array.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyInt32Array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated528.cmd_364] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest528\Generated528\Generated528.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest528\Generated528 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_i8.cmd_365] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i8\beq_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrotarg_objref.cmd_366] +RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_objref\_relrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1E_d.cmd_367] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_d\hfa_nd1E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1a_cs_d.cmd_368] +RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_d\25param1a_cs_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryKeys.cmd_369] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys\DictionaryIDictionaryKeys.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_cs_d.cmd_370] +RelativePath=JIT\Directed\shift\int16_cs_d\int16_cs_d.cmd +WorkingDir=JIT\Directed\shift\int16_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_prop.cmd_371] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop\_il_reli_prop.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch09.cmd_372] +RelativePath=baseservices\exceptions\generics\try-catch09\try-catch09.cmd +WorkingDir=baseservices\exceptions\generics\try-catch09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualResetCtor2.cmd_373] +RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2\ManualResetCtor2.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocB_N.cmd_374] +RelativePath=JIT\CodeGenBringUpTests\LocallocB_N\LocallocB_N.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocB_N +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsUpper2.cmd_375] +RelativePath=CoreMangLib\cti\system\char\CharIsUpper2\CharIsUpper2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsUpper2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_320.cmd_376] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_320\GCSimulator_320.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_320 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem1.cmd_377] +RelativePath=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem1\StaticsProblem1.cmd +WorkingDir=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_cs.cmd_378] +RelativePath=JIT\Methodical\Boxing\functional\_odbgsin_cs\_odbgsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_odbgsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr2.cmd_379] +RelativePath=JIT\jit64\opt\cse\simpleexpr2\simpleexpr2.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4_cs_r.cmd_380] +RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_r\i4_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102870.cmd_381] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870\b102870.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs_long.cmd_382] +RelativePath=JIT\Methodical\int64\arrays\_rellcs_long\_rellcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_rellcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i55.cmd_383] +RelativePath=JIT\jit64\mcc\interop\mcc_i55\mcc_i55.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i55 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated648.cmd_384] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest648\Generated648\Generated648.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest648\Generated648 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1446.cmd_385] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1446\Generated1446\Generated1446.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1446\Generated1446 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_419.cmd_386] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_419\GCSimulator_419.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_419 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesXor.cmd_387] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor\OpCodesXor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToInt16.cmd_388] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16\UInt32IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_r8.cmd_389] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r8\add_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badtailcall.cmd_390] +RelativePath=JIT\Directed\coverage\importer\badtailcall\badtailcall.cmd +WorkingDir=JIT\Directed\coverage\importer\badtailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallingConventionsStandard.cmd_391] +RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard\CallingConventionsStandard.cmd +WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1257.cmd_392] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1257\Generated1257\Generated1257.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1257\Generated1257 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null034.cmd_393] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034\castclass-null034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryValues.cmd_394] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues\DictionaryIDictionaryValues.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relisinst_ldarg.cmd_395] +RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldarg\_relisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IndexOutOfRangeExceptionctor2.cmd_396] +RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2\IndexOutOfRangeExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated285.cmd_397] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest285\Generated285\Generated285.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest285\Generated285 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToUInt16.cmd_398] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16\Int32IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt322.cmd_399] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt322\ConvertToUInt322.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ctors_r.cmd_400] +RelativePath=JIT\SIMD\Ctors_r\Ctors_r.cmd +WorkingDir=JIT\SIMD\Ctors_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dup4.cmd_401] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup4\dup4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_5.cmd_402] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_5\ConvertToInt64_5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated971.cmd_403] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest971\Generated971\Generated971.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest971\Generated971 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox022.cmd_404] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022\box-unbox022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b103058.cmd_405] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058\b103058.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldsfld_mul.cmd_406] +RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mul\_relldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_d.cmd_407] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_d\callconv2_cs_d.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-04_cs_ro.cmd_408] +RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_ro\5w1d-04_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13944.cmd_409] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944\b13944.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1065.cmd_410] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1065\Generated1065\Generated1065.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1065\Generated1065 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_do.cmd_411] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do\throwinfinallynestedintry_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNsub_cs_do.cmd_412] +RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_do\r8NaNsub_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics042.cmd_413] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042\box-unbox-generics042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCeq.cmd_414] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq\OpCodesCeq.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ge1.cmd_415] +RelativePath=JIT\CodeGenBringUpTests\Ge1\Ge1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Ge1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated435.cmd_416] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest435\Generated435\Generated435.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest435\Generated435 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8rem_cs_r.cmd_417] +RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_r\i8rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4rem_cs_do.cmd_418] +RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_do\r4rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldsfld_mul.cmd_419] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul\_il_rels_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret6_3.cmd_420] +RelativePath=JIT\jit64\gc\misc\structret6_3\structret6_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret6_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesPublic.cmd_421] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic\FieldAttributesPublic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CnsBool.cmd_422] +RelativePath=JIT\CodeGenBringUpTests\CnsBool\CnsBool.cmd +WorkingDir=JIT\CodeGenBringUpTests\CnsBool +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_class_static01.cmd_423] +RelativePath=JIT\Generics\Exceptions\specific_class_static01\specific_class_static01.cmd +WorkingDir=JIT\Generics\Exceptions\specific_class_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w5d_cs_r.cmd_424] +RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_r\10w5d_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0C_r.cmd_425] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_r\hfa_nf0C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relctor_recurse.cmd_426] +RelativePath=JIT\Methodical\VT\etc\_relctor_recurse\_relctor_recurse.cmd +WorkingDir=JIT\Methodical\VT\etc\_relctor_recurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_i4.cmd_427] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4\ldind_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reladdsub.cmd_428] +RelativePath=JIT\Methodical\int64\unsigned\_reladdsub\_reladdsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_reladdsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesNewobj.cmd_429] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj\OpCodesNewobj.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15728.cmd_430] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728\b15728.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldc_mul.cmd_431] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mul\_il_rels_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_ro.cmd_432] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_ro\callconv2_cs_ro.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_i1.cmd_433] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1\sub_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[plainarr_cs_d.cmd_434] +RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d\plainarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStsfld.cmd_435] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld\OpCodesStsfld.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CtorFromArray_ro.cmd_436] +RelativePath=JIT\SIMD\CtorFromArray_ro\CtorFromArray_ro.cmd +WorkingDir=JIT\SIMD\CtorFromArray_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated16.cmd_437] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest16\Generated16\Generated16.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest16\Generated16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi4i1.cmd_438] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i1\_il_dbgi4i1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36030.cmd_439] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030\b36030.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_202.cmd_440] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_202\GCSimulator_202.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_202 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b464149.cmd_441] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149\b464149.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-9-1.cmd_442] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-9-1\L-2-9-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-9-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeCreateNew.cmd_443] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreateNew\FileModeCreateNew.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreateNew +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_r_loop_try.cmd_444] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try\staticFieldExpr1_r_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated195.cmd_445] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest195\Generated195\Generated195.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest195\Generated195 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102518.cmd_446] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518\b102518.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3213.cmd_447] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3213\ConvertToUInt3213.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3213 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Box_Unbox.cmd_448] +RelativePath=JIT\IL_Conformance\Old\objectmodel\Box_Unbox\Box_Unbox.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\Box_Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stret.cmd_449] +RelativePath=JIT\jit64\regress\vsw\601425\stret\stret.cmd +WorkingDir=JIT\jit64\regress\vsw\601425\stret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31283.cmd_450] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283\b31283.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString23.cmd_451] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString23\ConvertToString23.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0A_r.cmd_452] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_r\hfa_nd0A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcastclass_ldarg.cmd_453] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg\_speed_dbgcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1A_r.cmd_454] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_r\hfa_nd1A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics.cmd_455] +RelativePath=readytorun\tests\generics\generics.cmd +WorkingDir=readytorun\tests\generics +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfault_jmp.cmd_456] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp\_il_relcatchfault_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_fld.cmd_457] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld\_il_dbgi_fld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4_cs_d.cmd_458] +RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_d\i4_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated520.cmd_459] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest520\Generated520\Generated520.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest520\Generated520 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_i4.cmd_460] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i4\mul_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finalize.cmd_461] +RelativePath=GC\API\WeakReference\Finalize\Finalize.cmd +WorkingDir=GC\API\WeakReference\Finalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeName.cmd_462] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName\OpCodeName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CheckAddLong.cmd_463] +RelativePath=baseservices\threading\interlocked\add\CheckAddLong\CheckAddLong.cmd +WorkingDir=baseservices\threading\interlocked\add\CheckAddLong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct4.cmd_464] +RelativePath=JIT\jit64\gc\misc\struct4\struct4.cmd +WorkingDir=JIT\jit64\gc\misc\struct4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated143.cmd_465] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest143\Generated143\Generated143.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest143\Generated143 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGtDbl.cmd_466] +RelativePath=JIT\CodeGenBringUpTests\JTrueGtDbl\JTrueGtDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGtDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PropertyAttributesHasDefault.cmd_467] +RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault\PropertyAttributesHasDefault.cmd +WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_popi8.cmd_468] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8\StackBehaviourPopref_popi_popi8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_double_1.cmd_469] +RelativePath=Regressions\coreclr\0041\expl_double_1\expl_double_1.cmd +WorkingDir=Regressions\coreclr\0041\expl_double_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16Parse2.cmd_470] +RelativePath=CoreMangLib\cti\system\int16\Int16Parse2\Int16Parse2.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgvirtcall.cmd_471] +RelativePath=JIT\Methodical\refany\_speed_dbgvirtcall\_speed_dbgvirtcall.cmd +WorkingDir=JIT\Methodical\refany\_speed_dbgvirtcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i15.cmd_472] +RelativePath=JIT\jit64\mcc\interop\mcc_i15\mcc_i15.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null033.cmd_473] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033\box-unbox-null033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_1.cmd_474] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_1\ConvertToInt32_1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_dbg.cmd_475] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg\bne_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMemberExceptionCtor2.cmd_476] +RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2\MissingMemberExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[149926.cmd_477] +RelativePath=GC\Regressions\v2.0-beta1\149926\149926\149926.cmd +WorkingDir=GC\Regressions\v2.0-beta1\149926\149926 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[param06.cmd_478] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param06\param06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDouble_2.cmd_479] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_2\ThreadStartDouble_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToBoolean.cmd_480] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean\ByteIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102887.cmd_481] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887\b102887.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multihandler_ro.cmd_482] +RelativePath=JIT\Methodical\eh\basics\multihandler_ro\multihandler_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\multihandler_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread18.cmd_483] +RelativePath=baseservices\threading\generics\syncdelegate\GThread18\GThread18.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowexcept_r.cmd_484] +RelativePath=JIT\Methodical\eh\basics\trythrowexcept_r\trythrowexcept_r.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsizeof64.cmd_485] +RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof64\_dbgsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsmax.cmd_486] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax\_speed_dbglcsmax.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1092.cmd_487] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1092\Generated1092\Generated1092.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1092\Generated1092 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_m1.cmd_488] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_m1\_il_dbgint32_m1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_m1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated145.cmd_489] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest145\Generated145\Generated145.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest145\Generated145 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_R8.cmd_490] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8\OpCodesLdelem_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b99403.cmd_491] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403\b99403.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul1.cmd_492] +RelativePath=JIT\CodeGenBringUpTests\mul1\mul1.cmd +WorkingDir=JIT\CodeGenBringUpTests\mul1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PulseAllNull.cmd_493] +RelativePath=baseservices\threading\monitor\pulseall\PulseAllNull\PulseAllNull.cmd +WorkingDir=baseservices\threading\monitor\pulseall\PulseAllNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSurrogatePair1.cmd_494] +RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair1\CharIsSurrogatePair1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplerethrow_d.cmd_495] +RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_d\simplerethrow_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated649.cmd_496] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest649\Generated649\Generated649.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest649\Generated649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesPrivate.cmd_497] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate\MethodAttributesPrivate.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_dbg.cmd_498] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg\div_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Enum_ValueField.cmd_499] +RelativePath=Loader\classloader\Statics\Regressions\484837\Enum_ValueField\Enum_ValueField.cmd +WorkingDir=Loader\classloader\Statics\Regressions\484837\Enum_ValueField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_il_cs.cmd_500] +RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs\_dbgsin_il_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleIsNaN.cmd_501] +RelativePath=CoreMangLib\cti\system\single\SingleIsNaN\SingleIsNaN.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleIsNaN +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated8.cmd_502] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest8\Generated8\Generated8.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest8\Generated8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass012.cmd_503] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012\castclass012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_r8_r4.cmd_504] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4\_il_dbgcompat_r8_r4.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84128.cmd_505] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128\b84128.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics014.cmd_506] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014\castclass-generics014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8rem_cs_d.cmd_507] +RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_d\r8rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte.cmd_508] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte\ConvertToByte.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated79.cmd_509] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest79\Generated79\Generated79.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest79\Generated79 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1310.cmd_510] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1310\Generated1310\Generated1310.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1310\Generated1310 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_passing_struct01.cmd_511] +RelativePath=JIT\Generics\Fields\static_passing_struct01\static_passing_struct01.cmd +WorkingDir=JIT\Generics\Fields\static_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_neg_i8.cmd_512] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8\ldc_neg_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated419.cmd_513] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest419\Generated419\Generated419.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest419\Generated419 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b369916.cmd_514] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916\b369916.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated290.cmd_515] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest290\Generated290\Generated290.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest290\Generated290 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359733.cmd_516] +RelativePath=JIT\Regression\JitBlue\DevDiv_359733\DevDiv_359733\DevDiv_359733.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359733\DevDiv_359733 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionSyncRoot.cmd_517] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot\ICollectionSyncRoot.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_gc.cmd_518] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_gc\_il_reldeep_gc.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_gc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass034.cmd_519] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034\castclass034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated369.cmd_520] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest369\Generated369\Generated369.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest369\Generated369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InnerFinally.cmd_521] +RelativePath=baseservices\exceptions\unittests\InnerFinally\InnerFinally.cmd +WorkingDir=baseservices\exceptions\unittests\InnerFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArgs_ro.cmd_522] +RelativePath=JIT\SIMD\VectorArgs_ro\VectorArgs_ro.cmd +WorkingDir=JIT\SIMD\VectorArgs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter.cmd_523] +RelativePath=JIT\Directed\throwbox\filter\filter.cmd +WorkingDir=JIT\Directed\throwbox\filter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate027.cmd_524] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate027\Delegate027.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1A_r.cmd_525] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_r\hfa_sd1A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated13.cmd_526] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest13\Generated13\Generated13.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest13\Generated13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_1.cmd_527] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_1\_il_dbgint32_1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_270.cmd_528] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_270\GCSimulator_270.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_270 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b530694.cmd_529] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694\b530694.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32Parse1.cmd_530] +RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse1\UInt32Parse1.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call06_dynamic.cmd_531] +RelativePath=JIT\jit64\localloc\call\call06_dynamic\call06_dynamic.cmd +WorkingDir=JIT\jit64\localloc\call\call06_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrZero.cmd_532] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrZero\UIntPtrZero.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrZero +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldc_mulovf.cmd_533] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf\_il_dbgldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_cs_r.cmd_534] +RelativePath=JIT\Generics\ConstrainedCall\class2_cs_r\class2_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompilerGeneratedAttributeCtor.cmd_535] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor\CompilerGeneratedAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated750.cmd_536] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest750\Generated750\Generated750.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest750\Generated750 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_box_val.cmd_537] +RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val\_il_dbgrefarg_box_val.cmd +WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEqualityComparerEquals.cmd_538] +RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals\IEqualityComparerEquals.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hijacking.cmd_539] +RelativePath=JIT\Methodical\tailcall_v4\hijacking\hijacking.cmd +WorkingDir=JIT\Methodical\tailcall_v4\hijacking +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;EXCLUDED +HostStyle=0 + +[RMV-2-13-41a-two.cmd_540] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-41a-two\RMV-2-13-41a-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-41a-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56772.cmd_541] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772\b56772.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefsubbyref1_il_r.cmd_542] +RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r\byrefsubbyref1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1285.cmd_543] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1285\Generated1285\Generated1285.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1285\Generated1285 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftncalli_il_r.cmd_544] +RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r\ldvirtftncalli_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12399.cmd_545] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399\b12399.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorExp_r.cmd_546] +RelativePath=JIT\SIMD\VectorExp_r\VectorExp_r.cmd +WorkingDir=JIT\SIMD\VectorExp_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44723.cmd_547] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723\b44723.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1120.cmd_548] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1120\Generated1120\Generated1120.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1120\Generated1120 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3_cs_do.cmd_549] +RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_do\pow3_cs_do.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[faultbeforetrybody_d.cmd_550] +RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_d\faultbeforetrybody_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyemptyarray.cmd_551] +RelativePath=baseservices\threading\waithandle\waitany\waitanyemptyarray\waitanyemptyarray.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyemptyarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value002.cmd_552] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002\box-unbox-value002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finally.cmd_553] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\Finally\Finally.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\Finally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated689.cmd_554] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest689\Generated689\Generated689.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest689\Generated689 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1395.cmd_555] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1395\Generated1395\Generated1395.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1395\Generated1395 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchanget.cmd_556] +RelativePath=baseservices\threading\interlocked\exchange\exchanget\exchanget.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchanget +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14617.cmd_557] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617\b14617.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotAndNeg.cmd_558] +RelativePath=JIT\CodeGenBringUpTests\NotAndNeg\NotAndNeg.cmd +WorkingDir=JIT\CodeGenBringUpTests\NotAndNeg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte5.cmd_559] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte5\ConvertToSByte5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testExplicitOverride2.cmd_560] +RelativePath=Loader\classloader\generics\regressions\395780\testExplicitOverride2\testExplicitOverride2.cmd +WorkingDir=Loader\classloader\generics\regressions\395780\testExplicitOverride2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics018.cmd_561] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018\box-unbox-generics018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads02BFI.cmd_562] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads02BFI\CircularCctorThreeThreads02BFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads02BFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_804810.cmd_563] +RelativePath=JIT\Regression\v4\dev10_804810\dev10_804810\dev10_804810.cmd +WorkingDir=JIT\Regression\v4\dev10_804810\dev10_804810 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pluggaps.cmd_564] +RelativePath=GC\Features\HeapExpansion\pluggaps\pluggaps.cmd +WorkingDir=GC\Features\HeapExpansion\pluggaps +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise2_cs_r.cmd_565] +RelativePath=JIT\Methodical\cctor\simple\precise2_cs_r\precise2_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int64_r.cmd_566] +RelativePath=JIT\Directed\shift\int64_r\int64_r.cmd +WorkingDir=JIT\Directed\shift\int64_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b610562.cmd_567] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562\b610562.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartSByte_1.cmd_568] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_1\ThreadStartSByte_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1614.cmd_569] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1614\ConvertToUInt1614.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1614 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToDouble.cmd_570] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble\Int16IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbghan2.cmd_571] +RelativePath=JIT\Methodical\VT\etc\_speed_dbghan2\_speed_dbghan2.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartGenerics.cmd_572] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics\ThreadStartGenerics.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgknight.cmd_573] +RelativePath=JIT\Methodical\VT\etc\_dbgknight\_dbgknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbgknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFRound1.cmd_574] +RelativePath=CoreMangLib\cti\system\mathf\MathFRound1\MathFRound1.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFRound1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilefromfinally.cmd_575] +RelativePath=JIT\Methodical\eh\interactions\volatilefromfinally\volatilefromfinally.cmd +WorkingDir=JIT\Methodical\eh\interactions\volatilefromfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8_cs_d.cmd_576] +RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_d\i8_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[general_struct_static01.cmd_577] +RelativePath=JIT\Generics\Exceptions\general_struct_static01\general_struct_static01.cmd +WorkingDir=JIT\Generics\Exceptions\general_struct_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_168744.cmd_578] +RelativePath=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744\DevDiv_168744.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxenum_r.cmd_579] +RelativePath=JIT\Directed\nullabletypes\boxunboxenum_r\boxunboxenum_r.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Equality.cmd_580] +RelativePath=GC\API\GCHandle\Equality\Equality.cmd +WorkingDir=GC\API\GCHandle\Equality +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1409.cmd_581] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1409\Generated1409\Generated1409.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1409\Generated1409 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1010.cmd_582] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1010\Generated1010\Generated1010.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1010\Generated1010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relhan3_ctor.cmd_583] +RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ctor\_speed_relhan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit4_r.cmd_584] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r\tryCatchFinallyThrow_nonlocalexit4_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56159.cmd_585] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159\b56159.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed2_cs_do.cmd_586] +RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_do\mixed2_cs_do.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated844.cmd_587] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest844\Generated844\Generated844.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest844\Generated844 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[536168.cmd_588] +RelativePath=GC\Regressions\dev10bugs\536168\536168\536168.cmd +WorkingDir=GC\Regressions\dev10bugs\536168\536168 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[ldvirtftn.cmd_589] +RelativePath=JIT\IL_Conformance\Old\objectmodel\ldvirtftn\ldvirtftn.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMemberExceptionMessage.cmd_590] +RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage\MissingMemberExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1498.cmd_591] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1498\Generated1498\Generated1498.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1498\Generated1498 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetHashCode.cmd_592] +RelativePath=CoreMangLib\cti\system\type\TypeGetHashCode\TypeGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEquals3.cmd_593] +RelativePath=CoreMangLib\cti\system\guid\GuidEquals3\GuidEquals3.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEquals3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch03.cmd_594] +RelativePath=baseservices\exceptions\generics\nested-try-catch03\nested-try-catch03.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionSyncRoot.cmd_595] +RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot\ICollectionSyncRoot.cmd +WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call05_dynamic.cmd_596] +RelativePath=JIT\jit64\localloc\call\call05_dynamic\call05_dynamic.cmd +WorkingDir=JIT\jit64\localloc\call\call05_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null010.cmd_597] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010\castclass-null010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_20.cmd_598] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_20\GCSimulator_20.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToType.cmd_599] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType\UInt64IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated619.cmd_600] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest619\Generated619\Generated619.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest619\Generated619 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_I8.cmd_601] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8\OpCodesLdind_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDescriptionAttributeCtor.cmd_602] +RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor\AssemblyDescriptionAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions04.cmd_603] +RelativePath=baseservices\exceptions\generics\GenericExceptions04\GenericExceptions04.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcatchfinally_tail.cmd_604] +RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail\_speed_dbgcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DirectoryNotFoundExceptionctor1.cmd_605] +RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1\DirectoryNotFoundExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbghanoi.cmd_606] +RelativePath=JIT\Methodical\VT\etc\_speed_dbghanoi\_speed_dbghanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbghanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamReaderNull_PSC.cmd_607] +RelativePath=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC\StreamReaderNull_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryCatchInFinally.cmd_608] +RelativePath=baseservices\exceptions\unittests\TryCatchInFinally\TryCatchInFinally.cmd +WorkingDir=baseservices\exceptions\unittests\TryCatchInFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1144.cmd_609] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1144\Generated1144\Generated1144.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1144\Generated1144 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface13.cmd_610] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface13\MultipleInterface13.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryfault_r.cmd_611] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r\nestedtryfault_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89277.cmd_612] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277\b89277.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_158.cmd_613] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_158\GCSimulator_158.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bytemark.cmd_614] +RelativePath=JIT\Performance\CodeQuality\Bytemark\Bytemark\Bytemark.cmd +WorkingDir=JIT\Performance\CodeQuality\Bytemark\Bytemark +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated240.cmd_615] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest240\Generated240\Generated240.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest240\Generated240 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_280123.cmd_616] +RelativePath=JIT\Regression\JitBlue\DevDiv_280123\DevDiv_280123\DevDiv_280123.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_280123\DevDiv_280123 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Exceptions.cmd_617] +RelativePath=baseservices\exceptions\regressions\V1\SEH\coverage\Exceptions\Exceptions.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\coverage\Exceptions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16ToString4.cmd_618] +RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString4\UInt16ToString4.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorDot_ro.cmd_619] +RelativePath=JIT\SIMD\VectorDot_ro\VectorDot_ro.cmd +WorkingDir=JIT\SIMD\VectorDot_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TrackResurrection.cmd_620] +RelativePath=GC\API\WeakReference\TrackResurrection\TrackResurrection.cmd +WorkingDir=GC\API\WeakReference\TrackResurrection +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Base_3.cmd_621] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_3\Test_CSharp_Base_3.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated405.cmd_622] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest405\Generated405\Generated405.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest405\Generated405 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25507.cmd_623] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507\b25507.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U4.cmd_624] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4\OpCodesConv_Ovf_U4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_50_do.cmd_625] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do\throwinfinally_50_do.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEntryKey.cmd_626] +RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey\DictionaryEntryKey.cmd +WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_i8_u8.cmd_627] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8\ldc_conv_ovf_i8_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BubbleSort2.cmd_628] +RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2\BubbleSort2.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1C_d.cmd_629] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_d\hfa_nd1C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToChar.cmd_630] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToChar\IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relthrow.cmd_631] +RelativePath=JIT\Methodical\casts\SEH\_speed_relthrow\_speed_relthrow.cmd +WorkingDir=JIT\Methodical\casts\SEH\_speed_relthrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventAttributesRTSpecialName.cmd_632] +RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName\EventAttributesRTSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToUint32.cmd_633] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32\EnumIConvertibleToUint32.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_i.cmd_634] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i\starg_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14199.cmd_635] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199\b14199.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated220.cmd_636] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest220\Generated220\Generated220.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest220\Generated220 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcs_ulong.cmd_637] +RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong\_speed_dbglcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16328.cmd_638] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328\b16328.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badldsfld_il_r.cmd_639] +RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r\badldsfld_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null028.cmd_640] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028\castclass-null028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct1.cmd_641] +RelativePath=JIT\jit64\gc\misc\struct1\struct1.cmd +WorkingDir=JIT\jit64\gc\misc\struct1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated105.cmd_642] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest105\Generated105\Generated105.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest105\Generated105 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToInt64.cmd_643] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt64\CharIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated867.cmd_644] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest867\Generated867\Generated867.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest867\Generated867 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToByte.cmd_645] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToByte\StringIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated465.cmd_646] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest465\Generated465\Generated465.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest465\Generated465 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[csgen.1.cmd_647] +RelativePath=hosting\stress\testset1\csgen.1\csgen.1.cmd +WorkingDir=hosting\stress\testset1\csgen.1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch06.cmd_648] +RelativePath=baseservices\exceptions\generics\nested-try-catch06\nested-try-catch06.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4flat_cs_do.cmd_649] +RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_do\r4flat_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UserExceptionThread.cmd_650] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\UserExceptionThread\UserExceptionThread.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\UserExceptionThread +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread22.cmd_651] +RelativePath=baseservices\threading\generics\TimerCallback\thread22\thread22.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_i2_bool.cmd_652] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_i2_bool\_il_relcompat_i2_bool.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i2_bool +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b143840.cmd_653] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840\b143840.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[struct01_static.cmd_654] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static\struct01_static.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNmul_cs_d.cmd_655] +RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_d\r4NaNmul_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1318.cmd_656] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1318\Generated1318\Generated1318.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1318\Generated1318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16886.cmd_657] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886\b16886.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_cs_r.cmd_658] +RelativePath=JIT\Directed\shift\uint8_cs_r\uint8_cs_r.cmd +WorkingDir=JIT\Directed\shift\uint8_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleCompareTo1.cmd_659] +RelativePath=CoreMangLib\cti\system\double\DoubleCompareTo1\DoubleCompareTo1.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleCompareTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct_static01.cmd_660] +RelativePath=JIT\Generics\MemberAccess\struct_static01\struct_static01.cmd +WorkingDir=JIT\Generics\MemberAccess\struct_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsuperlong.cmd_661] +RelativePath=JIT\Methodical\int64\superlong\_il_dbgsuperlong\_il_dbgsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_il_dbgsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1404.cmd_662] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1404\Generated1404\Generated1404.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1404\Generated1404 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbsSqrt_ro.cmd_663] +RelativePath=JIT\SIMD\AbsSqrt_ro\AbsSqrt_ro.cmd +WorkingDir=JIT\SIMD\AbsSqrt_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_179.cmd_664] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_179\GCSimulator_179.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_179 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test1337.cmd_665] +RelativePath=Regressions\coreclr\1337\Test1337\Test1337.cmd +WorkingDir=Regressions\coreclr\1337\Test1337 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_105.cmd_666] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_105\GCSimulator_105.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_105 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorDot_r.cmd_667] +RelativePath=JIT\SIMD\VectorDot_r\VectorDot_r.cmd +WorkingDir=JIT\SIMD\VectorDot_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16Parse3.cmd_668] +RelativePath=CoreMangLib\cti\system\int16\Int16Parse3\Int16Parse3.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollectionsICollectionCopyTo.cmd_669] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92568.cmd_670] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568\b92568.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToInt64.cmd_671] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64\DoubleIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_r.cmd_672] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_r\callconv2_cs_r.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[labelbeginningfinally_r.cmd_673] +RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_r\labelbeginningfinally_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics022.cmd_674] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022\box-unbox-generics022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread10.cmd_675] +RelativePath=baseservices\threading\generics\TimerCallback\thread10\thread10.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68028.cmd_676] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028\b68028.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamDispose2_PSC.cmd_677] +RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC\StreamDispose2_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics028.cmd_678] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028\box-unbox-generics028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[devdiv_180411.cmd_679] +RelativePath=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411\devdiv_180411.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_do.cmd_680] +RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do\doublearr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null001.cmd_681] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001\castclass-null001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CLSCompliantAttributeIsCompliant.cmd_682] +RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant\CLSCompliantAttributeIsCompliant.cmd +WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unsafe_ro.cmd_683] +RelativePath=JIT\Methodical\eh\cs\unsafe_ro\unsafe_ro.cmd +WorkingDir=JIT\Methodical\eh\cs\unsafe_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeIsByRefImpl.cmd_684] +RelativePath=CoreMangLib\cti\system\type\TypeIsByRefImpl\TypeIsByRefImpl.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeIsByRefImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated903.cmd_685] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest903\Generated903\Generated903.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest903\Generated903 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringFormat1.cmd_686] +RelativePath=CoreMangLib\cti\system\string\StringFormat1\StringFormat1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringFormat1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToInt64.cmd_687] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64\Int16IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsProperty.cmd_688] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty\AttributeTargetsProperty.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics021.cmd_689] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021\castclass-generics021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldfld_mulovf.cmd_690] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf\_speed_dbgs_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanToString.cmd_691] +RelativePath=CoreMangLib\cti\system\boolean\BooleanToString\BooleanToString.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated524.cmd_692] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest524\Generated524\Generated524.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest524\Generated524 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29351.cmd_693] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351\b29351.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldelemnullarr2_il_d.cmd_694] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d\ldelemnullarr2_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor3.cmd_695] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3\DictionaryCtor3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b147147.cmd_696] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147\b147147.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToChar.cmd_697] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToChar\DecimalToChar.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedfinally_d.cmd_698] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_d\throwinnestedfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated0.cmd_699] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest0\Generated0\Generated0.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest0\Generated0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relisinst_call.cmd_700] +RelativePath=JIT\Methodical\casts\coverage\_relisinst_call\_relisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteGetHashCode.cmd_701] +RelativePath=CoreMangLib\cti\system\sbyte\SByteGetHashCode\SByteGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGeFP.cmd_702] +RelativePath=JIT\CodeGenBringUpTests\JTrueGeFP\JTrueGeFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGeFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61215.cmd_703] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215\b61215.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ccse_cs_d.cmd_704] +RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_d\ccse_cs_d.cmd +WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated95.cmd_705] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest95\Generated95\Generated95.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest95\Generated95 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refTypesdynamic.cmd_706] +RelativePath=JIT\Generics\Typeof\refTypesdynamic\refTypesdynamic.cmd +WorkingDir=JIT\Generics\Typeof\refTypesdynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumeratorMoveNext.cmd_707] +RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext\EnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat7.cmd_708] +RelativePath=CoreMangLib\cti\system\string\StringConcat7\StringConcat7.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase0.cmd_709] +RelativePath=Loader\classloader\InterfaceFolding\TestCase0\TestCase0.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_377155.cmd_710] +RelativePath=JIT\Regression\JitBlue\DevDiv_377155\DevDiv_377155\DevDiv_377155.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_377155\DevDiv_377155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Crypto.cmd_711] +RelativePath=JIT\Performance\CodeQuality\V8\Crypto\Crypto\Crypto.cmd +WorkingDir=JIT\Performance\CodeQuality\V8\Crypto\Crypto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated9.cmd_712] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest9\Generated9\Generated9.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest9\Generated9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread17.cmd_713] +RelativePath=baseservices\threading\generics\WaitCallback\thread17\thread17.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcastclass_call.cmd_714] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call\_speed_dbgcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_317.cmd_715] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_317\GCSimulator_317.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_317 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch1_r.cmd_716] +RelativePath=JIT\Directed\leave\catch1_r\catch1_r.cmd +WorkingDir=JIT\Directed\leave\catch1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_3.cmd_717] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3\OpCodesLdc_I4_3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relnative.cmd_718] +RelativePath=JIT\Methodical\refany\_relnative\_relnative.cmd +WorkingDir=JIT\Methodical\refany\_relnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldrem_cs_do.cmd_719] +RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_do\lclfldrem_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACA_d.cmd_720] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d\CGRecurseACA_d.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackCtor3.cmd_721] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor3\StackCtor3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcatchfinally.cmd_722] +RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally\_speed_relcatchfinally.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcparaminreg.cmd_723] +RelativePath=JIT\jit64\gc\misc\gcparaminreg\gcparaminreg.cmd +WorkingDir=JIT\jit64\gc\misc\gcparaminreg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reltest1.cmd_724] +RelativePath=JIT\Methodical\Invoke\callvirt\_speed_reltest1\_speed_reltest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_reltest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_do.cmd_725] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_do\callconv1_cs_do.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManyGenConstraints.cmd_726] +RelativePath=Loader\classloader\generics\Constraints\General\ManyGenConstraints\ManyGenConstraints.cmd +WorkingDir=Loader\classloader\generics\Constraints\General\ManyGenConstraints +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructLayoutAttributeValue.cmd_727] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue\StructLayoutAttributeValue.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated877.cmd_728] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest877\Generated877\Generated877.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest877\Generated877 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated175.cmd_729] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest175\Generated175\Generated175.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest175\Generated175 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_83.cmd_730] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_83\GCSimulator_83.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_83 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToUInt64.cmd_731] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64\BooleanIConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated824.cmd_732] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest824\Generated824\Generated824.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest824\Generated824 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_152.cmd_733] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_152\GCSimulator_152.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_152 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b58866.cmd_734] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866\b58866.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar15.cmd_735] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar15\ConvertToChar15.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgiface1.cmd_736] +RelativePath=JIT\Methodical\casts\iface\_speed_dbgiface1\_speed_dbgiface1.cmd +WorkingDir=JIT\Methodical\casts\iface\_speed_dbgiface1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14355.cmd_737] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355\b14355.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameFlagsPublicKey.cmd_738] +RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey\AssemblyNameFlagsPublicKey.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_i2.cmd_739] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2\add_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeSize8.cmd_740] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8\PackingSizeSize8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox041.cmd_741] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041\box-unbox041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter2_r.cmd_742] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r\throwinfinallyintryfilter2_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohcompactapi_exceptions.cmd_743] +RelativePath=GC\Features\LOHCompaction\lohcompactapi_exceptions\lohcompactapi_exceptions.cmd +WorkingDir=GC\Features\LOHCompaction\lohcompactapi_exceptions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated621.cmd_744] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest621\Generated621\Generated621.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest621\Generated621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bool_cs_do.cmd_745] +RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_do\bool_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellengthm2.cmd_746] +RelativePath=JIT\Methodical\Arrays\misc\_il_rellengthm2\_il_rellengthm2.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_rellengthm2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1496.cmd_747] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1496\Generated1496\Generated1496.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1496\Generated1496 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13170.cmd_748] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170\b13170.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetTypeFromHandle.cmd_749] +RelativePath=CoreMangLib\cti\system\type\TypeGetTypeFromHandle\TypeGetTypeFromHandle.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetTypeFromHandle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4div_cs_d.cmd_750] +RelativePath=JIT\Methodical\divrem\div\r4div_cs_d\r4div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\r4div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated416.cmd_751] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest416\Generated416\Generated416.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest416\Generated416 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2B_r.cmd_752] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_r\hfa_sd2B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b88712.cmd_753] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712\b88712.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit09.cmd_754] +RelativePath=baseservices\threading\generics\Monitor\EnterExit09\EnterExit09.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_356.cmd_755] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_356\GCSimulator_356.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_356 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated364.cmd_756] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest364\Generated364\Generated364.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest364\Generated364 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-4.cmd_757] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-4\_speed_relunsafe-4.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftn.cmd_758] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn\ldvirtftn.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFFloor.cmd_759] +RelativePath=CoreMangLib\cti\system\mathf\MathFFloor\MathFFloor.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFFloor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated748.cmd_760] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest748\Generated748\Generated748.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest748\Generated748 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_do.cmd_761] +RelativePath=JIT\Directed\shift\int16_do\int16_do.cmd +WorkingDir=JIT\Directed\shift\int16_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53884.cmd_762] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884\b53884.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsWhiteSpace1.cmd_763] +RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace1\CharIsWhiteSpace1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1354.cmd_764] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1354\Generated1354\Generated1354.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1354\Generated1354 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchbackwardswithcatch_r.cmd_765] +RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r\branchbackwardswithcatch_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated298.cmd_766] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest298\Generated298\Generated298.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest298\Generated298 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FiltFallThru.cmd_767] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\FiltFallThru\FiltFallThru.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\FiltFallThru +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[negSignedMod.cmd_768] +RelativePath=JIT\Methodical\divrem\div\negSignedMod\negSignedMod.cmd +WorkingDir=JIT\Methodical\divrem\div\negSignedMod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02.cmd_769] +RelativePath=JIT\Generics\Instantiation\Interfaces\class02\class02.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\class02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadExceptionCtor2.cmd_770] +RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2\TypeLoadExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToByte.cmd_771] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToByte\Int64IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated409.cmd_772] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest409\Generated409\Generated409.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest409\Generated409 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated976.cmd_773] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest976\Generated976\Generated976.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest976\Generated976 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated27.cmd_774] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest27\Generated27\Generated27.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest27\Generated27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated23.cmd_775] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest23\Generated23\Generated23.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest23\Generated23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics024.cmd_776] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024\castclass-generics024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IComparerCompare.cmd_777] +RelativePath=CoreMangLib\cti\system\collections\icomparer\IComparerCompare\IComparerCompare.cmd +WorkingDir=CoreMangLib\cti\system\collections\icomparer\IComparerCompare +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32Equals1.cmd_778] +RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals1\UInt32Equals1.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14057.cmd_779] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057\b14057.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02a_seq.cmd_780] +RelativePath=Loader\classloader\generics\Layout\General\Base02a_seq\Base02a_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02a_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow03_add.cmd_781] +RelativePath=JIT\jit64\rtchecks\overflow\overflow03_add\overflow03_add.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_782] +RelativePath=Loader\classloader\TSAmbiguities\SameMethodImpl\Override\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\SameMethodImpl\Override\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedFilt.cmd_783] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\NestedFilt\NestedFilt.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\NestedFilt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gc.cmd_784] +RelativePath=GC\Scenarios\Samples\gc\gc.cmd +WorkingDir=GC\Scenarios\Samples\gc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyAttrs.cmd_785] +RelativePath=Loader\versioning\coverage\AssemblyAttrs\AssemblyAttrs.cmd +WorkingDir=Loader\versioning\coverage\AssemblyAttrs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated72.cmd_786] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest72\Generated72\Generated72.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest72\Generated72 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrToInt64.cmd_787] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt64\IntPtrToInt64.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter001.cmd_788] +RelativePath=baseservices\exceptions\generics\TypeParameter001\TypeParameter001.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentonongen03.cmd_789] +RelativePath=JIT\Generics\Conversions\Reference\gentonongen03\gentonongen03.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentonongen03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2G_d.cmd_790] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_d\hfa_nd2G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_u4.cmd_791] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4\ldc_sub_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeTruncate.cmd_792] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeTruncate\FileModeTruncate.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeTruncate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[103087.cmd_793] +RelativePath=JIT\jit64\regress\ddb\103087\103087\103087.cmd +WorkingDir=JIT\jit64\regress\ddb\103087\103087 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1137.cmd_794] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1137\Generated1137\Generated1137.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1137\Generated1137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[valuetuple.cmd_795] +RelativePath=JIT\Methodical\structs\valuetuple\valuetuple.cmd +WorkingDir=JIT\Methodical\structs\valuetuple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgsizeof32.cmd_796] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32\_speed_dbgsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_HndIndex_10_Plain.cmd_797] +RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain\Test_HndIndex_10_Plain.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_r4_r8.cmd_798] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8\_il_dbgcompat_r4_r8.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameSetPublicKey.cmd_799] +RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey\AssemblyNameSetPublicKey.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst_ro.cmd_800] +RelativePath=JIT\Directed\nullabletypes\isinst_ro\isinst_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated618.cmd_801] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest618\Generated618\Generated618.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest618\Generated618 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_34.cmd_802] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_34\GCSimulator_34.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_34 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs2.cmd_803] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs2\_dbglcs2.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_r8.cmd_804] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8\_il_dbgrefloc_r8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated651.cmd_805] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest651\Generated651\Generated651.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest651\Generated651 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_implicit.cmd_806] +RelativePath=JIT\Methodical\tailcall\_il_reltest_implicit\_il_reltest_implicit.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_implicit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2G_d.cmd_807] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_d\hfa_sf2G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FilterToHandler.cmd_808] +RelativePath=JIT\Directed\coverage\compiler\FilterToHandler\FilterToHandler.cmd +WorkingDir=JIT\Directed\coverage\compiler\FilterToHandler +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret5_3.cmd_809] +RelativePath=JIT\jit64\gc\misc\structret5_3\structret5_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret5_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread01.cmd_810] +RelativePath=baseservices\threading\generics\threadstart\GThread01\GThread01.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[_relgc_nested.cmd_811] +RelativePath=JIT\Methodical\VT\etc\_relgc_nested\_relgc_nested.cmd +WorkingDir=JIT\Methodical\VT\etc\_relgc_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarrres.cmd_812] +RelativePath=JIT\Methodical\Arrays\misc\_il_relarrres\_il_relarrres.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relarrres +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RightShiftRef.cmd_813] +RelativePath=JIT\CodeGenBringUpTests\RightShiftRef\RightShiftRef.cmd +WorkingDir=JIT\CodeGenBringUpTests\RightShiftRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated880.cmd_814] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest880\Generated880\Generated880.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest880\Generated880 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_328.cmd_815] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_328\GCSimulator_328.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_328 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionContains.cmd_816] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains\DictionaryICollectionContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[comparable.cmd_817] +RelativePath=JIT\opt\Devirtualization\comparable\comparable.cmd +WorkingDir=JIT\opt\Devirtualization\comparable +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_2610.cmd_818] +RelativePath=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610\GitHub_2610.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToInt64.cmd_819] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64\IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorAbs_r.cmd_820] +RelativePath=JIT\SIMD\VectorAbs_r\VectorAbs_r.cmd +WorkingDir=JIT\SIMD\VectorAbs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringToString1.cmd_821] +RelativePath=CoreMangLib\cti\system\string\StringToString1\StringToString1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableEquals2.cmd_822] +RelativePath=CoreMangLib\cti\system\nullable\NullableEquals2\NullableEquals2.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NDhrystone.cmd_823] +RelativePath=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone\NDhrystone.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitfromnestedcatch_d.cmd_824] +RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d\nonlocalexitfromnestedcatch_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorGet_r.cmd_825] +RelativePath=JIT\SIMD\VectorGet_r\VectorGet_r.cmd +WorkingDir=JIT\SIMD\VectorGet_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tostring_do.cmd_826] +RelativePath=JIT\Directed\nullabletypes\tostring_do\tostring_do.cmd +WorkingDir=JIT\Directed\nullabletypes\tostring_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1452.cmd_827] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1452\Generated1452\Generated1452.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1452\Generated1452 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31321.cmd_828] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321\b31321.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray2_cs_do.cmd_829] +RelativePath=JIT\Methodical\doublearray\dblarray2_cs_do\dblarray2_cs_do.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_ldlen.cmd_830] +RelativePath=JIT\Methodical\casts\array\_il_dbgisinst_ldlen\_il_dbgisinst_ldlen.cmd +WorkingDir=JIT\Methodical\casts\array\_il_dbgisinst_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCtorChar.cmd_831] +RelativePath=CoreMangLib\cti\system\string\StringCtorChar\StringCtorChar.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCtorChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated101.cmd_832] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest101\Generated101\Generated101.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest101\Generated101 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListCtor3.cmd_833] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor3\ListCtor3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_r.cmd_834] +RelativePath=JIT\Directed\shift\uint32_r\uint32_r.cmd +WorkingDir=JIT\Directed\shift\uint32_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor5.cmd_835] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor5\DecimalCtor5.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14422.cmd_836] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422\b14422.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null039.cmd_837] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039\castclass-null039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueContains.cmd_838] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueContains\QueueContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt163.cmd_839] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt163\ConvertToUInt163.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt163 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91377.cmd_840] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377\b91377.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1281.cmd_841] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1281\Generated1281\Generated1281.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1281\Generated1281 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesVolatile.cmd_842] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile\OpCodesVolatile.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19394.cmd_843] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394\b19394.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_9.cmd_844] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_9\ConvertToInt64_9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbghan3_ctor.cmd_845] +RelativePath=JIT\Methodical\VT\etc\_dbghan3_ctor\_dbghan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3210.cmd_846] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3210\ConvertToUInt3210.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3210 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalgotoinatryblockinahandler_ro.cmd_847] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro\nonlocalgotoinatryblockinahandler_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_i_u2.cmd_848] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i_u2\_il_dbgcompat_i_u2.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_ro_loop.cmd_849] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_ro_loop\simpleexpr4_ro_loop.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_ro_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72932.cmd_850] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932\b72932.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated861.cmd_851] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest861\Generated861\Generated861.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest861\Generated861 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimaFloor.cmd_852] +RelativePath=CoreMangLib\cti\system\decimal\DecimaFloor\DecimaFloor.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimaFloor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread08.cmd_853] +RelativePath=baseservices\threading\generics\syncdelegate\GThread08\GThread08.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-05_cs_do.cmd_854] +RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_do\5w1d-05_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPConvDbl2Lng.cmd_855] +RelativePath=JIT\CodeGenBringUpTests\FPConvDbl2Lng\FPConvDbl2Lng.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPConvDbl2Lng +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_415.cmd_856] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_415\GCSimulator_415.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_415 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldsfld_mulovf.cmd_857] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf\_il_dbgldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloca.cmd_858] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca\OpCodesLdloca.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_17.cmd_859] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_17\ConvertToInt32_17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated848.cmd_860] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest848\Generated848\Generated848.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest848\Generated848 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReturnFromCatch.cmd_861] +RelativePath=baseservices\exceptions\unittests\ReturnFromCatch\ReturnFromCatch.cmd +WorkingDir=baseservices\exceptions\unittests\ReturnFromCatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics043.cmd_862] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043\castclass-generics043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_336.cmd_863] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_336\GCSimulator_336.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_336 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_291.cmd_864] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_291\GCSimulator_291.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_291 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DllNotFoundException1.cmd_865] +RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1\DllNotFoundException1.cmd +WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32MaxValue.cmd_866] +RelativePath=CoreMangLib\cti\system\int\Int32MaxValue\Int32MaxValue.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32MaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread23.cmd_867] +RelativePath=baseservices\threading\generics\WaitCallback\thread23\thread23.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgtest1.cmd_868] +RelativePath=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1\_speed_dbgtest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterNull.cmd_869] +RelativePath=baseservices\threading\monitor\enter\EnterNull\EnterNull.cmd +WorkingDir=baseservices\threading\monitor\enter\EnterNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartNull2.cmd_870] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull2\ThreadStartNull2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07341.cmd_871] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341\b07341.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldfld_mul.cmd_872] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul\_il_dbgldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstboxed_r.cmd_873] +RelativePath=JIT\Directed\nullabletypes\isinstboxed_r\isinstboxed_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstboxed_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Rethrow2.cmd_874] +RelativePath=JIT\Directed\IL\rethrow\Rethrow2\Rethrow2.cmd +WorkingDir=JIT\Directed\IL\rethrow\Rethrow2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[30032.cmd_875] +RelativePath=baseservices\threading\regressions\30032\30032\30032.cmd +WorkingDir=baseservices\threading\regressions\30032\30032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null034.cmd_876] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034\box-unbox-null034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_ro.cmd_877] +RelativePath=JIT\Directed\shift\uint32_ro\uint32_ro.cmd +WorkingDir=JIT\Directed\shift\uint32_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Xor_Op_cs_do.cmd_878] +RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_do\Float_Xor_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2G_d.cmd_879] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_d\hfa_nf2G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated860.cmd_880] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest860\Generated860\Generated860.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest860\Generated860 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_MutexNullRefEx.cmd_881] +RelativePath=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx\CS_MutexNullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_d.cmd_882] +RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_d\classarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToUInt32.cmd_883] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32\SByteIConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11490.cmd_884] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490\b11490.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex2.cmd_885] +RelativePath=baseservices\threading\waithandle\waitall\waitallex2\waitallex2.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics020.cmd_886] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020\box-unbox-generics020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29343.cmd_887] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343\b29343.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_and.cmd_888] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_and\VolatileTest_op_and.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_and +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar8.cmd_889] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar8\ConvertToChar8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_50_d.cmd_890] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d\throwinfinally_50_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated486.cmd_891] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest486\Generated486\Generated486.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest486\Generated486 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics029.cmd_892] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029\box-unbox-generics029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ehDescriptorPtrUpdate.cmd_893] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate\ehDescriptorPtrUpdate.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated367.cmd_894] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest367\Generated367\Generated367.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest367\Generated367 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumps2.cmd_895] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumps2\_il_reljumps2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpledeadehregion_d.cmd_896] +RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_d\simpledeadehregion_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278523.cmd_897] +RelativePath=JIT\Regression\JitBlue\DevDiv_278523\DevDiv_278523\DevDiv_278523.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278523\DevDiv_278523 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_vfld.cmd_898] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld\_il_dbgi_vfld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics007.cmd_899] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007\castclass-generics007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads2_cs_r.cmd_900] +RelativePath=JIT\Methodical\cctor\misc\threads2_cs_r\threads2_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackTracePreserveTests.cmd_901] +RelativePath=baseservices\exceptions\StackTracePreserve\StackTracePreserveTests\StackTracePreserveTests.cmd +WorkingDir=baseservices\exceptions\StackTracePreserve\StackTracePreserveTests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Indexer.cmd_902] +RelativePath=JIT\Performance\CodeQuality\Span\Indexer\Indexer.cmd +WorkingDir=JIT\Performance\CodeQuality\Span\Indexer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest3.cmd_903] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest3\_il_dbgtest3.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CtorsAndProperties.cmd_904] +RelativePath=GC\API\GCHandleCollector\CtorsAndProperties\CtorsAndProperties.cmd +WorkingDir=GC\API\GCHandleCollector\CtorsAndProperties +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcatchfinally.cmd_905] +RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally\_speed_dbgcatchfinally.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeTypeNternal.cmd_906] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal\OpCodeTypeNternal.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1479.cmd_907] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1479\Generated1479\Generated1479.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1479\Generated1479 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test1549.cmd_908] +RelativePath=Regressions\coreclr\1549\Test1549\Test1549.cmd +WorkingDir=Regressions\coreclr\1549\Test1549 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59508.cmd_909] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508\b59508.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated544.cmd_910] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest544\Generated544\Generated544.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest544\Generated544 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeFieldHandleGetHashCode.cmd_911] +RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode\RuntimeFieldHandleGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int64_ro.cmd_912] +RelativePath=JIT\Directed\shift\int64_ro\int64_ro.cmd +WorkingDir=JIT\Directed\shift\int64_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_r8.cmd_913] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r8\_il_relhuge_r8.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_165.cmd_914] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_165\GCSimulator_165.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_165 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcvariant3.cmd_915] +RelativePath=GC\Scenarios\Boxing\gcvariant3\gcvariant3.cmd +WorkingDir=GC\Scenarios\Boxing\gcvariant3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Xor_Op_cs_r.cmd_916] +RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_r\Float_Xor_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_362.cmd_917] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_362\GCSimulator_362.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_362 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated570.cmd_918] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest570\Generated570\Generated570.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest570\Generated570 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefanyval.cmd_919] +RelativePath=JIT\Methodical\xxobj\operand\_relrefanyval\_relrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_relrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToUint16.cmd_920] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16\EnumIConvertibleToUint16.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter006.cmd_921] +RelativePath=baseservices\exceptions\generics\TypeParameter006\TypeParameter006.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparisonBeginInvoke.cmd_922] +RelativePath=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke\ComparisonBeginInvoke.cmd +WorkingDir=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple-repro.cmd_923] +RelativePath=JIT\jit64\regress\vsw\528315\simple-repro\simple-repro.cmd +WorkingDir=JIT\jit64\regress\vsw\528315\simple-repro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntrinsicTest_Overflow.cmd_924] +RelativePath=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow\IntrinsicTest_Overflow.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartCast_2.cmd_925] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_2\ThreadStartCast_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seh_tests.cmd_926] +RelativePath=JIT\IL_Conformance\Old\objectmodel\seh_tests\seh_tests.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\seh_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcatchfinally_tail.cmd_927] +RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail\_speed_relcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value045.cmd_928] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045\box-unbox-value045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16Parse1.cmd_929] +RelativePath=CoreMangLib\cti\system\int16\Int16Parse1\Int16Parse1.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated153.cmd_930] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest153\Generated153\Generated153.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest153\Generated153 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FinalizeTimeout.cmd_931] +RelativePath=GC\Scenarios\FinalizeTimeout\FinalizeTimeout\FinalizeTimeout.cmd +WorkingDir=GC\Scenarios\FinalizeTimeout\FinalizeTimeout +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[Generated989.cmd_932] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest989\Generated989\Generated989.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest989\Generated989 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray2_cs_ro.cmd_933] +RelativePath=JIT\Methodical\doublearray\dblarray2_cs_ro\dblarray2_cs_ro.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01a_seq_ser.cmd_934] +RelativePath=Loader\classloader\generics\Layout\General\Base01a_seq_ser\Base01a_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01a_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Jmp1.cmd_935] +RelativePath=JIT\CodeGenBringUpTests\Jmp1\Jmp1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Jmp1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex11.cmd_936] +RelativePath=baseservices\threading\waithandle\waitall\waitallex11\waitallex11.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-05_cs_r.cmd_937] +RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_r\5w1d-05_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumToString.cmd_938] +RelativePath=CoreMangLib\cti\system\enum\EnumToString\EnumToString.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestAPIs.cmd_939] +RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestAPIs\TestAPIs.cmd +WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestAPIs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Box_Unbox.cmd_940] +RelativePath=JIT\Directed\PREFIX\unaligned\1\Box_Unbox\Box_Unbox.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\Box_Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[oponerror_d.cmd_941] +RelativePath=JIT\Methodical\eh\leaves\oponerror_d\oponerror_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\oponerror_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_do.cmd_942] +RelativePath=JIT\Methodical\NaN\arithm32_do\arithm32_do.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trashreg_il_d.cmd_943] +RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_d\trashreg_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineBrTarget.cmd_944] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget\OperandTypeInlineBrTarget.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4rem_cs_do.cmd_945] +RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_do\i4rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_30_r.cmd_946] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r\throwinfinallynestedintry_30_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_9.cmd_947] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_9\ConvertToInt16_9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32GetHashCode.cmd_948] +RelativePath=CoreMangLib\cti\system\uint32\UInt32GetHashCode\UInt32GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_do.cmd_949] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_do\callconv2_cs_do.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_r4.cmd_950] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r4\ldarg_s_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDecimal_2.cmd_951] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_2\ThreadStartDecimal_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatileLocal2.cmd_952] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2\volatileLocal2.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated360.cmd_953] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest360\Generated360\Generated360.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest360\Generated360 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort11.cmd_954] +RelativePath=CoreMangLib\cti\system\array\ArraySort11\ArraySort11.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor1.cmd_955] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1\StringBuilderctor1.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[getgeneration.cmd_956] +RelativePath=GC\LargeMemory\API\gc\getgeneration\getgeneration.cmd +WorkingDir=GC\LargeMemory\API\gc\getgeneration +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[VectorInitN_ro.cmd_957] +RelativePath=JIT\SIMD\VectorInitN_ro\VectorInitN_ro.cmd +WorkingDir=JIT\SIMD\VectorInitN_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedCompareExchange5.cmd_958] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5\InterlockedCompareExchange5.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[And1.cmd_959] +RelativePath=JIT\CodeGenBringUpTests\And1\And1.cmd +WorkingDir=JIT\CodeGenBringUpTests\And1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotarg_valref.cmd_960] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_valref\_il_relrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_370233.cmd_961] +RelativePath=JIT\Regression\JitBlue\DevDiv_370233\DevDiv_370233\DevDiv_370233.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_370233\DevDiv_370233 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleDispose2_PSC.cmd_962] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC\SafeHandleDispose2_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfaulttrycatchfn_d.cmd_963] +RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d\tryfaulttrycatchfn_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[plainarr_cs_r.cmd_964] +RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r\plainarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1432.cmd_965] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1432\Generated1432\Generated1432.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1432\Generated1432 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b409748.cmd_966] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748\b409748.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated1366.cmd_967] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1366\Generated1366\Generated1366.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1366\Generated1366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated645.cmd_968] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest645\Generated645\Generated645.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest645\Generated645 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[implicitConv.cmd_969] +RelativePath=JIT\Directed\Convert\implicitConv\implicitConv.cmd +WorkingDir=JIT\Directed\Convert\implicitConv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80373.cmd_970] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373\b80373.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyKeyFileAttributeCtor.cmd_971] +RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor\AssemblyKeyFileAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullcomparaison_r.cmd_972] +RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r\nullcomparaison_r.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbginstftn_t.cmd_973] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t\_il_dbginstftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowStaticFieldBFI.cmd_974] +RelativePath=Loader\classloader\TypeInitialization\CoreCLR\CctorThrowStaticFieldBFI\CctorThrowStaticFieldBFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CoreCLR\CctorThrowStaticFieldBFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_div.cmd_975] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_div\VolatileTest_op_div.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byte_cs_r.cmd_976] +RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_r\byte_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b473131_struct.cmd_977] +RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_struct\b473131_struct.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_struct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_97.cmd_978] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_97\GCSimulator_97.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_97 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesSerializable.cmd_979] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable\TypeAttributesSerializable.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated990.cmd_980] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest990\Generated990\Generated990.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest990\Generated990 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26863.cmd_981] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863\b26863.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1060.cmd_982] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1060\Generated1060\Generated1060.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1060\Generated1060 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct09.cmd_983] +RelativePath=baseservices\exceptions\generics\try-catch-struct09\try-catch-struct09.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_i4.cmd_984] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i4\rem_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleEpsilon.cmd_985] +RelativePath=CoreMangLib\cti\system\double\DoubleEpsilon\DoubleEpsilon.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleEpsilon +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[client.cmd_986] +RelativePath=Loader\binding\assemblies\assemblybugs\203962w\client\client.cmd +WorkingDir=Loader\binding\assemblies\assemblybugs\203962w\client +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_443322.cmd_987] +RelativePath=Loader\classloader\regressions\dev10_443322\dev10_443322\dev10_443322.cmd +WorkingDir=Loader\classloader\regressions\dev10_443322\dev10_443322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fielda_tests.cmd_988] +RelativePath=JIT\Directed\PREFIX\unaligned\2\fielda_tests\fielda_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\fielda_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNdiv_cs_ro.cmd_989] +RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_ro\r8NaNdiv_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated709.cmd_990] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest709\Generated709\Generated709.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest709\Generated709 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b409617.cmd_991] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617\b409617.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated508.cmd_992] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest508\Generated508\Generated508.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest508\Generated508 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRem.cmd_993] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem\OpCodesRem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_i.cmd_994] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i\ldarga_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ehso.cmd_995] +RelativePath=JIT\Methodical\eh\interactions\ehso\ehso.cmd +WorkingDir=JIT\Methodical\eh\interactions\ehso +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64Opt_r.cmd_996] +RelativePath=JIT\Directed\shift\uint64Opt_r\uint64Opt_r.cmd +WorkingDir=JIT\Directed\shift\uint64Opt_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_230.cmd_997] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_230\GCSimulator_230.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_230 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16295.cmd_998] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295\b16295.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_un_r4.cmd_999] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4\clt_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNadd_cs_r.cmd_1000] +RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_r\r4NaNadd_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null031.cmd_1001] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031\castclass-null031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_166.cmd_1002] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_166\GCSimulator_166.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_166 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_val_1_r.cmd_1003] +RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_r\seq_val_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class2_ImplicitOverrideVirtualNewslot_Interface.cmd_1004] +RelativePath=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtualNewslot_Interface\Class2_ImplicitOverrideVirtualNewslot_Interface.cmd +WorkingDir=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtualNewslot_Interface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt32.cmd_1005] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt32\ConvertToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1078.cmd_1006] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1078\Generated1078\Generated1078.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1078\Generated1078 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_164.cmd_1007] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_164\GCSimulator_164.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingEquals.cmd_1008] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals\UnicodeEncodingEquals.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchinfinally_r.cmd_1009] +RelativePath=JIT\Methodical\eh\interactions\switchinfinally_r\switchinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldnull_ref.cmd_1010] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref\ldnull_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sealedmethod.cmd_1011] +RelativePath=JIT\opt\Devirtualization\sealedmethod\sealedmethod.cmd +WorkingDir=JIT\opt\Devirtualization\sealedmethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1405.cmd_1012] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1405\Generated1405\Generated1405.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1405\Generated1405 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_209.cmd_1013] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_209\GCSimulator_209.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_209 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CheckAddInt_1.cmd_1014] +RelativePath=baseservices\threading\interlocked\add\CheckAddInt_1\CheckAddInt_1.cmd +WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1192.cmd_1015] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1192\Generated1192\Generated1192.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1192\Generated1192 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess3_cs_ro.cmd_1016] +RelativePath=JIT\Directed\StrAccess\straccess3_cs_ro\straccess3_cs_ro.cmd +WorkingDir=JIT\Directed\StrAccess\straccess3_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNrem_cs_ro.cmd_1017] +RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_ro\r8NaNrem_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListItem.cmd_1018] +RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListItem\IListItem.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33586.cmd_1019] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586\b33586.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate006.cmd_1020] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate006\Delegate006.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetValue1.cmd_1021] +RelativePath=CoreMangLib\cti\system\array\ArrayGetValue1\ArrayGetValue1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg5.cmd_1022] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg5\semaphoreopenneg5.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U.cmd_1023] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U\OpCodesConv_Ovf_U.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_do.cmd_1024] +RelativePath=JIT\Directed\shift\uint16_do\uint16_do.cmd +WorkingDir=JIT\Directed\shift\uint16_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[289745.cmd_1025] +RelativePath=GC\Regressions\v2.0-beta1\289745\289745\289745.cmd +WorkingDir=GC\Regressions\v2.0-beta1\289745\289745 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated945.cmd_1026] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest945\Generated945\Generated945.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest945\Generated945 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[char_cs_ro.cmd_1027] +RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_ro\char_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated334.cmd_1028] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest334\Generated334\Generated334.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest334\Generated334 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated792.cmd_1029] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest792\Generated792\Generated792.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest792\Generated792 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotarg_objref.cmd_1030] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref\_il_dbgrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex2.cmd_1031] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex2\waitoneex2.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLocalloc.cmd_1032] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc\OpCodesLocalloc.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalSizeOf1_PSC.cmd_1033] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC\MarshalSizeOf1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalBoolArrayTest.cmd_1034] +RelativePath=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest\MarshalBoolArrayTest.cmd +WorkingDir=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call04_small.cmd_1035] +RelativePath=JIT\jit64\localloc\call\call04_small\call04_small.cmd +WorkingDir=JIT\jit64\localloc\call\call04_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1233.cmd_1036] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1233\Generated1233\Generated1233.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1233\Generated1233 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToDecimal.cmd_1037] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal\DoubleIConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tlstest_il_r.cmd_1038] +RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_r\tlstest_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumps5.cmd_1039] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumps5\_il_reljumps5.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchsimpletype_r.cmd_1040] +RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_r\trycatchsimpletype_r.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_189.cmd_1041] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_189\GCSimulator_189.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_189 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated546.cmd_1042] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest546\Generated546\Generated546.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest546\Generated546 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetPreamble.cmd_1043] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble\UnicodeEncodingGetPreamble.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArrayInit_r.cmd_1044] +RelativePath=JIT\SIMD\VectorArrayInit_r\VectorArrayInit_r.cmd +WorkingDir=JIT\SIMD\VectorArrayInit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToByte.cmd_1045] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToByte\Int32IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcastclass_ldarg.cmd_1046] +RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg\_speed_relcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16Equals2.cmd_1047] +RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals2\UInt16Equals2.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_float_1_r.cmd_1048] +RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_r\expl_float_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalMinValue.cmd_1049] +RelativePath=CoreMangLib\cti\system\decimal\DecimalMinValue\DecimalMinValue.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh07_large.cmd_1050] +RelativePath=JIT\jit64\localloc\ehverify\eh07_large\eh07_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh07_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct04.cmd_1051] +RelativePath=baseservices\exceptions\generics\try-catch-struct04\try-catch-struct04.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCtor1.cmd_1052] +RelativePath=CoreMangLib\cti\system\guid\GuidCtor1\GuidCtor1.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finalize2.cmd_1053] +RelativePath=GC\API\WeakReference\Finalize2\Finalize2.cmd +WorkingDir=GC\API\WeakReference\Finalize2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDouble_1.cmd_1054] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_1\ThreadStartDouble_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCount.cmd_1055] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount\DictionaryCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unsafe_do.cmd_1056] +RelativePath=JIT\Methodical\eh\cs\unsafe_do\unsafe_do.cmd +WorkingDir=JIT\Methodical\eh\cs\unsafe_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static-none.cmd_1057] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none\static-none.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter1.cmd_1058] +RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter1\throwinfinallyintryfilter1.cmd +WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8rem_cs_ro.cmd_1059] +RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_ro\u8rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_47.cmd_1060] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_47\GCSimulator_47.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_47 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenTypeItself.cmd_1061] +RelativePath=Loader\classloader\generics\Instantiation\Recursion\GenTypeItself\GenTypeItself.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Recursion\GenTypeItself +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated61.cmd_1062] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest61\Generated61\Generated61.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest61\Generated61 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated76.cmd_1063] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest76\Generated76\Generated76.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest76\Generated76 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[calli_excep.cmd_1064] +RelativePath=JIT\Directed\pinvoke\calli_excep\calli_excep.cmd +WorkingDir=JIT\Directed\pinvoke\calli_excep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit07.cmd_1065] +RelativePath=baseservices\threading\generics\Monitor\EnterExit07\EnterExit07.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotarg_float.cmd_1066] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_float\_il_relrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_63.cmd_1067] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_63\GCSimulator_63.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_63 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Base_6.cmd_1068] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6\Generic_Test_CSharp_Base_6.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_I2.cmd_1069] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2\OpCodesConv_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread19.cmd_1070] +RelativePath=baseservices\threading\generics\WaitCallback\thread19\thread19.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badendfinally_il_d.cmd_1071] +RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d\badendfinally_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b091942.cmd_1072] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942\b091942.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizeexcep.cmd_1073] +RelativePath=GC\Features\Finalizer\finalizeother\finalizeexcep\finalizeexcep.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizeexcep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_I.cmd_1074] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I\OpCodesLdind_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14066.cmd_1075] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066\b14066.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_1076] +RelativePath=baseservices\threading\interlocked\add\add\add.cmd +WorkingDir=baseservices\threading\interlocked\add\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i8_u8.cmd_1077] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8\conv_ovf_i8_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct6_5.cmd_1078] +RelativePath=JIT\jit64\gc\misc\struct6_5\struct6_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct6_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldobj.cmd_1079] +RelativePath=JIT\Directed\PREFIX\unaligned\1\ldobj\ldobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\ldobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samerethrowtwice_r.cmd_1080] +RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_r\samerethrowtwice_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockExchange.cmd_1081] +RelativePath=Regressions\coreclr\1514\InterlockExchange\InterlockExchange.cmd +WorkingDir=Regressions\coreclr\1514\InterlockExchange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[r4div_cs_do.cmd_1082] +RelativePath=JIT\Methodical\divrem\div\r4div_cs_do\r4div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\r4div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51420.cmd_1083] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420\b51420.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter017.cmd_1084] +RelativePath=baseservices\exceptions\generics\TypeParameter017\TypeParameter017.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_d.cmd_1085] +RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d\structarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4flat_cs_d.cmd_1086] +RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_d\i4flat_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated336.cmd_1087] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest336\Generated336\Generated336.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest336\Generated336 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgisinst_newobj.cmd_1088] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj\_speed_dbgisinst_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeCtor1.cmd_1089] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1\MarshalAsAttributeCtor1.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_muldiv.cmd_1090] +RelativePath=JIT\Methodical\int64\signed\_rels_muldiv\_rels_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1234.cmd_1091] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1234\Generated1234\Generated1234.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1234\Generated1234 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_312.cmd_1092] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_312\GCSimulator_312.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_312 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_1.cmd_1093] +RelativePath=JIT\jit64\gc\misc\structfp1_1\structfp1_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated795.cmd_1094] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest795\Generated795\Generated795.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest795\Generated795 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedCompareExchange1.cmd_1095] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1\InterlockedCompareExchange1.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_WHNullRefEx.cmd_1096] +RelativePath=baseservices\threading\coverage\Nullref\CS_WHNullRefEx\CS_WHNullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_WHNullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcall.cmd_1097] +RelativePath=JIT\Methodical\VT\callconv\_speed_dbgcall\_speed_dbgcall.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b09287.cmd_1098] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287\b09287.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IVTACtor.cmd_1099] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor\IVTACtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callgenericctor.cmd_1100] +RelativePath=readytorun\tests\genericsload\callgenericctor\callgenericctor.cmd +WorkingDir=readytorun\tests\genericsload\callgenericctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[starg0.cmd_1101] +RelativePath=JIT\Regression\JitBlue\DevDiv_205323\starg0\starg0.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_205323\starg0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_double_1_d.cmd_1102] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_d\expl_gc_double_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method008.cmd_1103] +RelativePath=Loader\classloader\generics\GenericMethods\method008\method008.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_304.cmd_1104] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_304\GCSimulator_304.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_304 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectReferenceEquals.cmd_1105] +RelativePath=CoreMangLib\cti\system\object\ObjectReferenceEquals\ObjectReferenceEquals.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectReferenceEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_un_r4.cmd_1106] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4\ble_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToSingle.cmd_1107] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle\Int64IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated788.cmd_1108] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest788\Generated788\Generated788.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest788\Generated788 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUInt_1.cmd_1109] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt_1\ThreadStartUInt_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyTo2.cmd_1110] +RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo2\CopyTo2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_i2.cmd_1111] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2\ldc_mul_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59546.cmd_1112] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546\b59546.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct05.cmd_1113] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05\struct05.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedExchange5.cmd_1114] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5\InterlockedExchange5.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesSpecialName.cmd_1115] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName\MethodAttributesSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbggc_nested.cmd_1116] +RelativePath=JIT\Methodical\VT\etc\_speed_dbggc_nested\_speed_dbggc_nested.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbggc_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellcs.cmd_1117] +RelativePath=JIT\Methodical\refany\_il_rellcs\_il_rellcs.cmd +WorkingDir=JIT\Methodical\refany\_il_rellcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFTan.cmd_1118] +RelativePath=CoreMangLib\cti\system\mathf\MathFTan\MathFTan.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFTan +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null043.cmd_1119] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043\box-unbox-null043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[forwardleaveincatch_d.cmd_1120] +RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_d\forwardleaveincatch_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorFourThreadsBFI.cmd_1121] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorFourThreadsBFI\CircularCctorFourThreadsBFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorFourThreadsBFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overlddiv_cs_d.cmd_1122] +RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_d\overlddiv_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitfromnestedcatch_r.cmd_1123] +RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r\nonlocalexitfromnestedcatch_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructABI.cmd_1124] +RelativePath=JIT\Directed\StructABI\StructABI\StructABI.cmd +WorkingDir=JIT\Directed\StructABI\StructABI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8093 +HostStyle=0 + +[Ackermann.cmd_1125] +RelativePath=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann\Ackermann.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[objects.cmd_1126] +RelativePath=JIT\opt\perf\doublealign\objects\objects.cmd +WorkingDir=JIT\opt\perf\doublealign\objects +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellocal.cmd_1127] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocal\_il_rellocal.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcstress.cmd_1128] +RelativePath=GC\Scenarios\GCStress\gcstress\gcstress.cmd +WorkingDir=GC\Scenarios\GCStress\gcstress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryKeys.cmd_1129] +RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys\IDictionaryKeys.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomNextDouble.cmd_1130] +RelativePath=CoreMangLib\cti\system\random\RandomNextDouble\RandomNextDouble.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomNextDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt648.cmd_1131] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt648\ConvertToUInt648.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt648 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate010.cmd_1132] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate010\Delegate010.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dependentlifetimes.cmd_1133] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes\dependentlifetimes.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgisinst_newobj.cmd_1134] +RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_newobj\_dbgisinst_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8div_cs_r.cmd_1135] +RelativePath=JIT\Methodical\divrem\div\i8div_cs_r\i8div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\i8div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics001.cmd_1136] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001\castclass-generics001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1459.cmd_1137] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1459\Generated1459\Generated1459.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1459\Generated1459 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBox.cmd_1138] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox\OpCodesBox.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString18.cmd_1139] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString18\ConvertToString18.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGeInt1.cmd_1140] +RelativePath=JIT\CodeGenBringUpTests\JTrueGeInt1\JTrueGeInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGeInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test23.cmd_1141] +RelativePath=Loader\classloader\regressions\asurt150271\test23\test23.cmd +WorkingDir=Loader\classloader\regressions\asurt150271\test23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated872.cmd_1142] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest872\Generated872\Generated872.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest872\Generated872 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Functions.cmd_1143] +RelativePath=JIT\Performance\CodeQuality\Math\Functions\Functions\Functions.cmd +WorkingDir=JIT\Performance\CodeQuality\Math\Functions\Functions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_jmp.cmd_1144] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp\_il_dbgrecurse_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generic.cmd_1145] +RelativePath=JIT\opt\Devirtualization\generic\generic.cmd +WorkingDir=JIT\opt\Devirtualization\generic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_1.cmd_1146] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_1\_il_relint32_1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bool_cs_r.cmd_1147] +RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_r\bool_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeIsPointerImpl.cmd_1148] +RelativePath=CoreMangLib\cti\system\type\TypeIsPointerImpl\TypeIsPointerImpl.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeIsPointerImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b311420.cmd_1149] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420\b311420.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8nanconv_il_r.cmd_1150] +RelativePath=JIT\Methodical\NaN\r8nanconv_il_r\r8nanconv_il_r.cmd +WorkingDir=JIT\Methodical\NaN\r8nanconv_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructorInfoConstructorName.cmd_1151] +RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName\ConstructorInfoConstructorName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs_ulong.cmd_1152] +RelativePath=JIT\Methodical\int64\arrays\_rellcs_ulong\_rellcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_rellcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgstress2.cmd_1153] +RelativePath=JIT\Methodical\refany\_il_dbgstress2\_il_dbgstress2.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgstress2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pumpFromCctor.cmd_1154] +RelativePath=Loader\classloader\regressions\91888\pumpFromCctor\pumpFromCctor.cmd +WorkingDir=Loader\classloader\regressions\91888\pumpFromCctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated843.cmd_1155] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest843\Generated843\Generated843.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest843\Generated843 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-20-two.cmd_1156] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-20-two\RMV-2-8-20-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-20-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53662.cmd_1157] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662\b53662.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated479.cmd_1158] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest479\Generated479\Generated479.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest479\Generated479 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorRelOp_ro.cmd_1159] +RelativePath=JIT\SIMD\VectorRelOp_ro\VectorRelOp_ro.cmd +WorkingDir=JIT\SIMD\VectorRelOp_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated889.cmd_1160] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest889\Generated889\Generated889.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest889\Generated889 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACC_do.cmd_1161] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do\CGRecurseACC_do.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListInsert.cmd_1162] +RelativePath=CoreMangLib\cti\system\array\ArrayIListInsert\ArrayIListInsert.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-02_cs_d.cmd_1163] +RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_d\200w1d-02_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated999.cmd_1164] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest999\Generated999\Generated999.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest999\Generated999 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relreference_i.cmd_1165] +RelativePath=JIT\Methodical\tailcall\_il_relreference_i\_il_relreference_i.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relreference_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToUInt64.cmd_1166] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64\Int64IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst004.cmd_1167] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst004\IsInst004.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test23.cmd_1168] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test23\test23.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04574.cmd_1169] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574\b04574.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test_il.cmd_1170] +RelativePath=JIT\jit64\regress\vsw\373472\test_il\test_il.cmd +WorkingDir=JIT\jit64\regress\vsw\373472\test_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit11.cmd_1171] +RelativePath=baseservices\threading\generics\Monitor\EnterExit11\EnterExit11.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u8_u4.cmd_1172] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4\ldc_conv_ovf_u8_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_299.cmd_1173] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_299\GCSimulator_299.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_299 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relknight.cmd_1174] +RelativePath=JIT\Methodical\VT\etc\_speed_relknight\_speed_relknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotSupportedExceptionCtor2.cmd_1175] +RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2\NotSupportedExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNsub_cs_r.cmd_1176] +RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_r\r4NaNsub_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_u2.cmd_1177] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2\ldc_sub_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-5-1.cmd_1178] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-5-1\L-2-5-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-5-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated874.cmd_1179] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest874\Generated874\Generated874.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest874\Generated874 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IndexerNameAttributeCtor.cmd_1180] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor\IndexerNameAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated451.cmd_1181] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest451\Generated451\Generated451.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest451\Generated451 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1424.cmd_1182] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1424\Generated1424\Generated1424.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1424\Generated1424 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3Test.cmd_1183] +RelativePath=JIT\Regression\JitBlue\GitHub_7508\Vector3Test\Vector3Test.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_7508\Vector3Test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_14.cmd_1184] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_14\GCSimulator_14.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Linq.cmd_1185] +RelativePath=JIT\Performance\CodeQuality\Linq\Linq\Linq.cmd +WorkingDir=JIT\Performance\CodeQuality\Linq\Linq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_i8.cmd_1186] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8\sub_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_210.cmd_1187] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_210\GCSimulator_210.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_210 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated482.cmd_1188] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest482\Generated482\Generated482.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest482\Generated482 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread15.cmd_1189] +RelativePath=baseservices\threading\generics\WaitCallback\thread15\thread15.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_6.cmd_1190] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_6\ConvertToInt16_6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated245.cmd_1191] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest245\Generated245\Generated245.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest245\Generated245 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgmuldiv.cmd_1192] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgmuldiv\_il_dbgmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble10.cmd_1193] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble10\ConvertToDouble10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-2.cmd_1194] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-2\_speed_relunsafe-2.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesImport.cmd_1195] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport\TypeAttributesImport.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinally_do.cmd_1196] +RelativePath=JIT\Methodical\eh\basics\tryfinally_do\tryfinally_do.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableEquals.cmd_1197] +RelativePath=CoreMangLib\cti\system\nullable\NullableEquals\NullableEquals.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_57.cmd_1198] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_57\GCSimulator_57.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_57 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278372.cmd_1199] +RelativePath=JIT\Regression\JitBlue\DevDiv_278372\DevDiv_278372\DevDiv_278372.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278372\DevDiv_278372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_ldarg.cmd_1200] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg\_il_dbgcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b21015.cmd_1201] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015\b21015.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_d.cmd_1202] +RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_d\structarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AsgSub1.cmd_1203] +RelativePath=JIT\CodeGenBringUpTests\AsgSub1\AsgSub1.cmd +WorkingDir=JIT\CodeGenBringUpTests\AsgSub1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli8u8.cmd_1204] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli8u8\_il_reli8u8.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli8u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37578.cmd_1205] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578\b37578.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics032.cmd_1206] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032\castclass-generics032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated431.cmd_1207] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest431\Generated431\Generated431.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest431\Generated431 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16TryParse.cmd_1208] +RelativePath=CoreMangLib\cti\system\int16\Int16TryParse\Int16TryParse.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_35.cmd_1209] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_35\GCSimulator_35.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_35 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1b_cs_ro.cmd_1210] +RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_ro\precise1b_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_addsub.cmd_1211] +RelativePath=JIT\Methodical\int64\signed\_il_rels_addsub\_il_rels_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-2-1.cmd_1212] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-2-1\L-1-2-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-2-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threadstartstruct.cmd_1213] +RelativePath=baseservices\threading\paramthreadstart\threadstartstruct\threadstartstruct.cmd +WorkingDir=baseservices\threading\paramthreadstart\threadstartstruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_R4.cmd_1214] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4\OpCodesLdc_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71005.cmd_1215] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005\b71005.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedfinallycall_d.cmd_1216] +RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_d\nestedfinallycall_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase04.cmd_1217] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase04\AbstractBase04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b112348.cmd_1218] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348\b112348.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumps4.cmd_1219] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps4\_il_dbgjumps4.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance03.cmd_1220] +RelativePath=JIT\Generics\pinvoke\instance03\instance03.cmd +WorkingDir=JIT\Generics\pinvoke\instance03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop4_cs_ro.cmd_1221] +RelativePath=JIT\Directed\UnrollLoop\loop4_cs_ro\loop4_cs_ro.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix1.cmd_1222] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1\OpCodesPrefix1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated963.cmd_1223] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest963\Generated963\Generated963.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest963\Generated963 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread09.cmd_1224] +RelativePath=baseservices\threading\generics\TimerCallback\thread09\thread09.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToInt16.cmd_1225] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16\ByteIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i04.cmd_1226] +RelativePath=JIT\jit64\mcc\interop\mcc_i04\mcc_i04.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-25-five.cmd_1227] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-25-five\RMV-2-13-25-five.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-25-five +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_obj_1_r.cmd_1228] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r\seq_gc_obj_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lcs.cmd_1229] +RelativePath=JIT\Methodical\refany\lcs\lcs.cmd +WorkingDir=JIT\Methodical\refany\lcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_d.cmd_1230] +RelativePath=JIT\Methodical\NaN\arithm32_d\arithm32_d.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated407.cmd_1231] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest407\Generated407\Generated407.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest407\Generated407 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesUnbox_Any.cmd_1232] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any\OpCodesUnbox_Any.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tighttimercallback.cmd_1233] +RelativePath=baseservices\threading\generics\TimerCallback\tighttimercallback\tighttimercallback.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\tighttimercallback +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relrefanyval.cmd_1234] +RelativePath=JIT\Methodical\xxobj\operand\_speed_relrefanyval\_speed_relrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_speed_relrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdstr.cmd_1235] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr\OpCodesLdstr.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex2a.cmd_1236] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex2a\waitanyex2a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyTitleAttributeCtor.cmd_1237] +RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor\AssemblyTitleAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1143.cmd_1238] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1143\Generated1143\Generated1143.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1143\Generated1143 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringSubString2.cmd_1239] +RelativePath=CoreMangLib\cti\system\string\StringSubString2\StringSubString2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringSubString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetCharCount.cmd_1240] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount\UTF8EncodingGetCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToInt16.cmd_1241] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16\UInt16IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret2_2.cmd_1242] +RelativePath=JIT\jit64\gc\misc\structret2_2\structret2_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret2_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40221.cmd_1243] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221\b40221.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread27.cmd_1244] +RelativePath=baseservices\threading\generics\syncdelegate\GThread27\GThread27.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface005.cmd_1245] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005\castclass-interface005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1381.cmd_1246] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1381\Generated1381\Generated1381.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1381\Generated1381 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test570.cmd_1247] +RelativePath=Regressions\coreclr\0570\Test570\Test570.cmd +WorkingDir=Regressions\coreclr\0570\Test570 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_1248] +RelativePath=JIT\Directed\PREFIX\volatile\1\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b94306.cmd_1249] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306\b94306.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct7_1.cmd_1250] +RelativePath=JIT\jit64\gc\misc\struct7_1\struct7_1.cmd +WorkingDir=JIT\jit64\gc\misc\struct7_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4_cs_do.cmd_1251] +RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_do\i4_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedIncrement1.cmd_1252] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1\InterlockedIncrement1.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relbox.cmd_1253] +RelativePath=JIT\Methodical\int64\misc\_speed_relbox\_speed_relbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_speed_relbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1028.cmd_1254] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1028\Generated1028\Generated1028.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1028\Generated1028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b74608.cmd_1255] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608\b74608.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcastclass_ldloc.cmd_1256] +RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldloc\_relcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs_long.cmd_1257] +RelativePath=JIT\Methodical\int64\arrays\_dbglcs_long\_dbglcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32374.cmd_1258] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374\b32374.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[testClass.cmd_1259] +RelativePath=Regressions\common\testClass\testClass.cmd +WorkingDir=Regressions\common\testClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ckfinite_r8.cmd_1260] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8\ldc_ckfinite_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hugeexpr1.cmd_1261] +RelativePath=JIT\jit64\opt\cse\hugeexpr1\hugeexpr1.cmd +WorkingDir=JIT\jit64\opt\cse\hugeexpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_101.cmd_1262] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_101\GCSimulator_101.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_101 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion4.cmd_1263] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion4\NullCheckAssertion4.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int_cs_d.cmd_1264] +RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_d\int_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b62555.cmd_1265] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555\b62555.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObsoleteAttributeIsError.cmd_1266] +RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError\ObsoleteAttributeIsError.cmd +WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85316.cmd_1267] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316\b85316.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated21.cmd_1268] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest21\Generated21\Generated21.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest21\Generated21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[471729.cmd_1269] +RelativePath=GC\Regressions\v2.0-beta2\471729\471729\471729.cmd +WorkingDir=GC\Regressions\v2.0-beta2\471729\471729 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated593.cmd_1270] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest593\Generated593\Generated593.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest593\Generated593 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MinMax_r.cmd_1271] +RelativePath=JIT\SIMD\MinMax_r\MinMax_r.cmd +WorkingDir=JIT\SIMD\MinMax_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[6906.cmd_1272] +RelativePath=baseservices\threading\regressions\6906\6906\6906.cmd +WorkingDir=baseservices\threading\regressions\6906\6906 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompareOrdinal2.cmd_1273] +RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal2\StringCompareOrdinal2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35344.cmd_1274] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344\b35344.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33792.cmd_1275] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792\b33792.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U8_Un.cmd_1276] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un\OpCodesConv_Ovf_U8_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1478.cmd_1277] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1478\Generated1478\Generated1478.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1478\Generated1478 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_i8.cmd_1278] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8\ldloc_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw405223.cmd_1279] +RelativePath=Loader\classloader\regressions\405223\vsw405223\vsw405223.cmd +WorkingDir=Loader\classloader\regressions\405223\vsw405223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated385.cmd_1280] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest385\Generated385\Generated385.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest385\Generated385 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[comp32_il_r.cmd_1281] +RelativePath=JIT\Methodical\NaN\comp32_il_r\comp32_il_r.cmd +WorkingDir=JIT\Methodical\NaN\comp32_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06924.cmd_1282] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924\b06924.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueDequeue.cmd_1283] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue\QueueDequeue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Or_Op_cs_ro.cmd_1284] +RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_ro\Float_Or_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateABI.cmd_1285] +RelativePath=CoreMangLib\cti\system\delegate\DelegateABI\DelegateABI.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateABI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4flat_cs_do.cmd_1286] +RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_do\i4flat_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b69512.cmd_1287] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512\b69512.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated460.cmd_1288] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest460\Generated460\Generated460.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest460\Generated460 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PredicateEndInvoke.cmd_1289] +RelativePath=CoreMangLib\cti\system\predicate\PredicateEndInvoke\PredicateEndInvoke.cmd +WorkingDir=CoreMangLib\cti\system\predicate\PredicateEndInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos55915408cs.cmd_1290] +RelativePath=JIT\Generics\Coverage\chaos55915408cs\chaos55915408cs.cmd +WorkingDir=JIT\Generics\Coverage\chaos55915408cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[transitive_static01.cmd_1291] +RelativePath=JIT\Generics\Constraints\transitive_static01\transitive_static01.cmd +WorkingDir=JIT\Generics\Constraints\transitive_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null021.cmd_1292] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021\castclass-null021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1218.cmd_1293] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1218\Generated1218\Generated1218.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1218\Generated1218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-enum002.cmd_1294] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002\castclass-enum002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i83.cmd_1295] +RelativePath=JIT\jit64\mcc\interop\mcc_i83\mcc_i83.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i83 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[GCSimulator_322.cmd_1296] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_322\GCSimulator_322.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1439.cmd_1297] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1439\Generated1439\Generated1439.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1439\Generated1439 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13330.cmd_1298] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330\b13330.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveThrowNew.cmd_1299] +RelativePath=baseservices\exceptions\unittests\RecursiveThrowNew\RecursiveThrowNew.cmd +WorkingDir=baseservices\exceptions\unittests\RecursiveThrowNew +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal18.cmd_1300] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal18\ConvertToDecimal18.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1221.cmd_1301] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1221\Generated1221\Generated1221.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1221\Generated1221 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadcodeincatch_d.cmd_1302] +RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_d\deadcodeincatch_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated307.cmd_1303] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest307\Generated307\Generated307.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest307\Generated307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor7.cmd_1304] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor7\DecimalCtor7.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameFlagsRetargetable.cmd_1305] +RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable\AssemblyNameFlagsRetargetable.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i00.cmd_1306] +RelativePath=JIT\jit64\mcc\interop\mcc_i00\mcc_i00.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i00 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_il_reli4i1.cmd_1307] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i1\_il_reli4i1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64Parse2.cmd_1308] +RelativePath=CoreMangLib\cti\system\int64\Int64Parse2\Int64Parse2.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ForeignThreadExceptions.cmd_1309] +RelativePath=Exceptions\ForeignThread\ForeignThreadExceptions\ForeignThreadExceptions.cmd +WorkingDir=Exceptions\ForeignThread\ForeignThreadExceptions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics013.cmd_1310] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013\box-unbox-generics013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_r4.cmd_1311] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r4\ldloca_s_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_389.cmd_1312] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_389\GCSimulator_389.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_389 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36470.cmd_1313] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470\b36470.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_i4.cmd_1314] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i4\_dbgrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated514.cmd_1315] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest514\Generated514\Generated514.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest514\Generated514 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b119294.cmd_1316] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294\b119294.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array1.cmd_1317] +RelativePath=JIT\CodeGenBringUpTests\Array1\Array1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Array1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldc_div.cmd_1318] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_div\_il_dbgs_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DefaultMemberAttributeCtor.cmd_1319] +RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor\DefaultMemberAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35779.cmd_1320] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779\b35779.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_qsort2.cmd_1321] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2\_il_dbgi_qsort2.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value044.cmd_1322] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044\box-unbox-value044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40380.cmd_1323] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380\b40380.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_r8_r4_inl.cmd_1324] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl\_il_relcompat_r8_r4_inl.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf2b.cmd_1325] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2b\ArrayLastIndexOf2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mismatch32.cmd_1326] +RelativePath=JIT\opt\Inline\regression\mismatch32\mismatch32\mismatch32.cmd +WorkingDir=JIT\opt\Inline\regression\mismatch32\mismatch32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentonongen02.cmd_1327] +RelativePath=JIT\Generics\Conversions\Reference\gentonongen02\gentonongen02.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentonongen02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56068.cmd_1328] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068\b56068.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopIV_init.cmd_1329] +RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init\loopIV_init.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter1_r.cmd_1330] +RelativePath=JIT\Directed\leave\filter1_r\filter1_r.cmd +WorkingDir=JIT\Directed\leave\filter1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31343.cmd_1331] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343\b31343.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1283.cmd_1332] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1283\Generated1283\Generated1283.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1283\Generated1283 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51463.cmd_1333] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463\b51463.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldsfld_mulovf.cmd_1334] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf\_speed_rels_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcvariant4.cmd_1335] +RelativePath=GC\Scenarios\Boxing\gcvariant4\gcvariant4.cmd +WorkingDir=GC\Scenarios\Boxing\gcvariant4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1278.cmd_1336] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1278\Generated1278\Generated1278.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1278\Generated1278 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegate_d.cmd_1337] +RelativePath=JIT\Methodical\nonvirtualcall\delegate_d\delegate_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\delegate_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_195.cmd_1338] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_195\GCSimulator_195.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_195 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27980.cmd_1339] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980\b27980.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_array_merge.cmd_1340] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge\_il_reli_array_merge.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsbox.cmd_1341] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbox\_dbglcsbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1284.cmd_1342] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1284\Generated1284\Generated1284.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1284\Generated1284 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfinally.cmd_1343] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relfinally\_il_relfinally.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc_S.cmd_1344] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S\OpCodesLdloc_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated978.cmd_1345] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest978\Generated978\Generated978.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest978\Generated978 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated179.cmd_1346] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest179\Generated179\Generated179.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest179\Generated179 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase3_Nested_J_Nested_I.cmd_1347] +RelativePath=Loader\classloader\InterfaceFolding\TestCase3_Nested_J_Nested_I\TestCase3_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase3_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvirtftn_t.cmd_1348] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t\_il_relvirtftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfilter_d.cmd_1349] +RelativePath=JIT\Methodical\eh\basics\throwinfilter_d\throwinfilter_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfilter_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleToString2.cmd_1350] +RelativePath=CoreMangLib\cti\system\double\DoubleToString2\DoubleToString2.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-03_cs_do.cmd_1351] +RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_do\5w1d-03_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstgenerics_do.cmd_1352] +RelativePath=JIT\Directed\nullabletypes\isinstgenerics_do\isinstgenerics_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedException.cmd_1353] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\NestedException\NestedException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\NestedException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated261.cmd_1354] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest261\Generated261\Generated261.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest261\Generated261 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassinterface_do.cmd_1355] +RelativePath=JIT\Directed\nullabletypes\castclassinterface_do\castclassinterface_do.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassinterface_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated879.cmd_1356] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest879\Generated879\Generated879.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest879\Generated879 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated355.cmd_1357] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest355\Generated355\Generated355.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest355\Generated355 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[variantint.cmd_1358] +RelativePath=GC\Scenarios\Boxing\variantint\variantint.cmd +WorkingDir=GC\Scenarios\Boxing\variantint +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[minopts_convu1.cmd_1359] +RelativePath=JIT\Directed\Convert\minopts_convu1\minopts_convu1.cmd +WorkingDir=JIT\Directed\Convert\minopts_convu1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1288.cmd_1360] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1288\Generated1288\Generated1288.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1288\Generated1288 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_846218.cmd_1361] +RelativePath=JIT\Directed\UnrollLoop\Dev10_846218\Dev10_846218.cmd +WorkingDir=JIT\Directed\UnrollLoop\Dev10_846218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2G_r.cmd_1362] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_r\hfa_sd2G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest3.cmd_1363] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest3\_il_reltest3.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonrefsdarr_il_d.cmd_1364] +RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d\nonrefsdarr_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[ThreadStatic01.cmd_1365] +RelativePath=baseservices\threading\threadstatic\ThreadStatic01\ThreadStatic01.cmd +WorkingDir=baseservices\threading\threadstatic\ThreadStatic01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitintry.cmd_1366] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitintry\nonlocalexitintry.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitintry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_372.cmd_1367] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_372\GCSimulator_372.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread11.cmd_1368] +RelativePath=baseservices\threading\generics\threadstart\GThread11\GThread11.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated987.cmd_1369] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest987\Generated987\Generated987.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest987\Generated987 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b170362.cmd_1370] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362\b170362.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_1206929.cmd_1371] +RelativePath=JIT\Regression\JitBlue\DevDiv_1206929\DevDiv_1206929\DevDiv_1206929.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_1206929\DevDiv_1206929 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uncaughtException_do.cmd_1372] +RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do\uncaughtException_do.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_d.cmd_1373] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d\cascadedcatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeaftertry_d.cmd_1374] +RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_d\badcodeaftertry_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteInt64.cmd_1375] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteInt64\ReadWriteInt64.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoConstructTrue.cmd_1376] +RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue\AutoConstructTrue.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1127.cmd_1377] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1127\Generated1127\Generated1127.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1127\Generated1127 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingCtor1.cmd_1378] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1\UnicodeEncodingCtor1.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFMax.cmd_1379] +RelativePath=CoreMangLib\cti\system\mathf\MathFMax\MathFMax.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFMax +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-9-3.cmd_1380] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-9-3\L-1-9-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-9-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax4.cmd_1381] +RelativePath=CoreMangLib\cti\system\math\MathMax4\MathMax4.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_r.cmd_1382] +RelativePath=JIT\Directed\shift\int16_r\int16_r.cmd +WorkingDir=JIT\Directed\shift\int16_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateCombine1.cmd_1383] +RelativePath=CoreMangLib\cti\system\delegate\DelegateCombine1\DelegateCombine1.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombine1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_cs_do.cmd_1384] +RelativePath=JIT\Methodical\NaN\arithm32_cs_do\arithm32_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgptr_types.cmd_1385] +RelativePath=JIT\Methodical\ldtoken\_il_dbgptr_types\_il_dbgptr_types.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_dbgptr_types +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52572.cmd_1386] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572\b52572.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i34.cmd_1387] +RelativePath=JIT\jit64\mcc\interop\mcc_i34\mcc_i34.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i34 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OverflowExceptionCtor2.cmd_1388] +RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2\OverflowExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnsafeBlockCopy.cmd_1389] +RelativePath=JIT\opt\Inline\tests\UnsafeBlockCopy\UnsafeBlockCopy.cmd +WorkingDir=JIT\opt\Inline\tests\UnsafeBlockCopy +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface11.cmd_1390] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface11\MultipleInterface11.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1444.cmd_1391] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1444\Generated1444\Generated1444.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1444\Generated1444 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_cs_d.cmd_1392] +RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_d\vt2_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_d_loop_try.cmd_1393] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try\staticFieldExprUnchecked1_d_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_do.cmd_1394] +RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_do\stringarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetBytes2.cmd_1395] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2\UTF8EncodingGetBytes2.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_r.cmd_1396] +RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_r\cascadedcatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated733.cmd_1397] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest733\Generated733\Generated733.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest733\Generated733 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method005.cmd_1398] +RelativePath=Loader\classloader\generics\GenericMethods\method005\method005.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call05_large.cmd_1399] +RelativePath=JIT\jit64\localloc\call\call05_large\call05_large.cmd +WorkingDir=JIT\jit64\localloc\call\call05_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntConv.cmd_1400] +RelativePath=JIT\CodeGenBringUpTests\IntConv\IntConv.cmd +WorkingDir=JIT\CodeGenBringUpTests\IntConv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddMemoryPressureTest.cmd_1401] +RelativePath=GC\API\GC\AddMemoryPressureTest\AddMemoryPressureTest.cmd +WorkingDir=GC\API\GC\AddMemoryPressureTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated466.cmd_1402] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest466\Generated466\Generated466.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest466\Generated466 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_No_Op_cs_r.cmd_1403] +RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_r\Bool_No_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated358.cmd_1404] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest358\Generated358\Generated358.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest358\Generated358 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated896.cmd_1405] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest896\Generated896\Generated896.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest896\Generated896 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_r4_r8.cmd_1406] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8\_il_relcompat_r4_r8.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_386.cmd_1407] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_386\GCSimulator_386.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_386 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch02.cmd_1408] +RelativePath=baseservices\exceptions\generics\try-catch02\try-catch02.cmd +WorkingDir=baseservices\exceptions\generics\try-catch02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33922.cmd_1409] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922\b33922.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PlatformNotSupportedExceptionCtor1.cmd_1410] +RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1\PlatformNotSupportedExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-04_cs_do.cmd_1411] +RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_do\5w1d-04_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25882.cmd_1412] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882\b25882.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFAtan2.cmd_1413] +RelativePath=CoreMangLib\cti\system\mathf\MathFAtan2\MathFAtan2.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFAtan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BBCnt1.cmd_1414] +RelativePath=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1\BBCnt1.cmd +WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated894.cmd_1415] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest894\Generated894\Generated894.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest894\Generated894 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleTarget_PSC.cmd_1416] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC\GCHandleTarget_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1152.cmd_1417] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1152\Generated1152\Generated1152.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1152\Generated1152 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47392.cmd_1418] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392\b47392.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort8.cmd_1419] +RelativePath=CoreMangLib\cti\system\array\ArraySort8\ArraySort8.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefanyval.cmd_1420] +RelativePath=JIT\Methodical\xxobj\operand\_il_relrefanyval\_il_relrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_relrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_ref.cmd_1421] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref\_il_relu_ref.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetValue.cmd_1422] +RelativePath=CoreMangLib\cti\system\array\ArrayGetValue\ArrayGetValue.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param08.cmd_1423] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param08\param08.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated129.cmd_1424] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest129\Generated129\Generated129.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest129\Generated129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartNeg4.cmd_1425] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg4\ThreadStartNeg4.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated66.cmd_1426] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest66\Generated66\Generated66.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest66\Generated66 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16Equals1.cmd_1427] +RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals1\UInt16Equals1.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SZArrayHelperSetItem.cmd_1428] +RelativePath=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem\SZArrayHelperSetItem.cmd +WorkingDir=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_138.cmd_1429] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_138\GCSimulator_138.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_138 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16Parse2.cmd_1430] +RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse2\UInt16Parse2.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayInit.cmd_1431] +RelativePath=baseservices\exceptions\simple\ArrayInit\ArrayInit.cmd +WorkingDir=baseservices\exceptions\simple\ArrayInit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4rem_cs_ro.cmd_1432] +RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_ro\r4rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn_opt.cmd_1433] +RelativePath=JIT\jit64\opt\cg\il\ldftn_opt\ldftn_opt.cmd +WorkingDir=JIT\jit64\opt\cg\il\ldftn_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ckfinite_r4.cmd_1434] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4\ldc_ckfinite_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgnested.cmd_1435] +RelativePath=JIT\Methodical\VT\etc\_dbgnested\_dbgnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbgnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04612.cmd_1436] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612\b04612.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow2_cs_do.cmd_1437] +RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_do\pow2_cs_do.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_362706.cmd_1438] +RelativePath=JIT\Regression\JitBlue\DevDiv_362706\DevDiv_362706\DevDiv_362706.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_362706\DevDiv_362706 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryIsReadOnly.cmd_1439] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly\DictionaryIDictionaryIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAccessWrite.cmd_1440] +RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite\FileAccessWrite.cmd +WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated606.cmd_1441] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest606\Generated606\Generated606.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest606\Generated606 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relseq.cmd_1442] +RelativePath=JIT\Methodical\refany\_il_relseq\_il_relseq.cmd +WorkingDir=JIT\Methodical\refany\_il_relseq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Int32IConvertibleToUInt32.cmd_1443] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32\Int32IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated732.cmd_1444] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest732\Generated732\Generated732.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest732\Generated732 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate028.cmd_1445] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate028\Delegate028.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1476.cmd_1446] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1476\Generated1476\Generated1476.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1476\Generated1476 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_static.cmd_1447] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static\class01_static.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ulong_cs_r.cmd_1448] +RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_r\ulong_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSurrogate1.cmd_1449] +RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate1\CharIsSurrogate1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16895.cmd_1450] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895\b16895.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow01_add.cmd_1451] +RelativePath=JIT\jit64\rtchecks\overflow\overflow01_add\overflow01_add.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dlbigleakthd_v2.cmd_1452] +RelativePath=GC\Scenarios\DoublinkList\dlbigleakthd_v2\dlbigleakthd_v2.cmd +WorkingDir=GC\Scenarios\DoublinkList\dlbigleakthd_v2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1073.cmd_1453] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1073\Generated1073\Generated1073.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1073\Generated1073 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadEHregionacrossBB_d.cmd_1454] +RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d\deadEHregionacrossBB_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b193264.cmd_1455] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264\b193264.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32CompareTo1.cmd_1456] +RelativePath=CoreMangLib\cti\system\int\Int32CompareTo1\Int32CompareTo1.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32CompareTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsizeof.cmd_1457] +RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof\_dbgsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgjumper.cmd_1458] +RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumper\_speed_dbgjumper.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[override.cmd_1459] +RelativePath=Regressions\coreclr\0857\override\override.cmd +WorkingDir=Regressions\coreclr\0857\override +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrotarg_objref.cmd_1460] +RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_objref\_dbgrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_array.cmd_1461] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array\_il_dbgdeep_array.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b109721.cmd_1462] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721\b109721.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52760.cmd_1463] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760\b52760.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend2.cmd_1464] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2\StringBuilderAppend2.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsimple.cmd_1465] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple\_il_dbgsimple.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort10.cmd_1466] +RelativePath=CoreMangLib\cti\system\array\ArraySort10\ArraySort10.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relconv_i8_u.cmd_1467] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u\_il_relconv_i8_u.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1305.cmd_1468] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1305\Generated1305\Generated1305.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1305\Generated1305 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwoutside_d.cmd_1469] +RelativePath=JIT\Methodical\eh\basics\throwoutside_d\throwoutside_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwoutside_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28158_64.cmd_1470] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64\b28158_64.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b79642.cmd_1471] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642\b79642.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrotarg_float.cmd_1472] +RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float\_opt_dbgrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1464.cmd_1473] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1464\Generated1464\Generated1464.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1464\Generated1464 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ulong_cs_ro.cmd_1474] +RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro\ulong_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1449.cmd_1475] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1449\Generated1449\Generated1449.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1449\Generated1449 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_1476] +RelativePath=JIT\jit64\regress\vsw\266693\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\266693\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FormatExceptionCtor1.cmd_1477] +RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1\FormatExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex5.cmd_1478] +RelativePath=baseservices\threading\waithandle\waitall\waitallex5\waitallex5.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittobeginningoftry_do.cmd_1479] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do\nonlocalexittobeginningoftry_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgiface2.cmd_1480] +RelativePath=JIT\Methodical\casts\iface\_il_dbgiface2\_il_dbgiface2.cmd +WorkingDir=JIT\Methodical\casts\iface\_il_dbgiface2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated111.cmd_1481] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest111\Generated111\Generated111.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest111\Generated111 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1263.cmd_1482] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1263\Generated1263\Generated1263.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1263\Generated1263 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_Recursion.cmd_1483] +RelativePath=JIT\opt\Inline\tests\Inline_Recursion\Inline_Recursion.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_Recursion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread24.cmd_1484] +RelativePath=baseservices\threading\generics\WaitCallback\thread24\thread24.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfr8.cmd_1485] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr8\_il_dbgfr8.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brfalse_s.cmd_1486] +RelativePath=JIT\IL_Conformance\Old\Base\brfalse_s\brfalse_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\brfalse_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arity01.cmd_1487] +RelativePath=Loader\classloader\generics\GenericMethods\arity01\arity01.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\arity01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated985.cmd_1488] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest985\Generated985\Generated985.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest985\Generated985 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgarrres.cmd_1489] +RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgarrres\_speed_dbgarrres.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgarrres +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated535.cmd_1490] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest535\Generated535\Generated535.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest535\Generated535 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[continue.cmd_1491] +RelativePath=GC\Scenarios\Resurrection\continue\continue.cmd +WorkingDir=GC\Scenarios\Resurrection\continue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_virt.cmd_1492] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_virt\_il_dbgtest_virt.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_virt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31273.cmd_1493] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273\b31273.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly1_il_d.cmd_1494] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d\switchdefaultonly1_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend11.cmd_1495] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11\StringBuilderAppend11.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_tail_calli.cmd_1496] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli\_il_relrecurse_tail_calli.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DebuggingModesDefault.cmd_1497] +RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault\DebuggingModesDefault.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_422.cmd_1498] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_422\GCSimulator_422.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderReplace2.cmd_1499] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2\StringBuilderReplace2.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0E_d.cmd_1500] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_d\hfa_sd0E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesHasSecurity.cmd_1501] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity\TypeAttributesHasSecurity.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1050.cmd_1502] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1050\Generated1050\Generated1050.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1050\Generated1050 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex3.cmd_1503] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex3\waitoneex3.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated281.cmd_1504] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest281\Generated281\Generated281.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest281\Generated281 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBge_Un.cmd_1505] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un\OpCodesBge_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated951.cmd_1506] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest951\Generated951\Generated951.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest951\Generated951 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1075.cmd_1507] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1075\Generated1075\Generated1075.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1075\Generated1075 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null023.cmd_1508] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023\castclass-null023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct2_5.cmd_1509] +RelativePath=JIT\jit64\gc\misc\struct2_5\struct2_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct2_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderReplace1.cmd_1510] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1\StringBuilderReplace1.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method006.cmd_1511] +RelativePath=Loader\classloader\generics\GenericMethods\method006\method006.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1357.cmd_1512] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1357\Generated1357\Generated1357.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1357\Generated1357 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldobj.cmd_1513] +RelativePath=JIT\Directed\PREFIX\volatile\1\ldobj\ldobj.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\ldobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_cs_r.cmd_1514] +RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_r\vt4_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated299.cmd_1515] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest299\Generated299\Generated299.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest299\Generated299 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalParse2.cmd_1516] +RelativePath=CoreMangLib\cti\system\decimal\DecimalParse2\DecimalParse2.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44193.cmd_1517] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193\b44193.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02b_auto_ser.cmd_1518] +RelativePath=Loader\classloader\generics\Layout\General\Base02b_auto_ser\Base02b_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02b_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesRequireSecObject.cmd_1519] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject\MethodAttributesRequireSecObject.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_No_Op_cs_d.cmd_1520] +RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_d\Bool_No_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64Parse3.cmd_1521] +RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse3\UInt64Parse3.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringPadRight1.cmd_1522] +RelativePath=CoreMangLib\cti\system\string\StringPadRight1\StringPadRight1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadRight1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_r.cmd_1523] +RelativePath=JIT\Methodical\eh\basics\throwincatch_r\throwincatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relconvovf_i8_i.cmd_1524] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i\_il_relconvovf_i8_i.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31398.cmd_1525] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398\b31398.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-6.cmd_1526] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-6\_speed_relunsafe-6.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcs.cmd_1527] +RelativePath=JIT\Methodical\VT\port\_speed_rellcs\_speed_rellcs.cmd +WorkingDir=JIT\Methodical\VT\port\_speed_rellcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjump.cmd_1528] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgjump\_il_dbgjump.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgjump +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinexcept_d.cmd_1529] +RelativePath=JIT\Methodical\eh\basics\throwinexcept_d\throwinexcept_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated624.cmd_1530] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest624\Generated624\Generated624.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest624\Generated624 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated258.cmd_1531] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest258\Generated258\Generated258.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest258\Generated258 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitincatch.cmd_1532] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitincatch\nonlocalexitincatch.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitincatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonrefsdarr_il_r.cmd_1533] +RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r\nonrefsdarr_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[CopyTo1.cmd_1534] +RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo1\CopyTo1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartFloat.cmd_1535] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat\ThreadStartFloat.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TailcallVerifyWithPrefix.cmd_1536] +RelativePath=JIT\opt\Tailcall\TailcallVerifyWithPrefix\TailcallVerifyWithPrefix.cmd +WorkingDir=JIT\opt\Tailcall\TailcallVerifyWithPrefix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;EXCLUDED;ILLEGAL_IL_TAILCALL_POP_RET +HostStyle=0 + +[FPArea.cmd_1537] +RelativePath=JIT\CodeGenBringUpTests\FPArea\FPArea.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPArea +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToSByte.cmd_1538] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte\Int64IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueTypeEquals.cmd_1539] +RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals\ValueTypeEquals.cmd +WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryValues.cmd_1540] +RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues\IDictionaryValues.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderInsert3.cmd_1541] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3\StringBuilderInsert3.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgstress3.cmd_1542] +RelativePath=JIT\Methodical\refany\_speed_dbgstress3\_speed_dbgstress3.cmd +WorkingDir=JIT\Methodical\refany\_speed_dbgstress3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64_do.cmd_1543] +RelativePath=JIT\Directed\shift\uint64_do\uint64_do.cmd +WorkingDir=JIT\Directed\shift\uint64_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow2_cs_r.cmd_1544] +RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_r\pow2_cs_r.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdsflda.cmd_1545] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda\OpCodesLdsflda.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_il.cmd_1546] +RelativePath=JIT\Methodical\Boxing\functional\_relsin_il\_relsin_il.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_relsin_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated611.cmd_1547] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest611\Generated611\Generated611.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest611\Generated611 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread22.cmd_1548] +RelativePath=baseservices\threading\generics\syncdelegate\GThread22\GThread22.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-15-12b.cmd_1549] +RelativePath=Loader\classloader\rmv\il\RMV-2-15-12b\RMV-2-15-12b.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-15-12b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox004.cmd_1550] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox004\Unbox004.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_0.cmd_1551] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0\_il_relint32_0.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30586.cmd_1552] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586\b30586.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48850.cmd_1553] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850\b48850.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt165.cmd_1554] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt165\ConvertToUInt165.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt165 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPSmall.cmd_1555] +RelativePath=JIT\CodeGenBringUpTests\FPSmall\FPSmall.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPSmall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_u1.cmd_1556] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1\ldc_add_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_array_merge.cmd_1557] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge\_il_relu_array_merge.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesAbstract.cmd_1558] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract\MethodAttributesAbstract.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value003.cmd_1559] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003\box-unbox-value003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_addsub.cmd_1560] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_addsub\_speed_rels_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldc_div.cmd_1561] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_div\_dbgs_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[native.cmd_1562] +RelativePath=JIT\Methodical\refany\native\native.cmd +WorkingDir=JIT\Methodical\refany\native +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListContains.cmd_1563] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListContains\ListContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52578.cmd_1564] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578\b52578.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionCopyTo.cmd_1565] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo\DictionaryICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1375.cmd_1566] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1375\Generated1375\Generated1375.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1375\Generated1375 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1138.cmd_1567] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1138\Generated1138\Generated1138.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1138\Generated1138 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[singlinkstay.cmd_1568] +RelativePath=GC\Scenarios\SingLinkList\singlinkstay\singlinkstay.cmd +WorkingDir=GC\Scenarios\SingLinkList\singlinkstay +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch.cmd_1569] +RelativePath=JIT\IL_Conformance\Old\Base\switch\switch.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorCopyToArray_ro.cmd_1570] +RelativePath=JIT\SIMD\VectorCopyToArray_ro\VectorCopyToArray_ro.cmd +WorkingDir=JIT\SIMD\VectorCopyToArray_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcast_throw.cmd_1571] +RelativePath=JIT\Methodical\casts\SEH\_speed_dbgcast_throw\_speed_dbgcast_throw.cmd +WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgcast_throw +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794115_d.cmd_1572] +RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d\DevDiv_794115_d.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arglist.cmd_1573] +RelativePath=JIT\Directed\PREFIX\unaligned\2\arglist\arglist.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\arglist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[tostring_ro.cmd_1574] +RelativePath=JIT\Directed\nullabletypes\tostring_ro\tostring_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\tostring_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4_cs_d.cmd_1575] +RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_d\r4_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relobjref.cmd_1576] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relobjref\_il_relobjref.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relobjref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyInt64Array.cmd_1577] +RelativePath=Interop\MarshalAPI\Copy\CopyInt64Array\CopyInt64Array.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyInt64Array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_o2.cmd_1578] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2\_il_dbgrefloc_o2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-28-two.cmd_1579] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-28-two\RMV-2-8-28-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-28-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated404.cmd_1580] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest404\Generated404\Generated404.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest404\Generated404 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated214.cmd_1581] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest214\Generated214\Generated214.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest214\Generated214 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i8_i4.cmd_1582] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4\conv_ovf_i8_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbghan3_ctor.cmd_1583] +RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ctor\_speed_dbghan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated799.cmd_1584] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest799\Generated799\Generated799.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest799\Generated799 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparerCompare2.cmd_1585] +RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2\StringComparerCompare2.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated332.cmd_1586] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest332\Generated332\Generated332.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest332\Generated332 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_238.cmd_1587] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_238\GCSimulator_238.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated666.cmd_1588] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest666\Generated666\Generated666.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest666\Generated666 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt325.cmd_1589] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt325\ConvertToUInt325.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt325 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_i2.cmd_1590] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2\_il_dbgrefloc_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_289.cmd_1591] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_289\GCSimulator_289.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg_0.cmd_1592] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0\OpCodesLdarg_0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCreateInstance2.cmd_1593] +RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2\ArrayCreateInstance2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relisinst_newobj.cmd_1594] +RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_newobj\_speed_relisinst_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface011.cmd_1595] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011\box-unbox-interface011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1296.cmd_1596] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1296\Generated1296\Generated1296.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1296\Generated1296 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIndexOf2.cmd_1597] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2\ListIndexOf2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-01_cs_ro.cmd_1598] +RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_ro\200w1d-01_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToByte.cmd_1599] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte\SByteIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated373.cmd_1600] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest373\Generated373\Generated373.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest373\Generated373 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b374944.cmd_1601] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944\b374944.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1066.cmd_1602] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1066\Generated1066\Generated1066.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1066\Generated1066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos55915408cs_o.cmd_1603] +RelativePath=JIT\Generics\Coverage\chaos55915408cs_o\chaos55915408cs_o.cmd +WorkingDir=JIT\Generics\Coverage\chaos55915408cs_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToInt16.cmd_1604] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt16\Int32IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh04_dynamic.cmd_1605] +RelativePath=JIT\jit64\localloc\eh\eh04_dynamic\eh04_dynamic.cmd +WorkingDir=JIT\jit64\localloc\eh\eh04_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1005.cmd_1606] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1005\Generated1005\Generated1005.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1005\Generated1005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPError.cmd_1607] +RelativePath=JIT\CodeGenBringUpTests\FPError\FPError.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPError +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2B_r.cmd_1608] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_r\hfa_nf2B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b119026b.cmd_1609] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b\b119026b.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Negative002.cmd_1610] +RelativePath=Loader\classloader\generics\Layout\Specific\Negative002\Negative002.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Negative002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CreateGeneric_r.cmd_1611] +RelativePath=JIT\SIMD\CreateGeneric_r\CreateGeneric_r.cmd +WorkingDir=JIT\SIMD\CreateGeneric_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh11_small.cmd_1612] +RelativePath=JIT\jit64\localloc\ehverify\eh11_small\eh11_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh11_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStarg.cmd_1613] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg\OpCodesStarg.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldc_mulovf.cmd_1614] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf\_speed_relldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rootmem.cmd_1615] +RelativePath=GC\Scenarios\Rootmem\rootmem\rootmem.cmd +WorkingDir=GC\Scenarios\Rootmem\rootmem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_245.cmd_1616] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_245\GCSimulator_245.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_245 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass005.cmd_1617] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005\castclass005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sehhandlerbeforetry_d.cmd_1618] +RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d\sehhandlerbeforetry_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_stind.cmd_1619] +RelativePath=JIT\Directed\PREFIX\unaligned\1\ldind_stind\ldind_stind.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\ldind_stind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_78.cmd_1620] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_78\GCSimulator_78.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_78 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollectionEnumeratorIEnumeratorCurrent.cmd_1621] +RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox039.cmd_1622] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039\box-unbox039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated210.cmd_1623] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest210\Generated210\Generated210.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest210\Generated210 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_411.cmd_1624] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_411\GCSimulator_411.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1159.cmd_1625] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1159\Generated1159\Generated1159.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1159\Generated1159 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byte_cs_d.cmd_1626] +RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_d\byte_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102637.cmd_1627] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637\b102637.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[VSW532403.cmd_1628] +RelativePath=Loader\classloader\generics\Constraints\Regressions\532403\VSW532403\VSW532403.cmd +WorkingDir=Loader\classloader\generics\Constraints\Regressions\532403\VSW532403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetBytes2.cmd_1629] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2\UnicodeEncodingGetBytes2.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetByteCount1.cmd_1630] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1\UTF8EncodingGetByteCount1.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[invocation_ro.cmd_1631] +RelativePath=JIT\Directed\nullabletypes\invocation_ro\invocation_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\invocation_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70808.cmd_1632] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808\b70808.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExecuteCodeWithGuaranteedCleanup.cmd_1633] +RelativePath=baseservices\compilerservices\RuntimeHelpers\ExecuteCodeWithGuaranteedCleanup\ExecuteCodeWithGuaranteedCleanup.cmd +WorkingDir=baseservices\compilerservices\RuntimeHelpers\ExecuteCodeWithGuaranteedCleanup +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b321799.cmd_1634] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799\b321799.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrotarg_float.cmd_1635] +RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_float\_relrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionGetEnumerator.cmd_1636] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator\KeyCollectionGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated742.cmd_1637] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest742\Generated742\Generated742.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest742\Generated742 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise4_cs_ro.cmd_1638] +RelativePath=JIT\Methodical\cctor\simple\precise4_cs_ro\precise4_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeoutExceptionCtor1.cmd_1639] +RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1\TimeoutExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Forced_2.cmd_1640] +RelativePath=GC\API\GC\Collect_Forced_2\Collect_Forced_2.cmd +WorkingDir=GC\API\GC\Collect_Forced_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[long_cs_d.cmd_1641] +RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_d\long_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_225.cmd_1642] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_225\GCSimulator_225.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_225 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntArraySum.cmd_1643] +RelativePath=JIT\CodeGenBringUpTests\IntArraySum\IntArraySum.cmd +WorkingDir=JIT\CodeGenBringUpTests\IntArraySum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Free.cmd_1644] +RelativePath=GC\API\GCHandle\Free\Free.cmd +WorkingDir=GC\API\GCHandle\Free +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilldind_il_d.cmd_1645] +RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d\volatilldind_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt64.cmd_1646] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt64\ConvertToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex10.cmd_1647] +RelativePath=baseservices\threading\waithandle\waitall\waitallex10\waitallex10.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToUInt16.cmd_1648] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16\UInt32IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_addsub.cmd_1649] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_addsub\_il_dbgs_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcs2.cmd_1650] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs2\_speed_dbglcs2.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCtor4.cmd_1651] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor4\TimeSpanCtor4.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated537.cmd_1652] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest537\Generated537\Generated537.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest537\Generated537 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-4.cmd_1653] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4\_speed_dbgunsafe-4.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_addsub.cmd_1654] +RelativePath=JIT\Methodical\int64\signed\_rels_addsub\_rels_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75988.cmd_1655] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988\b75988.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12390.cmd_1656] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390\b12390.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueEnqueue.cmd_1657] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue\QueueEnqueue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated759.cmd_1658] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest759\Generated759\Generated759.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest759\Generated759 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_26.cmd_1659] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_26\GCSimulator_26.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b60127.cmd_1660] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127\b60127.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf3.cmd_1661] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3\ArrayIndexOf3.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14475.cmd_1662] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475\b14475.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFRound2.cmd_1663] +RelativePath=CoreMangLib\cti\system\mathf\MathFRound2\MathFRound2.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFRound2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics007.cmd_1664] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007\box-unbox-generics007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass030.cmd_1665] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030\castclass030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldsfld_mulovf.cmd_1666] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf\_il_dbgs_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2c_il_r.cmd_1667] +RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_r\25param2c_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_do.cmd_1668] +RelativePath=JIT\Methodical\eh\generics\throwincatch_do\throwincatch_do.cmd +WorkingDir=JIT\Methodical\eh\generics\throwincatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1408.cmd_1669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1408\Generated1408\Generated1408.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1408\Generated1408 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b55216.cmd_1670] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216\b55216.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohcompactapi.cmd_1671] +RelativePath=GC\Features\LOHCompaction\lohcompactapi\lohcompactapi.cmd +WorkingDir=GC\Features\LOHCompaction\lohcompactapi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated294.cmd_1672] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest294\Generated294\Generated294.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest294\Generated294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface008.cmd_1673] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008\castclass-interface008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49335.cmd_1674] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335\b49335.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32Equals2.cmd_1675] +RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals2\UInt32Equals2.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated312.cmd_1676] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest312\Generated312\Generated312.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest312\Generated312 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Base_3.cmd_1677] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3\Generic_Test_CSharp_Base_3.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesTakesSingleByteArgument.cmd_1678] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument\OpCodesTakesSingleByteArgument.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refpinned2iu_il_d.cmd_1679] +RelativePath=JIT\Directed\refbyref\refpinned2iu_il_d\refpinned2iu_il_d.cmd +WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_un_i4.cmd_1680] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4\bge_un_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated402.cmd_1681] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest402\Generated402\Generated402.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest402\Generated402 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_535767.cmd_1682] +RelativePath=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767\Dev10_535767.cmd +WorkingDir=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12022.cmd_1683] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022\b12022.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_815940_ro.cmd_1684] +RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro\DevDiv_815940_ro.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate005.cmd_1685] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate005\Delegate005.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_345.cmd_1686] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_345\GCSimulator_345.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_388.cmd_1687] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_388\GCSimulator_388.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_388 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1489.cmd_1688] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1489\Generated1489\Generated1489.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1489\Generated1489 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte3.cmd_1689] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte3\ConvertToSByte3.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1326.cmd_1690] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1326\Generated1326\Generated1326.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1326\Generated1326 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Or_Op_cs_ro.cmd_1691] +RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_ro\Int_Or_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63743.cmd_1692] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743\b63743.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Casting.cmd_1693] +RelativePath=GC\API\GCHandle\Casting\Casting.cmd +WorkingDir=GC\API\GCHandle\Casting +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[backwardleaveincatch_r.cmd_1694] +RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_r\backwardleaveincatch_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotarg_objref.cmd_1695] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_objref\_il_relrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reversedtryblock_r.cmd_1696] +RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_r\reversedtryblock_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null004.cmd_1697] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004\castclass-null004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread29.cmd_1698] +RelativePath=baseservices\threading\generics\threadstart\GThread29\GThread29.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint_cs_ro.cmd_1699] +RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_ro\uint_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1254.cmd_1700] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1254\Generated1254\Generated1254.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1254\Generated1254 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToDouble.cmd_1701] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble\IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorInit_r.cmd_1702] +RelativePath=JIT\SIMD\VectorInit_r\VectorInit_r.cmd +WorkingDir=JIT\SIMD\VectorInit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_d.cmd_1703] +RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_d\callconv2_cs_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_do.cmd_1704] +RelativePath=JIT\Directed\shift\int32_do\int32_do.cmd +WorkingDir=JIT\Directed\shift\int32_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04639.cmd_1705] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639\b04639.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_1706] +RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01\struct01.cmd +WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_788724.cmd_1707] +RelativePath=Loader\classloader\regressions\dev10_788724\dev10_788724\dev10_788724.cmd +WorkingDir=Loader\classloader\regressions\dev10_788724\dev10_788724 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated668.cmd_1708] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest668\Generated668\Generated668.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest668\Generated668 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated811.cmd_1709] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest811\Generated811\Generated811.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest811\Generated811 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated384.cmd_1710] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest384\Generated384\Generated384.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest384\Generated384 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_5164.cmd_1711] +RelativePath=JIT\Regression\JitBlue\GitHub_5164\GitHub_5164\GitHub_5164.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_5164\GitHub_5164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callintf.cmd_1712] +RelativePath=JIT\IL_Conformance\Old\objectmodel\callintf\callintf.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\callintf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit3.cmd_1713] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit3\_dbgexplicit3.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_1714] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01\class01.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvirtftn_t.cmd_1715] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t\_il_dbgvirtftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callsuper.cmd_1716] +RelativePath=JIT\IL_Conformance\Old\objectmodel\callsuper\callsuper.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\callsuper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multihandler_d.cmd_1717] +RelativePath=JIT\Methodical\eh\basics\multihandler_d\multihandler_d.cmd +WorkingDir=JIT\Methodical\eh\basics\multihandler_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fromcollection.cmd_1718] +RelativePath=JIT\opt\Devirtualization\fromcollection\fromcollection.cmd +WorkingDir=JIT\opt\Devirtualization\fromcollection +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract05.cmd_1719] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract05\abstract05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgii1.cmd_1720] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii1\_il_dbgii1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1109.cmd_1721] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1109\Generated1109\Generated1109.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1109\Generated1109 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82715.cmd_1722] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715\b82715.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvtret.cmd_1723] +RelativePath=JIT\Methodical\VT\callconv\_il_relvtret\_il_relvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52746.cmd_1724] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746\b52746.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase6_Nested_J.cmd_1725] +RelativePath=Loader\classloader\InterfaceFolding\TestCase6_Nested_J\TestCase6_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase6_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Optimized_2.cmd_1726] +RelativePath=GC\API\GC\Collect_Optimized_2\Collect_Optimized_2.cmd +WorkingDir=GC\API\GC\Collect_Optimized_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ATPAPropertyName.cmd_1727] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName\ATPAPropertyName.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_il_il.cmd_1728] +RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_il\_odbgsin_il_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatch.cmd_1729] +RelativePath=JIT\opt\Inline\tests\trycatch\trycatch.cmd +WorkingDir=JIT\opt\Inline\tests\trycatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_do.cmd_1730] +RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do\classarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinclassconstructor_ro.cmd_1731] +RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_ro\throwinclassconstructor_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Box_Unbox.cmd_1732] +RelativePath=JIT\Directed\PREFIX\unaligned\2\Box_Unbox\Box_Unbox.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\Box_Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Romber.cmd_1733] +RelativePath=JIT\Performance\CodeQuality\BenchF\Romber\Romber\Romber.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Romber\Romber +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_struct.cmd_1734] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_struct\_il_dbghuge_struct.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_struct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBr.cmd_1735] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr\OpCodesBr.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1163.cmd_1736] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1163\Generated1163\Generated1163.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1163\Generated1163 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort1.cmd_1737] +RelativePath=CoreMangLib\cti\system\array\ArraySort1\ArraySort1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delete_next_card_table.cmd_1738] +RelativePath=GC\Coverage\delete_next_card_table\delete_next_card_table.cmd +WorkingDir=GC\Coverage\delete_next_card_table +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1b_cs_d.cmd_1739] +RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_d\precise1b_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i32.cmd_1740] +RelativePath=JIT\jit64\mcc\interop\mcc_i32\mcc_i32.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[TypeCodeInt32.cmd_1741] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt32\TypeCodeInt32.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shl_u4.cmd_1742] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u4\shl_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[field_tests.cmd_1743] +RelativePath=JIT\IL_Conformance\Old\objectmodel\field_tests\field_tests.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\field_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null028.cmd_1744] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028\box-unbox-null028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06020.cmd_1745] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020\b06020.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i06.cmd_1746] +RelativePath=JIT\jit64\mcc\interop\mcc_i06\mcc_i06.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimalrem_cs_ro.cmd_1747] +RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_ro\decimalrem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldfld_mulovf.cmd_1748] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf\_il_relldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_passing_struct01.cmd_1749] +RelativePath=JIT\Generics\Locals\static_passing_struct01\static_passing_struct01.cmd +WorkingDir=JIT\Generics\Locals\static_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal14.cmd_1750] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal14\ConvertToDecimal14.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddLong_1.cmd_1751] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_1\InterlockedAddLong_1.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleNaN.cmd_1752] +RelativePath=CoreMangLib\cti\system\single\SingleNaN\SingleNaN.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleNaN +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b491215.cmd_1753] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215\b491215.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldsfld_mulovf.cmd_1754] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf\_dbgs_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated778.cmd_1755] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest778\Generated778\Generated778.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest778\Generated778 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcs_ulong.cmd_1756] +RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_ulong\_speed_rellcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldadd_cs_ro.cmd_1757] +RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro\lclfldadd_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate007.cmd_1758] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate007\Delegate007.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_17.cmd_1759] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_17\ConvertToInt16_17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relisinst_ldarg.cmd_1760] +RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg\_speed_relisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_class01.cmd_1761] +RelativePath=JIT\Generics\Fields\instance_assignment_class01\instance_assignment_class01.cmd +WorkingDir=JIT\Generics\Fields\instance_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1229.cmd_1762] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1229\Generated1229\Generated1229.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1229\Generated1229 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_i8.cmd_1763] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i8\add_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[inliningVars.cmd_1764] +RelativePath=JIT\opt\Inline\regression\bug584219\inliningVars\inliningVars.cmd +WorkingDir=JIT\opt\Inline\regression\bug584219\inliningVars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_GenericMethods.cmd_1765] +RelativePath=JIT\opt\Inline\tests\Inline_GenericMethods\Inline_GenericMethods.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_GenericMethods +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w250d_cs_do.cmd_1766] +RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_do\10w250d_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_284.cmd_1767] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_284\GCSimulator_284.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_284 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumper5.cmd_1768] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper5\_il_dbgjumper5.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-02_cs_r.cmd_1769] +RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_r\200w1d-02_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally-struct03.cmd_1770] +RelativePath=baseservices\exceptions\generics\try-catch-finally-struct03\try-catch-finally-struct03.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsbox.cmd_1771] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox\_speed_dbglcsbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-5-3.cmd_1772] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-5-3\L-1-5-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-5-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpobj.cmd_1773] +RelativePath=JIT\Directed\PREFIX\unaligned\1\cpobj\cpobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\cpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1376.cmd_1774] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1376\Generated1376\Generated1376.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1376\Generated1376 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43160.cmd_1775] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160\b43160.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineField.cmd_1776] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField\OperandTypeInlineField.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte6.cmd_1777] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte6\ConvertToByte6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads1_cs_d.cmd_1778] +RelativePath=JIT\Methodical\cctor\misc\threads1_cs_d\threads1_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated251.cmd_1779] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest251\Generated251\Generated251.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest251\Generated251 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_fld.cmd_1780] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld\_il_reli_fld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84916.cmd_1781] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916\b84916.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null023.cmd_1782] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023\box-unbox-null023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBle_S.cmd_1783] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S\OpCodesBle_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBge.cmd_1784] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge\OpCodesBge.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_addsub.cmd_1785] +RelativePath=JIT\Methodical\int64\signed\_dbgs_addsub\_dbgs_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_308.cmd_1786] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_308\GCSimulator_308.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_308 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesRuntime.cmd_1787] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime\MethodImplAttributesRuntime.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit1.cmd_1788] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit1\_opt_relexplicit1.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated325.cmd_1789] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest325\Generated325\Generated325.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest325\Generated325 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06680.cmd_1790] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680\b06680.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringEquals2.cmd_1791] +RelativePath=CoreMangLib\cti\system\string\StringEquals2\StringEquals2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivideByZeroExceptionCtor3.cmd_1792] +RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3\DivideByZeroExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread15.cmd_1793] +RelativePath=baseservices\threading\generics\syncdelegate\GThread15\GThread15.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semdemo.cmd_1794] +RelativePath=baseservices\threading\semaphore\unit\semdemo\semdemo.cmd +WorkingDir=baseservices\threading\semaphore\unit\semdemo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b17751.cmd_1795] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751\b17751.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Not-Int32.cmd_1796] +RelativePath=JIT\BBT\Scenario4\Not-Int32\Not-Int32.cmd +WorkingDir=JIT\BBT\Scenario4\Not-Int32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated222.cmd_1797] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest222\Generated222\Generated222.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest222\Generated222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventAttributesNone.cmd_1798] +RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone\EventAttributesNone.cmd +WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35455.cmd_1799] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455\b35455.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Haar-likeFeaturesGeneric_r.cmd_1800] +RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_r\Haar-likeFeaturesGeneric_r.cmd +WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated455.cmd_1801] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest455\Generated455\Generated455.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest455\Generated455 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TargetInvocationExceptionCtor1.cmd_1802] +RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1\TargetInvocationExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25647.cmd_1803] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647\b25647.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am07abandonmultiplemutex.cmd_1804] +RelativePath=baseservices\threading\mutex\abandonedmutex\am07abandonmultiplemutex\am07abandonmultiplemutex.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am07abandonmultiplemutex +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFIEEERemainder.cmd_1805] +RelativePath=CoreMangLib\cti\system\mathf\MathFIEEERemainder\MathFIEEERemainder.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFIEEERemainder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlThrow.cmd_1806] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow\FlowControlThrow.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated922.cmd_1807] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest922\Generated922\Generated922.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest922\Generated922 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1232.cmd_1808] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1232\Generated1232\Generated1232.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1232\Generated1232 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToDecimal.cmd_1809] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDecimal\CharIConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_instance.cmd_1810] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance\class01_instance.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp2_4.cmd_1811] +RelativePath=JIT\jit64\gc\misc\structfp2_4\structfp2_4.cmd +WorkingDir=JIT\jit64\gc\misc\structfp2_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomCtor2.cmd_1812] +RelativePath=CoreMangLib\cti\system\random\RandomCtor2\RandomCtor2.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated74.cmd_1813] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest74\Generated74\Generated74.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest74\Generated74 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b100336.cmd_1814] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336\b100336.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldc_mul.cmd_1815] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mul\_il_relldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated589.cmd_1816] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest589\Generated589\Generated589.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest589\Generated589 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated825.cmd_1817] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest825\Generated825\Generated825.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest825\Generated825 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33335.cmd_1818] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335\b33335.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null024.cmd_1819] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024\castclass-null024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16Parse3.cmd_1820] +RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse3\UInt16Parse3.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstvaluetype_d.cmd_1821] +RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_d\isinstvaluetype_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44985.cmd_1822] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985\b44985.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-01_cs_r.cmd_1823] +RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_r\3w1d-01_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ILStackAllocRepro.cmd_1824] +RelativePath=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro\ILStackAllocRepro.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_cs_r.cmd_1825] +RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_r\vt3_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCMaskForGSCookie.cmd_1826] +RelativePath=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie\GCMaskForGSCookie.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_i1.cmd_1827] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1\_opt_dbgrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[override.cmd_1828] +RelativePath=JIT\opt\Devirtualization\override\override.cmd +WorkingDir=JIT\opt\Devirtualization\override +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringJoin2.cmd_1829] +RelativePath=CoreMangLib\cti\system\string\StringJoin2\StringJoin2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringJoin2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumper1.cmd_1830] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumper1\_il_reljumper1.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_395.cmd_1831] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_395\GCSimulator_395.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_395 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_uint64.cmd_1832] +RelativePath=JIT\Directed\zeroinit\init_uint64\init_uint64.cmd +WorkingDir=JIT\Directed\zeroinit\init_uint64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_I4.cmd_1833] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4\OpCodesStelem_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_val_1_d.cmd_1834] +RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_d\expl_val_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_ro.cmd_1835] +RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_ro\cascadedcatch_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin9.cmd_1836] +RelativePath=CoreMangLib\cti\system\math\MathMin9\MathMin9.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SizeConstTest.cmd_1837] +RelativePath=Interop\SizeConst\SizeConstTest\SizeConstTest.cmd +WorkingDir=Interop\SizeConst\SizeConstTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_xor.cmd_1838] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_xor\VolatileTest_op_xor.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_xor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call07_dynamic.cmd_1839] +RelativePath=JIT\jit64\localloc\call\call07_dynamic\call07_dynamic.cmd +WorkingDir=JIT\jit64\localloc\call\call07_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_1840] +RelativePath=JIT\IL_Conformance\Old\Base\cpblk\cpblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1186.cmd_1841] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1186\Generated1186\Generated1186.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1186\Generated1186 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_275.cmd_1842] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_275\GCSimulator_275.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_275 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated377.cmd_1843] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest377\Generated377\Generated377.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest377\Generated377 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_20929_ro.cmd_1844] +RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro\dev11_20929_ro.cmd +WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCreateInstance1.cmd_1845] +RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1\ArrayCreateInstance1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryEnter01.cmd_1846] +RelativePath=baseservices\threading\generics\Monitor\TryEnter01\TryEnter01.cmd +WorkingDir=baseservices\threading\generics\Monitor\TryEnter01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ccse_cs_r.cmd_1847] +RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_r\ccse_cs_r.cmd +WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrue1.cmd_1848] +RelativePath=JIT\CodeGenBringUpTests\JTrue1\JTrue1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrue1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b18852.cmd_1849] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852\b18852.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jmp_ret.cmd_1850] +RelativePath=JIT\jit64\opt\cg\il\jmp_ret\jmp_ret.cmd +WorkingDir=JIT\jit64\opt\cg\il\jmp_ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTotalDays.cmd_1851] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalDays\TimeSpanTotalDays.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalDays +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_qsort1.cmd_1852] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1\_il_dbgu_qsort1.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14368.cmd_1853] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368\b14368.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchnestedtype_do.cmd_1854] +RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_do\trycatchnestedtype_do.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0C_r.cmd_1855] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_r\hfa_nd0C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated207.cmd_1856] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest207\Generated207\Generated207.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest207\Generated207 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_u2.cmd_1857] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2\ldind_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b58358.cmd_1858] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358\b58358.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated932.cmd_1859] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest932\Generated932\Generated932.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest932\Generated932 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass023.cmd_1860] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023\castclass023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCMaxGeneration.cmd_1861] +RelativePath=CoreMangLib\cti\system\gc\GCMaxGeneration\GCMaxGeneration.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCMaxGeneration +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1201.cmd_1862] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1201\Generated1201\Generated1201.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1201\Generated1201 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated950.cmd_1863] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest950\Generated950\Generated950.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest950\Generated950 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[scenario.cmd_1864] +RelativePath=GC\Features\SustainedLowLatency\scenario\scenario.cmd +WorkingDir=GC\Features\SustainedLowLatency\scenario +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[Generated1290.cmd_1865] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1290\Generated1290\Generated1290.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1290\Generated1290 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_Vars.cmd_1866] +RelativePath=JIT\opt\Inline\tests\Inline_Vars\Inline_Vars.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_Vars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_341.cmd_1867] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_341\GCSimulator_341.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_341 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0A_d.cmd_1868] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_d\hfa_sf0A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread05.cmd_1869] +RelativePath=baseservices\threading\generics\TimerCallback\thread05\thread05.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderRemove.cmd_1870] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove\StringBuilderRemove.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Mul_ro.cmd_1871] +RelativePath=JIT\SIMD\Mul_ro\Mul_ro.cmd +WorkingDir=JIT\SIMD\Mul_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPush1.cmd_1872] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1\StackBehaviourPush1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8rem_cs_ro.cmd_1873] +RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_ro\r8rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeSize64.cmd_1874] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64\PackingSizeSize64.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesEncrypted.cmd_1875] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted\FileAttributesEncrypted.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b402701.cmd_1876] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701\b402701.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittobeginningoftry_ro.cmd_1877] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro\nonlocalexittobeginningoftry_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_ro.cmd_1878] +RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro\jaggedarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_205.cmd_1879] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_205\GCSimulator_205.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_205 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldc_mul.cmd_1880] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mul\_speed_rels_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_9651.cmd_1881] +RelativePath=JIT\Regression\JitBlue\GitHub_9651\GitHub_9651\GitHub_9651.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_9651\GitHub_9651 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyNotFoundExceptionCtor2.cmd_1882] +RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2\KeyNotFoundExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumper1.cmd_1883] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper1\_il_dbgjumper1.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MulticastDelegateGetInvocationList.cmd_1884] +RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList\MulticastDelegateGetInvocationList.cmd +WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated209.cmd_1885] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest209\Generated209\Generated209.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest209\Generated209 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1093.cmd_1886] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1093\Generated1093\Generated1093.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1093\Generated1093 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics043.cmd_1887] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043\box-unbox-generics043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedStruct02.cmd_1888] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedStruct02\NestedStruct02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedStruct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2.cmd_1889] +RelativePath=JIT\jit64\gc\misc\test2\test2.cmd +WorkingDir=JIT\jit64\gc\misc\test2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrecurse.cmd_1890] +RelativePath=JIT\Methodical\Invoke\fptr\_dbgrecurse\_dbgrecurse.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_dbgrecurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_And_Op_cs_do.cmd_1891] +RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_do\Bool_And_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToString1.cmd_1892] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToString1\DecimalToString1.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort1b.cmd_1893] +RelativePath=CoreMangLib\cti\system\array\ArraySort1b\ArraySort1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated719.cmd_1894] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest719\Generated719\Generated719.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest719\Generated719 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListForEach.cmd_1895] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListForEach\ListForEach.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListForEach +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intdec.cmd_1896] +RelativePath=baseservices\threading\interlocked\decrement\intdec\intdec.cmd +WorkingDir=baseservices\threading\interlocked\decrement\intdec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02_seq.cmd_1897] +RelativePath=Loader\classloader\generics\Layout\General\struct02_seq\struct02_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct02_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64.cmd_1898] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64\ConvertToInt64.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox030.cmd_1899] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030\box-unbox030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overlddiv_cs_do.cmd_1900] +RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_do\overlddiv_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[backwardleave_r.cmd_1901] +RelativePath=JIT\Methodical\eh\disconnected\backwardleave_r\backwardleave_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1082.cmd_1902] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1082\Generated1082\Generated1082.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1082\Generated1082 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorDispose.cmd_1903] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4flat_cs_ro.cmd_1904] +RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_ro\r4flat_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated221.cmd_1905] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest221\Generated221\Generated221.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest221\Generated221 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07411.cmd_1906] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411\b07411.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test532654_b.cmd_1907] +RelativePath=Loader\classloader\regressions\523654\test532654_b\test532654_b.cmd +WorkingDir=Loader\classloader\regressions\523654\test532654_b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated501.cmd_1908] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest501\Generated501\Generated501.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest501\Generated501 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28901.cmd_1909] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901\b28901.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[finalizedest.cmd_1910] +RelativePath=GC\Features\Finalizer\finalizeother\finalizedest\finalizedest.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizedest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4a_cs_do.cmd_1911] +RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_do\convr4a_cs_do.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[consoleseterror_PSC.cmd_1912] +RelativePath=CoreMangLib\cti\system\console\consoleseterror_PSC\consoleseterror_PSC.cmd +WorkingDir=CoreMangLib\cti\system\console\consoleseterror_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovflrem2_il_d.cmd_1913] +RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_d\ovflrem2_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt641.cmd_1914] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt641\ConvertToUInt641.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt641 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NG_Standard.cmd_1915] +RelativePath=CoreMangLib\system\delegate\generics\NG_Standard\NG_Standard.cmd +WorkingDir=CoreMangLib\system\delegate\generics\NG_Standard +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated659.cmd_1916] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest659\Generated659\Generated659.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest659\Generated659 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null032.cmd_1917] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032\box-unbox-null032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value016.cmd_1918] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016\box-unbox-value016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null007.cmd_1919] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007\box-unbox-null007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohpin.cmd_1920] +RelativePath=GC\Features\LOHCompaction\lohpin\lohpin.cmd +WorkingDir=GC\Features\LOHCompaction\lohpin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated60.cmd_1921] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest60\Generated60\Generated60.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest60\Generated60 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_287.cmd_1922] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_287\GCSimulator_287.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_287 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesSynchronized.cmd_1923] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized\MethodImplAttributesSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hashcode_d.cmd_1924] +RelativePath=JIT\Directed\nullabletypes\hashcode_d\hashcode_d.cmd +WorkingDir=JIT\Directed\nullabletypes\hashcode_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value026.cmd_1925] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026\box-unbox-value026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex5a.cmd_1926] +RelativePath=baseservices\threading\waithandle\waitall\waitallex5a\waitallex5a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex5a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ushort_cs_d.cmd_1927] +RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_d\ushort_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b79858.cmd_1928] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858\b79858.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCOverReporting.cmd_1929] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting\GCOverReporting.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[143837.cmd_1930] +RelativePath=JIT\jit64\gc\regress\vswhidbey\143837\143837.cmd +WorkingDir=JIT\jit64\gc\regress\vswhidbey\143837 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchretnonlocalexitinfunclet_ro.cmd_1931] +RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro\catchretnonlocalexitinfunclet_ro.cmd +WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1304.cmd_1932] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1304\Generated1304\Generated1304.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1304\Generated1304 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotate_u2.cmd_1933] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_u2\_il_relrotate_u2.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAA_do.cmd_1934] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do\CGRecurseAAA_do.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fgloop.cmd_1935] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop\fgloop.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_12037.cmd_1936] +RelativePath=JIT\Regression\JitBlue\GitHub_12037\GitHub_12037\GitHub_12037.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_12037\GitHub_12037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathCos.cmd_1937] +RelativePath=CoreMangLib\cti\system\math\MathCos\MathCos.cmd +WorkingDir=CoreMangLib\cti\system\math\MathCos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30838.cmd_1938] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838\b30838.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[EnumToObjectb.cmd_1939] +RelativePath=CoreMangLib\cti\system\enum\EnumToObjectb\EnumToObjectb.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumToObjectb +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsParameter.cmd_1940] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter\AttributeTargetsParameter.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1430.cmd_1941] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1430\Generated1430\Generated1430.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1430\Generated1430 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldc_mulovf.cmd_1942] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf\_il_dbgs_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null012.cmd_1943] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012\castclass-null012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated746.cmd_1944] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest746\Generated746\Generated746.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest746\Generated746 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1370.cmd_1945] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1370\Generated1370\Generated1370.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1370\Generated1370 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mutualrecurthd-tls.cmd_1946] +RelativePath=JIT\Directed\tls\mutualrecurthd-tls\mutualrecurthd-tls.cmd +WorkingDir=JIT\Directed\tls\mutualrecurthd-tls +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2441;EXCLUDED;TLS +HostStyle=0 + +[cse2_cs_r.cmd_1947] +RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_r\cse2_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizearraysleep.cmd_1948] +RelativePath=GC\Features\Finalizer\finalizeother\finalizearraysleep\finalizearraysleep.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizearraysleep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgindcall.cmd_1949] +RelativePath=JIT\Methodical\refany\_il_dbgindcall\_il_dbgindcall.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgindcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMatrix_r.cmd_1950] +RelativePath=JIT\SIMD\VectorMatrix_r\VectorMatrix_r.cmd +WorkingDir=JIT\SIMD\VectorMatrix_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter016.cmd_1951] +RelativePath=baseservices\exceptions\generics\TypeParameter016\TypeParameter016.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method001.cmd_1952] +RelativePath=Loader\classloader\generics\Variance\Methods\Method001\Method001.cmd +WorkingDir=Loader\classloader\generics\Variance\Methods\Method001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated461.cmd_1953] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest461\Generated461\Generated461.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest461\Generated461 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1G_r.cmd_1954] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_r\hfa_sd1G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AVException03.cmd_1955] +RelativePath=baseservices\exceptions\AccessViolationException\AVException03\AVException03.cmd +WorkingDir=baseservices\exceptions\AccessViolationException\AVException03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated457.cmd_1956] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest457\Generated457\Generated457.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest457\Generated457 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldfld_mul.cmd_1957] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul\_speed_dbgldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_r.cmd_1958] +RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_r\callconv2_cs_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumps1.cmd_1959] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps1\_il_dbgjumps1.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-11-1.cmd_1960] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-11-1\L-2-11-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-11-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1041.cmd_1961] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1041\Generated1041\Generated1041.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1041\Generated1041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblVar.cmd_1962] +RelativePath=JIT\CodeGenBringUpTests\DblVar\DblVar.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblVar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated661.cmd_1963] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest661\Generated661\Generated661.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest661\Generated661 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Variance2.cmd_1964] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\Variance2\Variance2.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\Variance2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Or_Op_cs_r.cmd_1965] +RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_r\Int_Or_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_68.cmd_1966] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_68\GCSimulator_68.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_68 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldunboxedvt_il_d.cmd_1967] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d\ldfldunboxedvt_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overload.cmd_1968] +RelativePath=JIT\opt\Devirtualization\overload\overload.cmd +WorkingDir=JIT\opt\Devirtualization\overload +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedIncrement2.cmd_1969] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2\InterlockedIncrement2.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pinvoke-examples.cmd_1970] +RelativePath=JIT\Directed\pinvoke\pinvoke-examples\pinvoke-examples.cmd +WorkingDir=JIT\Directed\pinvoke\pinvoke-examples +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFE.cmd_1971] +RelativePath=CoreMangLib\cti\system\mathf\MathFE\MathFE.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFE +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[t1.cmd_1972] +RelativePath=Loader\classloader\SequentialLayout\Regress\217070\t1\t1.cmd +WorkingDir=Loader\classloader\SequentialLayout\Regress\217070\t1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadImageFormatExceptionToString.cmd_1973] +RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString\BadImageFormatExceptionToString.cmd +WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[flowgraph.cmd_1974] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph\flowgraph.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceeillegal.cmd_1975] +RelativePath=JIT\Directed\coverage\importer\ceeillegal\ceeillegal.cmd +WorkingDir=JIT\Directed\coverage\importer\ceeillegal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetValue2.cmd_1976] +RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2\ArrayGetValue2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3_cs_r.cmd_1977] +RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_r\pow3_cs_r.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_u2.cmd_1978] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2\sub_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_385.cmd_1979] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_385\GCSimulator_385.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_385 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyrecursive_20_ro.cmd_1980] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro\throwinfinallyrecursive_20_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPConvF2Lng.cmd_1981] +RelativePath=JIT\CodeGenBringUpTests\FPConvF2Lng\FPConvF2Lng.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPConvF2Lng +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_889822.cmd_1982] +RelativePath=Loader\classloader\regressions\dev10_889822\dev10_889822\dev10_889822.cmd +WorkingDir=Loader\classloader\regressions\dev10_889822\dev10_889822 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadInitExcep.cmd_1983] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\TypeLoadInitExcep\TypeLoadInitExcep.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\TypeLoadInitExcep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesPrivate.cmd_1984] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate\FieldAttributesPrivate.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[singlinkgen.cmd_1985] +RelativePath=GC\Scenarios\SingLinkList\singlinkgen\singlinkgen.cmd +WorkingDir=GC\Scenarios\SingLinkList\singlinkgen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_I2.cmd_1986] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2\OpCodesLdind_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Xor_Op_cs_ro.cmd_1987] +RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_ro\Float_Xor_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringMarshalingTest.cmd_1988] +RelativePath=Interop\MarshalAPI\String\StringMarshalingTest\StringMarshalingTest.cmd +WorkingDir=Interop\MarshalAPI\String\StringMarshalingTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b433189.cmd_1989] +RelativePath=JIT\Methodical\Coverage\b433189\b433189.cmd +WorkingDir=JIT\Methodical\Coverage\b433189 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullenum1000.cmd_1990] +RelativePath=Loader\classloader\regressions\245191\nullenum1000\nullenum1000.cmd +WorkingDir=Loader\classloader\regressions\245191\nullenum1000 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[backwardleave_d.cmd_1991] +RelativePath=JIT\Methodical\eh\disconnected\backwardleave_d\backwardleave_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryexcept_r.cmd_1992] +RelativePath=JIT\Methodical\eh\basics\tryexcept_r\tryexcept_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFTanh.cmd_1993] +RelativePath=CoreMangLib\cti\system\mathf\MathFTanh\MathFTanh.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFTanh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fieldexpr1.cmd_1994] +RelativePath=JIT\jit64\opt\cse\fieldexpr1\fieldexpr1.cmd +WorkingDir=JIT\jit64\opt\cse\fieldexpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b09452.cmd_1995] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452\b09452.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueCtor3.cmd_1996] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3\QueueCtor3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsizeof.cmd_1997] +RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof\_relsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct_instance01.cmd_1998] +RelativePath=JIT\Generics\MemberAccess\struct_instance01\struct_instance01.cmd +WorkingDir=JIT\Generics\MemberAccess\struct_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1324.cmd_1999] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1324\Generated1324\Generated1324.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1324\Generated1324 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToUInt64.cmd_2000] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64\Int32IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToSingle.cmd_2001] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle\DoubleIConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-6-1.cmd_2002] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-6-1\L-1-6-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-6-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated704.cmd_2003] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest704\Generated704\Generated704.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest704\Generated704 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCtor3_cti.cmd_2004] +RelativePath=CoreMangLib\cti\system\guid\GuidCtor3_cti\GuidCtor3_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt649.cmd_2005] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt649\ConvertToUInt649.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedExchange6.cmd_2006] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6\InterlockedExchange6.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_u4.cmd_2007] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4\add_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunbox.cmd_2008] +RelativePath=JIT\Methodical\xxobj\operand\_relunbox\_relunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_relunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwisfirstinstruction_r.cmd_2009] +RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_r\throwisfirstinstruction_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct01_instance.cmd_2010] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance\Struct01_instance.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49984.cmd_2011] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984\b49984.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated458.cmd_2012] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest458\Generated458\Generated458.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest458\Generated458 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_i1.cmd_2013] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1\_il_dbgrefloc_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CodeSize1.cmd_2014] +RelativePath=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1\CodeSize1.cmd +WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctorchk.cmd_2015] +RelativePath=baseservices\threading\interlocked\ctorchk\ctorchk\ctorchk.cmd +WorkingDir=baseservices\threading\interlocked\ctorchk\ctorchk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldsfld_mul.cmd_2016] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul\_speed_relldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit4_il_d.cmd_2017] +RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_d\prefldinit4_il_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableGetValueOrDefault1.cmd_2018] +RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1\NullableGetValueOrDefault1.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesFieldAccessMask.cmd_2019] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask\FieldAttributesFieldAccessMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind02_small.cmd_2020] +RelativePath=JIT\jit64\localloc\unwind\unwind02_small\unwind02_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind02_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_filter.cmd_2021] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter\_il_relhuge_filter.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[endfinallyinloop_d.cmd_2022] +RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_d\endfinallyinloop_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_auto_ser.cmd_2023] +RelativePath=Loader\classloader\generics\Layout\General\class01_auto_ser\class01_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class01_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated995.cmd_2024] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest995\Generated995\Generated995.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest995\Generated995 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated937.cmd_2025] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest937\Generated937\Generated937.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest937\Generated937 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul2.cmd_2026] +RelativePath=JIT\CodeGenBringUpTests\mul2\mul2.cmd +WorkingDir=JIT\CodeGenBringUpTests\mul2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75888.cmd_2027] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888\b75888.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedFamANDAssem.cmd_2028] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem\TypeAttributesNestedFamANDAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesNotSerialized.cmd_2029] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized\FieldAttributesNotSerialized.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated51.cmd_2030] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest51\Generated51\Generated51.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest51\Generated51 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_No_Op_cs_ro.cmd_2031] +RelativePath=JIT\Directed\cmov\Float_No_Op_cs_ro\Float_No_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekSunday.cmd_2032] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday\DayOfWeekSunday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_i1.cmd_2033] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1\ldc_add_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33759.cmd_2034] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759\b33759.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[methodthrowsinfinally_do.cmd_2035] +RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do\methodthrowsinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedDecrement2.cmd_2036] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2\InterlockedDecrement2.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated947.cmd_2037] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest947\Generated947\Generated947.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest947\Generated947 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray3_cs_ro.cmd_2038] +RelativePath=JIT\Methodical\doublearray\dblarray3_cs_ro\dblarray3_cs_ro.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbginstance_cs.cmd_2039] +RelativePath=JIT\Methodical\Boxing\callconv\_odbginstance_cs\_odbginstance_cs.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_odbginstance_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate021.cmd_2040] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate021\Delegate021.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnsafeAddrOfPinnedArrayElement.cmd_2041] +RelativePath=Interop\MarshalAPI\UnsafeAddrOfPinnedArrayElement\UnsafeAddrOfPinnedArrayElement\UnsafeAddrOfPinnedArrayElement.cmd +WorkingDir=Interop\MarshalAPI\UnsafeAddrOfPinnedArrayElement\UnsafeAddrOfPinnedArrayElement +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test1535.cmd_2042] +RelativePath=Regressions\coreclr\1535\Test1535\Test1535.cmd +WorkingDir=Regressions\coreclr\1535\Test1535 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg6.cmd_2043] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg6\semaphoreopenneg6.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_217.cmd_2044] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_217\GCSimulator_217.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass001.cmd_2045] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001\castclass001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst2_ro.cmd_2046] +RelativePath=JIT\Directed\nullabletypes\isinst2_ro\isinst2_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst2_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArgumentNullExceptionCtor1.cmd_2047] +RelativePath=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1\ArgumentNullExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11553.cmd_2048] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553\b11553.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reljumps.cmd_2049] +RelativePath=JIT\Methodical\VT\callconv\_reljumps\_reljumps.cmd +WorkingDir=JIT\Methodical\VT\callconv\_reljumps +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowMethodAccess.cmd_2050] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowMethodAccess\CctorThrowMethodAccess.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowMethodAccess +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[innerFinally_do.cmd_2051] +RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do\innerFinally_do.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_76.cmd_2052] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_76\GCSimulator_76.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_76 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated575.cmd_2053] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest575\Generated575\Generated575.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest575\Generated575 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b152292.cmd_2054] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292\b152292.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToUInt64.cmd_2055] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64\UInt32IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldelemnullarr2.cmd_2056] +RelativePath=JIT\Directed\coverage\importer\ldelemnullarr2\ldelemnullarr2.cmd +WorkingDir=JIT\Directed\coverage\importer\ldelemnullarr2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[271010.cmd_2057] +RelativePath=GC\Coverage\271010\271010.cmd +WorkingDir=GC\Coverage\271010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_il_cs.cmd_2058] +RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_cs\_orelsin_il_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method015.cmd_2059] +RelativePath=Loader\classloader\generics\GenericMethods\method015\method015.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated933.cmd_2060] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest933\Generated933\Generated933.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest933\Generated933 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB117_PSP.cmd_2061] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB117_PSP\LocallocCnstB117_PSP.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB117_PSP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdnull.cmd_2062] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull\OpCodesLdnull.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract09.cmd_2063] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract09\abstract09.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatchfinally_r.cmd_2064] +RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_r\trythrowcatchfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter010.cmd_2065] +RelativePath=baseservices\exceptions\generics\TypeParameter010\TypeParameter010.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass026.cmd_2066] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026\castclass026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox017.cmd_2067] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017\box-unbox017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar10.cmd_2068] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar10\ConvertToChar10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase5_Nested_J.cmd_2069] +RelativePath=Loader\classloader\InterfaceFolding\TestCase5_Nested_J\TestCase5_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase5_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_319.cmd_2070] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_319\GCSimulator_319.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_319 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated452.cmd_2071] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest452\Generated452\Generated452.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest452\Generated452 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend4.cmd_2072] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4\StringBuilderAppend4.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_cs_ro.cmd_2073] +RelativePath=JIT\Methodical\NaN\arithm64_cs_ro\arithm64_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread21.cmd_2074] +RelativePath=baseservices\threading\generics\threadstart\GThread21\GThread21.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldnull.cmd_2075] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgldnull\_il_dbgldnull.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgldnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16896.cmd_2076] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896\b16896.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind02_dynamic.cmd_2077] +RelativePath=JIT\jit64\localloc\unwind\unwind02_dynamic\unwind02_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind02_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_r.cmd_2078] +RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_r\structarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToSingle.cmd_2079] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSingle\Int32IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToInt64.cmd_2080] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64\SByteIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteByte.cmd_2081] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteByte\ReadWriteByte.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUInt.cmd_2082] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt\ThreadStartUInt.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw514968.cmd_2083] +RelativePath=Loader\classloader\generics\regressions\vsw514968\vsw514968\vsw514968.cmd +WorkingDir=Loader\classloader\generics\regressions\vsw514968\vsw514968 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[usegenericfield.cmd_2084] +RelativePath=readytorun\tests\genericsload\usegenericfield\usegenericfield.cmd +WorkingDir=readytorun\tests\genericsload\usegenericfield +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[InterlockedAdd2.cmd_2085] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2\InterlockedAdd2.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyConfigurationAttributeCtor.cmd_2086] +RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor\AssemblyConfigurationAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollectionEnumeratorIEnumeratorReset.cmd_2087] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohfragmentation.cmd_2088] +RelativePath=GC\Features\LOHFragmentation\lohfragmentation\lohfragmentation.cmd +WorkingDir=GC\Features\LOHFragmentation\lohfragmentation +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[CharIsLetter1.cmd_2089] +RelativePath=CoreMangLib\cti\system\char\CharIsLetter1\CharIsLetter1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLetter1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1306.cmd_2090] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1306\Generated1306\Generated1306.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1306\Generated1306 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_u1.cmd_2091] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1\sub_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandleinvalid4.cmd_2092] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandleinvalid4\bindhandleinvalid4.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandleinvalid4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartString_2.cmd_2093] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_2\ThreadStartString_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgfibo_il.cmd_2094] +RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_il\_dbgfibo_il.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassvaluetype_d.cmd_2095] +RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_d\castclassvaluetype_d.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddingSequence_r.cmd_2096] +RelativePath=JIT\SIMD\AddingSequence_r\AddingSequence_r.cmd +WorkingDir=JIT\SIMD\AddingSequence_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41126.cmd_2097] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126\b41126.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14228.cmd_2098] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228\b14228.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1072.cmd_2099] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1072\Generated1072\Generated1072.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1072\Generated1072 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_150586.cmd_2100] +RelativePath=JIT\Regression\JitBlue\DevDiv_150586\DevDiv_150586\DevDiv_150586.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_150586\DevDiv_150586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLeInt1.cmd_2101] +RelativePath=JIT\CodeGenBringUpTests\JTrueLeInt1\JTrueLeInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLeInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Equals2.cmd_2102] +RelativePath=CoreMangLib\cti\system\int\Int32Equals2\Int32Equals2.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Equals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanynullarray.cmd_2103] +RelativePath=baseservices\threading\waithandle\waitany\waitanynullarray\waitanynullarray.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanynullarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nop.cmd_2104] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\nop\nop.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\nop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1483.cmd_2105] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1483\Generated1483\Generated1483.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1483\Generated1483 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSize16.cmd_2106] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16\PackingSize16.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_2107] +RelativePath=Loader\classloader\TSAmbiguities\Variance\Variant_CollapsedInterfaces\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\Variance\Variant_CollapsedInterfaces\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1172.cmd_2108] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1172\Generated1172\Generated1172.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1172\Generated1172 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn_impl.cmd_2109] +RelativePath=JIT\jit64\opt\cg\il\ldftn_impl\ldftn_impl.cmd +WorkingDir=JIT\jit64\opt\cg\il\ldftn_impl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesHidden.cmd_2110] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden\FileAttributesHidden.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31547.cmd_2111] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547\b31547.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NewtR.cmd_2112] +RelativePath=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR\NewtR.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparerCompare1.cmd_2113] +RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1\ComparerCompare1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal2.cmd_2114] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal2\ConvertToDecimal2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsmixed.cmd_2115] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmixed\_dbglcsmixed.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringChars.cmd_2116] +RelativePath=CoreMangLib\cti\system\string\StringChars\StringChars.cmd +WorkingDir=CoreMangLib\cti\system\string\StringChars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[popi.cmd_2117] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\popi\popi.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\popi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1035.cmd_2118] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1035\Generated1035\Generated1035.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1035\Generated1035 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rva_rvastatic1.cmd_2119] +RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic1\rva_rvastatic1.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[blt_i4.cmd_2120] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i4\blt_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs2.cmd_2121] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcs2\_rellcs2.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u8_u4.cmd_2122] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4\conv_ovf_u8_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1413.cmd_2123] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1413\Generated1413\Generated1413.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1413\Generated1413 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3Interop_ro.cmd_2124] +RelativePath=JIT\SIMD\Vector3Interop_ro\Vector3Interop_ro.cmd +WorkingDir=JIT\SIMD\Vector3Interop_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InstrCnt1.cmd_2125] +RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt1\InstrCnt1.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_I8.cmd_2126] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8\OpCodesConv_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListAdd.cmd_2127] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAdd\ListAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8a_cs_d.cmd_2128] +RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_d\convr8a_cs_d.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal1.cmd_2129] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal1\ConvertToDecimal1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ccse_cs_ro.cmd_2130] +RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_ro\ccse_cs_ro.cmd +WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13452.cmd_2131] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452\b13452.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param05.cmd_2132] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param05\param05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsmax.cmd_2133] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmax\_speed_rellcsmax.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmax +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_2134] +RelativePath=JIT\Directed\PREFIX\unaligned\1\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated357.cmd_2135] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest357\Generated357\Generated357.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest357\Generated357 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface015.cmd_2136] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015\box-unbox-interface015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPConvF2I.cmd_2137] +RelativePath=JIT\CodeGenBringUpTests\FPConvF2I\FPConvF2I.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPConvF2I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_do.cmd_2138] +RelativePath=JIT\Methodical\cctor\misc\throw_cs_do\throw_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\misc\throw_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated904.cmd_2139] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest904\Generated904\Generated904.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest904\Generated904 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated888.cmd_2140] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest888\Generated888\Generated888.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest888\Generated888 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1267.cmd_2141] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1267\Generated1267\Generated1267.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1267\Generated1267 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn_dbg.cmd_2142] +RelativePath=JIT\jit64\opt\cg\il\ldftn_dbg\ldftn_dbg.cmd +WorkingDir=JIT\jit64\opt\cg\il\ldftn_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dd116295.cmd_2143] +RelativePath=Loader\classloader\regressions\dd116295\dd116295\dd116295.cmd +WorkingDir=Loader\classloader\regressions\dd116295\dd116295 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_brfalse.cmd_2144] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse\c_brfalse.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox014.cmd_2145] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014\box-unbox014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static02.cmd_2146] +RelativePath=JIT\Generics\pinvoke\static02\static02.cmd +WorkingDir=JIT\Generics\pinvoke\static02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_flow.cmd_2147] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow\_il_dbgu_flow.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread24.cmd_2148] +RelativePath=baseservices\threading\generics\TimerCallback\thread24\thread24.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartBool_1.cmd_2149] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_1\ThreadStartBool_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_il_r.cmd_2150] +RelativePath=JIT\Generics\ConstrainedCall\vt4_il_r\vt4_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LargeObjectAlloc.cmd_2151] +RelativePath=GC\Coverage\LargeObjectAlloc\LargeObjectAlloc.cmd +WorkingDir=GC\Coverage\LargeObjectAlloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[NestedInterface03.cmd_2152] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface03\NestedInterface03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50026.cmd_2153] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026\b50026.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value032.cmd_2154] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032\box-unbox-value032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionIsSynchronized.cmd_2155] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized\ICollectionIsSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryValue4.cmd_2156] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4\DictionaryIDictionaryValue4.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[calli2_il_d.cmd_2157] +RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_d\calli2_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate020.cmd_2158] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate020\Delegate020.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBge_S.cmd_2159] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S\OpCodesBge_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MulMatrix.cmd_2160] +RelativePath=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix\MulMatrix.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_range1.cmd_2161] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range1\_il_dbgint32_range1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetBytes5.cmd_2162] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5\EncodingGetBytes5.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_398.cmd_2163] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_398\GCSimulator_398.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_398 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1481.cmd_2164] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1481\Generated1481\Generated1481.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1481\Generated1481 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics040.cmd_2165] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040\box-unbox-generics040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49318.cmd_2166] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318\b49318.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-4.cmd_2167] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-4\_dbgunsafe-4.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompare9.cmd_2168] +RelativePath=CoreMangLib\cti\system\string\StringCompare9\StringCompare9.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompare9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBlt_S.cmd_2169] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S\OpCodesBlt_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_cs_r.cmd_2170] +RelativePath=JIT\Directed\shift\uint32_cs_r\uint32_cs_r.cmd +WorkingDir=JIT\Directed\shift\uint32_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_long_1_d.cmd_2171] +RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_d\seq_long_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91223.cmd_2172] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223\b91223.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14673.cmd_2173] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673\b14673.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31903.cmd_2174] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903\b31903.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitinroot.cmd_2175] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinroot\nonlocalexitinroot.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinroot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorector3.cmd_2176] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorector3\semaphorector3.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorector3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_S.cmd_2177] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S\OpCodesLdc_I4_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1001.cmd_2178] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1001\Generated1001\Generated1001.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1001\Generated1001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated371.cmd_2179] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest371\Generated371\Generated371.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest371\Generated371 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TargetParameterCountExceptionCtor3.cmd_2180] +RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3\TargetParameterCountExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallingConventionWinapi.cmd_2181] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi\CallingConventionWinapi.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_109.cmd_2182] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_109\GCSimulator_109.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_109 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPush1_push1.cmd_2183] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1\StackBehaviourPush1_push1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalgotoinatryblockinahandler_do.cmd_2184] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do\nonlocalgotoinatryblockinahandler_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_il_r.cmd_2185] +RelativePath=JIT\Generics\ConstrainedCall\vt3_il_r\vt3_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26512.cmd_2186] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512\b26512.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdlen.cmd_2187] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen\OpCodesLdlen.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidToByteArray.cmd_2188] +RelativePath=CoreMangLib\cti\system\guid\GuidToByteArray\GuidToByteArray.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidToByteArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread01.cmd_2189] +RelativePath=baseservices\threading\generics\WaitCallback\thread01\thread01.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsvalbox.cmd_2190] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox\_speed_dbglcsvalbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte2.cmd_2191] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte2\ConvertToByte2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_0_5b.cmd_2192] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5b\_il_relint32_0_5b.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bigvtbl_cs_ro.cmd_2193] +RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro\bigvtbl_cs_ro.cmd +WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf.cmd_2194] +RelativePath=JIT\IL_Conformance\Old\Base\add_ovf\add_ovf.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\add_ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trashreg_il_r.cmd_2195] +RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_r\trashreg_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEquals2_cti.cmd_2196] +RelativePath=CoreMangLib\cti\system\guid\GuidEquals2_cti\GuidEquals2_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null038.cmd_2197] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038\box-unbox-null038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_347.cmd_2198] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_347\GCSimulator_347.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1193.cmd_2199] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1193\Generated1193\Generated1193.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1193\Generated1193 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_r8.cmd_2200] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r8\ret_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44879.cmd_2201] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879\b44879.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53547.cmd_2202] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547\b53547.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2C_d.cmd_2203] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_d\hfa_sf2C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13178.cmd_2204] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178\b13178.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToChar.cmd_2205] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar\UInt16IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14323.cmd_2206] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323\b14323.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6412.cmd_2207] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6412\ConvertToUInt6412.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6412 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion5.cmd_2208] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion5\NullCheckAssertion5.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ATPACtor.cmd_2209] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor\ATPACtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListRemoveAt.cmd_2210] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt\ListRemoveAt.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I_Un.cmd_2211] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un\OpCodesConv_Ovf_I_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro177066.cmd_2212] +RelativePath=Loader\binding\assemblies\assemblybugs\177066w\repro177066\repro177066.cmd +WorkingDir=Loader\binding\assemblies\assemblybugs\177066w\repro177066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblMul.cmd_2213] +RelativePath=JIT\CodeGenBringUpTests\DblMul\DblMul.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblMul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGtFP.cmd_2214] +RelativePath=JIT\CodeGenBringUpTests\JTrueGtFP\JTrueGtFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGtFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix6.cmd_2215] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6\OpCodesPrefix6.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPSubConst.cmd_2216] +RelativePath=JIT\CodeGenBringUpTests\FPSubConst\FPSubConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPSubConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RemoveUsageTest.cmd_2217] +RelativePath=GC\API\GC\RemoveUsageTest\RemoveUsageTest.cmd +WorkingDir=GC\API\GC\RemoveUsageTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92714.cmd_2218] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714\b92714.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToUInt16.cmd_2219] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16\UInt16IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_i8.cmd_2220] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8\ldc_add_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bool_cs_ro.cmd_2221] +RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_ro\bool_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcallee.cmd_2222] +RelativePath=JIT\opt\Inline\regression\badcallee\badcallee\badcallee.cmd +WorkingDir=JIT\opt\Inline\regression\badcallee\badcallee +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated841.cmd_2223] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest841\Generated841\Generated841.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest841\Generated841 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread04.cmd_2224] +RelativePath=baseservices\threading\generics\syncdelegate\GThread04\GThread04.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated737.cmd_2225] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest737\Generated737\Generated737.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest737\Generated737 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowincatchnestedinfinally_do.cmd_2226] +RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do\rethrowincatchnestedinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SpAddr.cmd_2227] +RelativePath=JIT\Directed\StructPromote\SpAddr\SpAddr.cmd +WorkingDir=JIT\Directed\StructPromote\SpAddr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Gcd.cmd_2228] +RelativePath=JIT\CodeGenBringUpTests\Gcd\Gcd.cmd +WorkingDir=JIT\CodeGenBringUpTests\Gcd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bigvtbl_cs_do.cmd_2229] +RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do\bigvtbl_cs_do.cmd +WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEnumeratorIEnumeratorCurrent.cmd_2230] +RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent\CharEnumeratorIEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddArray2.cmd_2231] +RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2\AddArray2.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess2_cs_ro.cmd_2232] +RelativePath=JIT\Directed\StrAccess\straccess2_cs_ro\straccess2_cs_ro.cmd +WorkingDir=JIT\Directed\StrAccess\straccess2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsbas.cmd_2233] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbas\_speed_rellcsbas.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbas +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overlap.cmd_2234] +RelativePath=JIT\Directed\RVAInit\overlap\overlap.cmd +WorkingDir=JIT\Directed\RVAInit\overlap +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[static_passing_class01.cmd_2235] +RelativePath=JIT\Generics\Parameters\static_passing_class01\static_passing_class01.cmd +WorkingDir=JIT\Generics\Parameters\static_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated734.cmd_2236] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest734\Generated734\Generated734.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest734\Generated734 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface007.cmd_2237] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007\box-unbox-interface007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[heap_ovf.cmd_2238] +RelativePath=JIT\IL_Conformance\Old\directed\heap_ovf\heap_ovf.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\heap_ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetValue2b.cmd_2239] +RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2b\ArrayGetValue2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SealedTypes.cmd_2240] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\SealedTypes\SealedTypes.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\SealedTypes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread06.cmd_2241] +RelativePath=baseservices\threading\generics\threadstart\GThread06\GThread06.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated783.cmd_2242] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest783\Generated783\Generated783.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest783\Generated783 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedTryRegionsWithSameOffset1.cmd_2243] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1\nestedTryRegionsWithSameOffset1.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14135.cmd_2244] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135\b14135.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfilter.cmd_2245] +RelativePath=JIT\Methodical\casts\SEH\_il_relfilter\_il_relfilter.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_relfilter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[moduleHandleCache.cmd_2246] +RelativePath=JIT\Methodical\flowgraph\bug619534\moduleHandleCache\moduleHandleCache.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\moduleHandleCache +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter3_r.cmd_2247] +RelativePath=JIT\Directed\leave\filter3_r\filter3_r.cmd +WorkingDir=JIT\Directed\leave\filter3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1387.cmd_2248] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1387\Generated1387\Generated1387.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1387\Generated1387 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_2b.cmd_2249] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2b\_il_dbgtest_2b.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate025.cmd_2250] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate025\Delegate025.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated443.cmd_2251] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest443\Generated443\Generated443.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest443\Generated443 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovfldiv1_il_r.cmd_2252] +RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_r\ovfldiv1_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b119026a.cmd_2253] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a\b119026a.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytryfinally_do.cmd_2254] +RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_do\tryfinallytryfinally_do.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1360.cmd_2255] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1360\Generated1360\Generated1360.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1360\Generated1360 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1348.cmd_2256] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1348\Generated1348\Generated1348.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1348\Generated1348 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsbox.cmd_2257] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbox\_rellcsbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25458.cmd_2258] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458\b25458.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44020.cmd_2259] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020\b44020.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_do.cmd_2260] +RelativePath=JIT\Methodical\eh\basics\throwincatch_do\throwincatch_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwincatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_un_r8.cmd_2261] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8\bge_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToChar.cmd_2262] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToChar\Int16IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcvariant.cmd_2263] +RelativePath=GC\Scenarios\Boxing\gcvariant\gcvariant.cmd +WorkingDir=GC\Scenarios\Boxing\gcvariant +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingCtor3.cmd_2264] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3\UTF8EncodingCtor3.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldstatic1_il_r.cmd_2265] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r\ldfldstatic1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics012.cmd_2266] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012\box-unbox-generics012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_jmpi.cmd_2267] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi\_il_dbgrecurse_jmpi.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated868.cmd_2268] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest868\Generated868\Generated868.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest868\Generated868 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16102.cmd_2269] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102\b16102.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatInfinitiesToInt_r.cmd_2270] +RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_r\FloatInfinitiesToInt_r.cmd +WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relarrres.cmd_2271] +RelativePath=JIT\Methodical\Arrays\misc\_speed_relarrres\_speed_relarrres.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_relarrres +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_gc.cmd_2272] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_gc\_il_dbgdeep_gc.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_gc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14928.cmd_2273] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928\b14928.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_V.cmd_2274] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V\_il_dbgldobj_V.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794631_d.cmd_2275] +RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d\DevDiv_794631_d.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-02_cs_ro.cmd_2276] +RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_ro\3w1d-02_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_203.cmd_2277] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_203\GCSimulator_203.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_203 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Count.cmd_2278] +RelativePath=GC\API\GCHandleCollector\Count\Count.cmd +WorkingDir=GC\API\GCHandleCollector\Count +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated497.cmd_2279] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest497\Generated497\Generated497.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest497\Generated497 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BugWithAVX_r.cmd_2280] +RelativePath=JIT\SIMD\BugWithAVX_r\BugWithAVX_r.cmd +WorkingDir=JIT\SIMD\BugWithAVX_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InlineThrow.cmd_2281] +RelativePath=JIT\opt\Inline\tests\InlineThrow\InlineThrow.cmd +WorkingDir=JIT\opt\Inline\tests\InlineThrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToDecimal.cmd_2282] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal\Int64IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shl.cmd_2283] +RelativePath=JIT\IL_Conformance\Old\Base\shl\shl.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\shl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated383.cmd_2284] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest383\Generated383\Generated383.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest383\Generated383 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizeio.cmd_2285] +RelativePath=GC\Features\Finalizer\finalizeio\finalizeio\finalizeio.cmd +WorkingDir=GC\Features\Finalizer\finalizeio\finalizeio +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated339.cmd_2286] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest339\Generated339\Generated339.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest339\Generated339 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-30-two.cmd_2287] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-30-two\RMV-2-8-30-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-30-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToInt64.cmd_2288] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64\ByteIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b64579.cmd_2289] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579\b64579.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_do.cmd_2290] +RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do\jaggedarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_150265.cmd_2291] +RelativePath=JIT\Regression\JitBlue\DevDiv_150265\DevDiv_150265\DevDiv_150265.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_150265\DevDiv_150265 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread05.cmd_2292] +RelativePath=baseservices\threading\generics\WaitCallback\thread05\thread05.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul1_dbg.cmd_2293] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg\mul1_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhan3_ref.cmd_2294] +RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ref\_il_relhan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_s.cmd_2295] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_s\_il_dbgrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_359.cmd_2296] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_359\GCSimulator_359.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_359 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05617.cmd_2297] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617\b05617.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated612.cmd_2298] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest612\Generated612\Generated612.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest612\Generated612 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am06abandonall.cmd_2299] +RelativePath=baseservices\threading\mutex\abandonedmutex\am06abandonall\am06abandonall.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am06abandonall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try2_r.cmd_2300] +RelativePath=JIT\Directed\leave\try2_r\try2_r.cmd +WorkingDir=JIT\Directed\leave\try2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryGetEnumerator.cmd_2301] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator\DictionaryIDictionaryGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbginitializearray.cmd_2302] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbginitializearray\_il_dbginitializearray.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbginitializearray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_2303] +RelativePath=JIT\Directed\PREFIX\unaligned\4\initblk\initblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1C_d.cmd_2304] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_d\hfa_sd1C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_11.cmd_2305] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_11\ConvertToInt64_11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated103.cmd_2306] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest103\Generated103\Generated103.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest103\Generated103 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind06_small.cmd_2307] +RelativePath=JIT\jit64\localloc\unwind\unwind06_small\unwind06_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind06_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structinregs.cmd_2308] +RelativePath=JIT\Methodical\structs\systemvbringup\structinregs\structinregs.cmd +WorkingDir=JIT\Methodical\structs\systemvbringup\structinregs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_cs_cs.cmd_2309] +RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_cs\_relsin_cs_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64Parse1.cmd_2310] +RelativePath=CoreMangLib\cti\system\int64\Int64Parse1\Int64Parse1.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05621.cmd_2311] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621\b05621.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass040.cmd_2312] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040\castclass040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorectorneg3.cmd_2313] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorectorneg3\semaphorectorneg3.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorectorneg3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated662.cmd_2314] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest662\Generated662\Generated662.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest662\Generated662 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[short_cs_ro.cmd_2315] +RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_ro\short_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstboxed_do.cmd_2316] +RelativePath=JIT\Directed\nullabletypes\isinstboxed_do\isinstboxed_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstboxed_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglcs_ldlen.cmd_2317] +RelativePath=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen\_il_dbglcs_ldlen.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-7-two.cmd_2318] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-7-two\RMV-2-8-7-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-7-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_do.cmd_2319] +RelativePath=JIT\Directed\shift\uint8_do\uint8_do.cmd +WorkingDir=JIT\Directed\shift\uint8_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_u8.cmd_2320] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u8\ble_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetNativeVariantForObject.cmd_2321] +RelativePath=Interop\MarshalAPI\GetNativeVariantForObject\GetNativeVariantForObject\GetNativeVariantForObject.cmd +WorkingDir=Interop\MarshalAPI\GetNativeVariantForObject\GetNativeVariantForObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated156.cmd_2322] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest156\Generated156\Generated156.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest156\Generated156 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IOExceptionctor2.cmd_2323] +RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2\IOExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i61.cmd_2324] +RelativePath=JIT\jit64\mcc\interop\mcc_i61\mcc_i61.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i61 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[outermostFinally.cmd_2325] +RelativePath=JIT\Methodical\eh\regress\asurt\122239\outermostFinally\outermostFinally.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\122239\outermostFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics032.cmd_2326] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032\box-unbox-generics032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param03.cmd_2327] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param03\param03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit1_ro.cmd_2328] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro\tryCatchFinallyThrow_nonlocalexit1_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetElementType.cmd_2329] +RelativePath=CoreMangLib\cti\system\type\TypeGetElementType\TypeGetElementType.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetElementType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8div_cs_d.cmd_2330] +RelativePath=JIT\Methodical\divrem\div\r8div_cs_d\r8div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\r8div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_115.cmd_2331] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_115\GCSimulator_115.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_115 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_ro.cmd_2332] +RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_ro\callconv1_cs_ro.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenMethInlined.cmd_2333] +RelativePath=Loader\classloader\TypeInitialization\Inlining\GenMethInlined\GenMethInlined.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\GenMethInlined +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPushi8.cmd_2334] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8\StackBehaviourPushi8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltailjump_cs.cmd_2335] +RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_cs\_reltailjump_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated82.cmd_2336] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest82\Generated82\Generated82.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest82\Generated82 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated22.cmd_2337] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest22\Generated22\Generated22.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest22\Generated22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[neg.cmd_2338] +RelativePath=JIT\IL_Conformance\Old\Base\neg\neg.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_148.cmd_2339] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_148\GCSimulator_148.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_148 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14067b.cmd_2340] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b\b14067b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0E_r.cmd_2341] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_r\hfa_sd0E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[DevDiv_359736_ro.cmd_2342] +RelativePath=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_ro\DevDiv_359736_ro.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_99.cmd_2343] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_99\GCSimulator_99.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_99 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nativeint_il_r.cmd_2344] +RelativePath=JIT\Directed\shift\nativeint_il_r\nativeint_il_r.cmd +WorkingDir=JIT\Directed\shift\nativeint_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b109878.cmd_2345] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878\b109878.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopvt.cmd_2346] +RelativePath=JIT\Regression\Dev11\dev10_94677\loopvt\loopvt.cmd +WorkingDir=JIT\Regression\Dev11\dev10_94677\loopvt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_ep_void.cmd_2347] +RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void\_il_dbgrecurse_ep_void.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b09246.cmd_2348] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246\b09246.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finallytryintryfinally_r.cmd_2349] +RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_r\finallytryintryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36975.cmd_2350] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975\b36975.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdsfld.cmd_2351] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld\OpCodesLdsfld.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP2b.cmd_2352] +RelativePath=JIT\Directed\StructPromote\SP2b\SP2b.cmd +WorkingDir=JIT\Directed\StructPromote\SP2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldc_mulovf.cmd_2353] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf\_dbgs_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null029.cmd_2354] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029\box-unbox-null029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1104.cmd_2355] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1104\Generated1104\Generated1104.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1104\Generated1104 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTotalSeconds.cmd_2356] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds\TimeSpanTotalSeconds.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_r.cmd_2357] +RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r\jaggedarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface013.cmd_2358] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013\castclass-interface013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_i8.cmd_2359] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i8\sub_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean7.cmd_2360] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean7\ConvertToBoolean7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u4_i4.cmd_2361] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4\ldc_conv_ovf_u4_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueToArray.cmd_2362] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueToArray\QueueToArray.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueToArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27819.cmd_2363] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819\b27819.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4rem_cs_ro.cmd_2364] +RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_ro\u4rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12624.cmd_2365] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624\b12624.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_i4_i1.cmd_2366] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_i1\_il_relcompat_i4_i1.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanCompareTo_Boolean.cmd_2367] +RelativePath=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean\BooleanCompareTo_Boolean.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparerEquals3.cmd_2368] +RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3\StringComparerEquals3.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated410.cmd_2369] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest410\Generated410\Generated410.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest410\Generated410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Baadbaad.cmd_2370] +RelativePath=baseservices\exceptions\unittests\Baadbaad\Baadbaad.cmd +WorkingDir=baseservices\exceptions\unittests\Baadbaad +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null032.cmd_2371] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032\castclass-null032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghanoi2.cmd_2372] +RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi2\_il_dbghanoi2.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString1.cmd_2373] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString1\ConvertToString1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString12.cmd_2374] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString12\ConvertToString12.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16ToString3.cmd_2375] +RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString3\UInt16ToString3.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAtan2.cmd_2376] +RelativePath=CoreMangLib\cti\system\math\MathAtan2\MathAtan2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAtan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_filter.cmd_2377] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter\_il_dbghuge_filter.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reliface2.cmd_2378] +RelativePath=JIT\Methodical\casts\iface\_il_reliface2\_il_reliface2.cmd +WorkingDir=JIT\Methodical\casts\iface\_il_reliface2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadEHregionacrossBB_r.cmd_2379] +RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r\deadEHregionacrossBB_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_ro.cmd_2380] +RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro\jaggedarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToSingle.cmd_2381] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle\UInt64IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89946.cmd_2382] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946\b89946.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTotalMilliseconds.cmd_2383] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds\TimeSpanTotalMilliseconds.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfault_d.cmd_2384] +RelativePath=JIT\Methodical\eh\basics\throwinfault_d\throwinfault_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfault_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reflectobj.cmd_2385] +RelativePath=GC\Scenarios\ReflectObj\reflectobj\reflectobj.cmd +WorkingDir=GC\Scenarios\ReflectObj\reflectobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatchfinally_d.cmd_2386] +RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_d\trythrowcatchfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DynamicStaticAlignment.cmd_2387] +RelativePath=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment\DynamicStaticAlignment.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null014.cmd_2388] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014\castclass-null014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89797.cmd_2389] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797\b89797.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamWriteTimeOut_PSC.cmd_2390] +RelativePath=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC\StreamWriteTimeOut_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8_cs_ro.cmd_2391] +RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_ro\r8_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug603649.cmd_2392] +RelativePath=JIT\Methodical\jitinterface\bug603649\bug603649.cmd +WorkingDir=JIT\Methodical\jitinterface\bug603649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax11.cmd_2393] +RelativePath=CoreMangLib\cti\system\math\MathMax11\MathMax11.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcvariant2.cmd_2394] +RelativePath=GC\Scenarios\Boxing\gcvariant2\gcvariant2.cmd +WorkingDir=GC\Scenarios\Boxing\gcvariant2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1149.cmd_2395] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1149\Generated1149\Generated1149.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1149\Generated1149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i37.cmd_2396] +RelativePath=JIT\jit64\mcc\interop\mcc_i37\mcc_i37.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i37 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface06.cmd_2397] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface06\MultipleInterface06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated390.cmd_2398] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest390\Generated390\Generated390.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest390\Generated390 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_ro.cmd_2399] +RelativePath=JIT\Methodical\eh\basics\throwincatch_ro\throwincatch_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwincatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionIsSynchronized.cmd_2400] +RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized\ICollectionIsSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[concurrentspin2.cmd_2401] +RelativePath=GC\Features\BackgroundGC\concurrentspin2\concurrentspin2.cmd +WorkingDir=GC\Features\BackgroundGC\concurrentspin2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated681.cmd_2402] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest681\Generated681\Generated681.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest681\Generated681 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_s.cmd_2403] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_s\_dbgrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind02_large.cmd_2404] +RelativePath=JIT\jit64\localloc\unwind\unwind02_large\unwind02_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind02_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_il_d.cmd_2405] +RelativePath=JIT\Generics\ConstrainedCall\vt4_il_d\vt4_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null017.cmd_2406] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017\box-unbox-null017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001j.cmd_2407] +RelativePath=Loader\classloader\generics\GenericMethods\method001j\method001j.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001j +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06754.cmd_2408] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754\b06754.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToBoolean.cmd_2409] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean\Int64IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated754.cmd_2410] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest754\Generated754\Generated754.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest754\Generated754 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToUInt64.cmd_2411] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt64\StringIConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcastclass_ldloc.cmd_2412] +RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc\_dbgcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljump.cmd_2413] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reljump\_il_reljump.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reljump +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relvcall.cmd_2414] +RelativePath=JIT\Methodical\VT\identity\_relvcall\_relvcall.cmd +WorkingDir=JIT\Methodical\VT\identity\_relvcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcs2.cmd_2415] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs2\_speed_rellcs2.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte11.cmd_2416] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte11\ConvertToSByte11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorIntEquals_ro.cmd_2417] +RelativePath=JIT\SIMD\VectorIntEquals_ro\VectorIntEquals_ro.cmd +WorkingDir=JIT\SIMD\VectorIntEquals_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcatchfinally_tail.cmd_2418] +RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail\_relcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanGetHashCode.cmd_2419] +RelativePath=CoreMangLib\cti\system\boolean\BooleanGetHashCode\BooleanGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I8.cmd_2420] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8\OpCodesConv_Ovf_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1299.cmd_2421] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1299\Generated1299\Generated1299.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1299\Generated1299 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b142473.cmd_2422] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473\b142473.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[short_cs_d.cmd_2423] +RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_d\short_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated556.cmd_2424] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest556\Generated556\Generated556.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest556\Generated556 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2A_r.cmd_2425] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_r\hfa_nf2A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated133.cmd_2426] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest133\Generated133\Generated133.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest133\Generated133 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_844071.cmd_2427] +RelativePath=JIT\jit64\opt\cprop\Dev10_844071\Dev10_844071.cmd +WorkingDir=JIT\jit64\opt\cprop\Dev10_844071 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCWaitForPendingFinalizers.cmd_2428] +RelativePath=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers\GCWaitForPendingFinalizers.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_3.cmd_2429] +RelativePath=JIT\jit64\gc\misc\structfp1_3\structfp1_3.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchange5_cti.cmd_2430] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchange5_cti\compareexchange5_cti.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchange5_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_byte_1_r.cmd_2431] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r\seq_gc_byte_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit5.cmd_2432] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit5\_dbgexplicit5.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_short_1_d.cmd_2433] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_d\expl_gc_short_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b60194.cmd_2434] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194\b60194.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[severaldeadehregions_d.cmd_2435] +RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_d\severaldeadehregions_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_i4.cmd_2436] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i4\_il_relrefloc_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_u8.cmd_2437] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8\cgt_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblSub.cmd_2438] +RelativePath=JIT\CodeGenBringUpTests\DblSub\DblSub.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblSub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[short_cs_r.cmd_2439] +RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_r\short_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatch_d.cmd_2440] +RelativePath=JIT\Methodical\eh\basics\trythrowcatch_d\trythrowcatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_dbg.cmd_2441] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg\rem_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsDelegate.cmd_2442] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate\AttributeTargetsDelegate.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReRegisterForFinalize_null.cmd_2443] +RelativePath=GC\API\GC\ReRegisterForFinalize_null\ReRegisterForFinalize_null.cmd +WorkingDir=GC\API\GC\ReRegisterForFinalize_null +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_int_1_d.cmd_2444] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_d\expl_gc_int_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sbyte_cs_do.cmd_2445] +RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do\sbyte_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_380.cmd_2446] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_380\GCSimulator_380.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_380 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_box.cmd_2447] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box\_il_dbgu_box.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RngchkStress3.cmd_2448] +RelativePath=JIT\jit64\opt\rngchk\RngchkStress3\RngchkStress3.cmd +WorkingDir=JIT\jit64\opt\rngchk\RngchkStress3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter015.cmd_2449] +RelativePath=baseservices\exceptions\generics\TypeParameter015\TypeParameter015.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalZero.cmd_2450] +RelativePath=CoreMangLib\cti\system\decimal\DecimalZero\DecimalZero.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalZero +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallythrow_nonlocalexit_ro.cmd_2451] +RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro\tryfinallythrow_nonlocalexit_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsLetterOrDigit2.cmd_2452] +RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit2\CharIsLetterOrDigit2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_4.cmd_2453] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_4\ConvertToInt16_4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_i1.cmd_2454] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i1\_opt_relrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1435.cmd_2455] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1435\Generated1435\Generated1435.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1435\Generated1435 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase05.cmd_2456] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase05\AbstractBase05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated408.cmd_2457] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest408\Generated408\Generated408.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest408\Generated408 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsizeof64.cmd_2458] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof64\_il_relsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetByteCount.cmd_2459] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount\EncodingGetByteCount.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated637.cmd_2460] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest637\Generated637\Generated637.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest637\Generated637 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_u8.cmd_2461] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_u8\_il_relhuge_u8.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relinitializearray_enum.cmd_2462] +RelativePath=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum\_il_relinitializearray_enum.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartInt_1.cmd_2463] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt_1\ThreadStartInt_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated320.cmd_2464] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest320\Generated320\Generated320.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest320\Generated320 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircleInConvex_r.cmd_2465] +RelativePath=JIT\SIMD\CircleInConvex_r\CircleInConvex_r.cmd +WorkingDir=JIT\SIMD\CircleInConvex_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassinterface_ro.cmd_2466] +RelativePath=JIT\Directed\nullabletypes\castclassinterface_ro\castclassinterface_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassinterface_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rancollect.cmd_2467] +RelativePath=GC\Scenarios\RanCollect\rancollect\rancollect.cmd +WorkingDir=GC\Scenarios\RanCollect\rancollect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated908.cmd_2468] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest908\Generated908\Generated908.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest908\Generated908 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated256.cmd_2469] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest256\Generated256\Generated256.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest256\Generated256 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated491.cmd_2470] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest491\Generated491\Generated491.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest491\Generated491 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_mutual_rec.cmd_2471] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec\_il_dbgtest_mutual_rec.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort4.cmd_2472] +RelativePath=CoreMangLib\cti\system\array\ArraySort4\ArraySort4.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise4_cs_d.cmd_2473] +RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_d\xprecise4_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value022.cmd_2474] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022\box-unbox-value022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedCompareExchange6.cmd_2475] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6\InterlockedCompareExchange6.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodCalls.cmd_2476] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\MethodCalls\MethodCalls.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\MethodCalls +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesSizeof.cmd_2477] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof\OpCodesSizeof.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thdtreelivingobj.cmd_2478] +RelativePath=GC\Scenarios\BinTree\thdtreelivingobj\thdtreelivingobj.cmd +WorkingDir=GC\Scenarios\BinTree\thdtreelivingobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[Generated38.cmd_2479] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest38\Generated38\Generated38.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest38\Generated38 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1131.cmd_2480] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1131\Generated1131\Generated1131.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1131\Generated1131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvolatile.cmd_2481] +RelativePath=JIT\Methodical\VT\identity\_il_dbgvolatile\_il_dbgvolatile.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_dbgvolatile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase6_Nested_J_Nested_I.cmd_2482] +RelativePath=Loader\classloader\InterfaceFolding\TestCase6_Nested_J_Nested_I\TestCase6_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase6_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated713.cmd_2483] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest713\Generated713\Generated713.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest713\Generated713 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_159.cmd_2484] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_159\GCSimulator_159.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_159 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToBoolean.cmd_2485] +RelativePath=CoreMangLib\cti\system\single\SingleToBoolean\SingleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchangeobject.cmd_2486] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchangeobject\compareexchangeobject.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchangeobject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cprop001_do.cmd_2487] +RelativePath=JIT\jit64\opt\cprop\cprop001_do\cprop001_do.cmd +WorkingDir=JIT\jit64\opt\cprop\cprop001_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNmul_cs_ro.cmd_2488] +RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_ro\r4NaNmul_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[comp32_il_d.cmd_2489] +RelativePath=JIT\Methodical\NaN\comp32_il_d\comp32_il_d.cmd +WorkingDir=JIT\Methodical\NaN\comp32_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcatchfinally_tail.cmd_2490] +RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail\_dbgcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend13.cmd_2491] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13\StringBuilderAppend13.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_obj_1_r.cmd_2492] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r\expl_gc_obj_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase6_Nested_I.cmd_2493] +RelativePath=Loader\classloader\InterfaceFolding\TestCase6_Nested_I\TestCase6_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase6_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated768.cmd_2494] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest768\Generated768\Generated768.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest768\Generated768 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated743.cmd_2495] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest743\Generated743\Generated743.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest743\Generated743 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01b_seq.cmd_2496] +RelativePath=Loader\classloader\generics\Layout\General\Base01b_seq\Base01b_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01b_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64_r.cmd_2497] +RelativePath=JIT\Directed\shift\uint64_r\uint64_r.cmd +WorkingDir=JIT\Directed\shift\uint64_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwwithhandlerscatchingbase_do.cmd_2498] +RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do\throwwithhandlerscatchingbase_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RefIntTest.cmd_2499] +RelativePath=Interop\RefInt\RefIntTest\RefIntTest.cmd +WorkingDir=Interop\RefInt\RefIntTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp4_1.cmd_2500] +RelativePath=JIT\jit64\gc\misc\structfp4_1\structfp4_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp4_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classic_r.cmd_2501] +RelativePath=JIT\Methodical\nonvirtualcall\classic_r\classic_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\classic_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch3_r.cmd_2502] +RelativePath=JIT\Directed\leave\catch3_r\catch3_r.cmd +WorkingDir=JIT\Directed\leave\catch3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated264.cmd_2503] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest264\Generated264\Generated264.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest264\Generated264 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1611.cmd_2504] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1611\ConvertToUInt1611.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1611 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32345.cmd_2505] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345\b32345.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtryfinally_d.cmd_2506] +RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_d\deadtryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitone2.cmd_2507] +RelativePath=baseservices\threading\mutex\misc\waitone2\waitone2.cmd +WorkingDir=baseservices\threading\mutex\misc\waitone2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToByte.cmd_2508] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToByte\IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgselfref.cmd_2509] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbgselfref\_il_dbgselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_exception_dbg.cmd_2510] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg\mul_exception_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex1a.cmd_2511] +RelativePath=baseservices\threading\waithandle\waitall\waitallex1a\waitallex1a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex1a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglivecall.cmd_2512] +RelativePath=JIT\Methodical\VT\identity\_il_dbglivecall\_il_dbglivecall.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_dbglivecall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAccessExceptionCtor1.cmd_2513] +RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1\MethodAccessExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated567.cmd_2514] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest567\Generated567\Generated567.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest567\Generated567 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfinally_tail.cmd_2515] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail\_il_relcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelenum_cs.cmd_2516] +RelativePath=JIT\Methodical\Boxing\misc\_orelenum_cs\_orelenum_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_orelenum_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2E_r.cmd_2517] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_r\hfa_sd2E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble.cmd_2518] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble\ConvertToDouble.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex9.cmd_2519] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex9\waitanyex9.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTicksPerDay.cmd_2520] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay\TimeSpanTicksPerDay.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlReturn.cmd_2521] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn\FlowControlReturn.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin5.cmd_2522] +RelativePath=CoreMangLib\cti\system\math\MathMin5\MathMin5.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldstatic_il_r.cmd_2523] +RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_r\ldfldstatic_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedHandle.cmd_2524] +RelativePath=GC\Features\Pinning\PinningOther\PinnedHandle\PinnedHandle.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedHandle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw144257.cmd_2525] +RelativePath=Loader\classloader\regressions\144257\vsw144257\vsw144257.cmd +WorkingDir=Loader\classloader\regressions\144257\vsw144257 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b24727.cmd_2526] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727\b24727.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToInt16.cmd_2527] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt16\CharIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_r8.cmd_2528] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r8\_il_relrefloc_r8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeMethodHanldeGetHashCode.cmd_2529] +RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode\RuntimeMethodHanldeGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldlen.cmd_2530] +RelativePath=JIT\IL_Conformance\Old\objectmodel\ldlen\ldlen.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_I.cmd_2531] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I\_il_relldobj_I.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Peer_1.cmd_2532] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1\Test_CSharp_Peer_1.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated833.cmd_2533] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest833\Generated833\Generated833.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest833\Generated833 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAccessExceptionCtor3.cmd_2534] +RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3\MethodAccessExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_r8.cmd_2535] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r8\sub_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartChar_1.cmd_2536] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_1\ThreadStartChar_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relselfref.cmd_2537] +RelativePath=JIT\Methodical\Arrays\misc\_speed_relselfref\_speed_relselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_relselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_c_switch.cmd_2538] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch\ldc_c_switch.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte8.cmd_2539] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte8\ConvertToSByte8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02051.cmd_2540] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051\b02051.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_r_loop.cmd_2541] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop\staticFieldExprUnchecked1_r_loop.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase1.cmd_2542] +RelativePath=Loader\classloader\InterfaceFolding\TestCase1\TestCase1.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_457559.cmd_2543] +RelativePath=JIT\Regression\Dev11\Dev11_457559\Dev11_457559\Dev11_457559.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_457559\Dev11_457559 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baseclass04.cmd_2544] +RelativePath=JIT\Generics\Instantiation\Classes\baseclass04\baseclass04.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\baseclass04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvalftn_t.cmd_2545] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn_t\_il_relvalftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1E_r.cmd_2546] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_r\hfa_sf1E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[OpCodesCall.cmd_2547] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall\OpCodesCall.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualResetEventCtor.cmd_2548] +RelativePath=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor\ManualResetEventCtor.cmd +WorkingDir=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct3_2.cmd_2549] +RelativePath=JIT\jit64\gc\misc\struct3_2\struct3_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct3_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread06.cmd_2550] +RelativePath=baseservices\threading\generics\WaitCallback\thread06\thread06.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread18.cmd_2551] +RelativePath=baseservices\threading\generics\WaitCallback\thread18\thread18.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated573.cmd_2552] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest573\Generated573\Generated573.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest573\Generated573 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_il_cs.cmd_2553] +RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_cs\_relsin_il_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated988.cmd_2554] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest988\Generated988\Generated988.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest988\Generated988 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31448.cmd_2555] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448\b31448.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated805.cmd_2556] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest805\Generated805\Generated805.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest805\Generated805 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_182.cmd_2557] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_182\GCSimulator_182.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToDecimal.cmd_2558] +RelativePath=CoreMangLib\cti\system\single\SingleToDecimal\SingleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stind_i2.cmd_2559] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i2\stind_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b73921.cmd_2560] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921\b73921.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_228.cmd_2561] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_228\GCSimulator_228.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_228 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated347.cmd_2562] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest347\Generated347\Generated347.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest347\Generated347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit4_do.cmd_2563] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do\tryCatchFinallyThrow_nonlocalexit4_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b393481.cmd_2564] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481\b393481.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2E_d.cmd_2565] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_d\hfa_nd2E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToBoolean.cmd_2566] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean\SByteIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox007.cmd_2567] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007\box-unbox007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated120.cmd_2568] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest120\Generated120\Generated120.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest120\Generated120 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopinfinally_d.cmd_2569] +RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_d\loopinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relselfref.cmd_2570] +RelativePath=JIT\Methodical\Arrays\misc\_il_relselfref\_il_relselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcref2.cmd_2571] +RelativePath=JIT\Directed\RVAInit\gcref2\gcref2.cmd +WorkingDir=JIT\Directed\RVAInit\gcref2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0G_d.cmd_2572] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_d\hfa_sd0G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PropertyAttributesNone.cmd_2573] +RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone\PropertyAttributesNone.cmd +WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated977.cmd_2574] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest977\Generated977\Generated977.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest977\Generated977 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesNop.cmd_2575] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop\OpCodesNop.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeepAlive.cmd_2576] +RelativePath=GC\API\GC\KeepAlive\KeepAlive.cmd +WorkingDir=GC\API\GC\KeepAlive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_r_loop_try.cmd_2577] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop_try\arrayexpr2_r_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorCurrent.cmd_2578] +RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31784.cmd_2579] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784\b31784.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bouncingball_cs_do.cmd_2580] +RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_do\bouncingball_cs_do.cmd +WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1342.cmd_2581] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1342\Generated1342\Generated1342.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1342\Generated1342 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_255263.cmd_2582] +RelativePath=JIT\Regression\JitBlue\DevDiv_255263\DevDiv_255263\DevDiv_255263.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_255263\DevDiv_255263 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12686 +HostStyle=0 + +[castclass-null013.cmd_2583] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013\castclass-null013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_i4_i2.cmd_2584] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2\ldc_conv_ovf_i4_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeTString.cmd_2585] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString\ExchangeTString.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringTrim4.cmd_2586] +RelativePath=CoreMangLib\cti\system\string\StringTrim4\StringTrim4.cmd +WorkingDir=CoreMangLib\cti\system\string\StringTrim4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarray2.cmd_2587] +RelativePath=JIT\Methodical\refany\_il_relarray2\_il_relarray2.cmd +WorkingDir=JIT\Methodical\refany\_il_relarray2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueNeInt1.cmd_2588] +RelativePath=JIT\CodeGenBringUpTests\JTrueNeInt1\JTrueNeInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueNeInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1029.cmd_2589] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1029\Generated1029\Generated1029.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1029\Generated1029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesDiv_Un.cmd_2590] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un\OpCodesDiv_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated84.cmd_2591] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest84\Generated84\Generated84.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest84\Generated84 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_75.cmd_2592] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_75\GCSimulator_75.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_75 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblDist.cmd_2593] +RelativePath=JIT\CodeGenBringUpTests\DblDist\DblDist.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblDist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddLong.cmd_2594] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong\InterlockedAddLong.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_104.cmd_2595] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_104\GCSimulator_104.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_104 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_opt.cmd_2596] +RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt\conv_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28522.cmd_2597] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522\b28522.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_nonf_il_r.cmd_2598] +RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_r\intrinsic_nonf_il_r.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesSequentialLayout.cmd_2599] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout\TypeAttributesSequentialLayout.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExceptionCtor1.cmd_2600] +RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor1\ExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctorchk.cmd_2601] +RelativePath=baseservices\threading\monitor\ctorchk\ctorchk\ctorchk.cmd +WorkingDir=baseservices\threading\monitor\ctorchk\ctorchk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayExc.cmd_2602] +RelativePath=JIT\CodeGenBringUpTests\ArrayExc\ArrayExc.cmd +WorkingDir=JIT\CodeGenBringUpTests\ArrayExc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumTest.cmd_2603] +RelativePath=Interop\PrimitiveMarshalling\EnumMarshalling\EnumTest\EnumTest.cmd +WorkingDir=Interop\PrimitiveMarshalling\EnumMarshalling\EnumTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress2_d.cmd_2604] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_d\CgStress2_d.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueEqDbl.cmd_2605] +RelativePath=JIT\CodeGenBringUpTests\JTrueEqDbl\JTrueEqDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueEqDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_40.cmd_2606] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_40\GCSimulator_40.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_40 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveGen.cmd_2607] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\RecursiveGen\RecursiveGen.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\RecursiveGen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtryfinallythrow_d.cmd_2608] +RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d\deadtryfinallythrow_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated330.cmd_2609] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest330\Generated330\Generated330.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest330\Generated330 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_array_nz.cmd_2610] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_array_nz\_il_reldeep_array_nz.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array_nz +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_r_loop.cmd_2611] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop\mixedexpr1_r_loop.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg_2.cmd_2612] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2\OpCodesLdarg_2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BenchE.cmd_2613] +RelativePath=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE\BenchE.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToInt32.cmd_2614] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32\Int64IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwoutside_do.cmd_2615] +RelativePath=JIT\Methodical\eh\basics\throwoutside_do\throwoutside_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwoutside_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6418.cmd_2616] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6418\ConvertToUInt6418.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6418 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfault_d.cmd_2617] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_d\badcodeafterfault_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyValuePairKey.cmd_2618] +RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey\KeyValuePairKey.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b34423.cmd_2619] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423\b34423.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_r8_i8.cmd_2620] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8\ldc_conv_ovf_r8_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc3_cs_d.cmd_2621] +RelativePath=JIT\Directed\localloc\localloc3_cs_d\localloc3_cs_d.cmd +WorkingDir=JIT\Directed\localloc\localloc3_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbggcreport.cmd_2622] +RelativePath=JIT\Methodical\refany\_dbggcreport\_dbggcreport.cmd +WorkingDir=JIT\Methodical\refany\_dbggcreport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_double_1_d.cmd_2623] +RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_d\expl_double_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_199169.cmd_2624] +RelativePath=JIT\Regression\JitBlue\DevDiv_199169\DevDiv_199169\DevDiv_199169.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_199169\DevDiv_199169 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12686 +HostStyle=0 + +[CS_ARENullRefEx.cmd_2625] +RelativePath=baseservices\threading\coverage\Nullref\CS_ARENullRefEx\CS_ARENullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_ARENullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_DelegateStruct.cmd_2626] +RelativePath=JIT\opt\Inline\tests\Inline_DelegateStruct\Inline_DelegateStruct.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_DelegateStruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalEquals3.cmd_2627] +RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals3\DecimalEquals3.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2-xassem.cmd_2628] +RelativePath=JIT\Methodical\stringintern\test2-xassem\test2-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\test2-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass05.cmd_2629] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass05\NestedBaseClass05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1431.cmd_2630] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1431\Generated1431\Generated1431.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1431\Generated1431 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_r.cmd_2631] +RelativePath=JIT\Methodical\NaN\arithm32_r\arithm32_r.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-40a-two.cmd_2632] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-40a-two\RMV-2-13-40a-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-40a-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[self_override2.cmd_2633] +RelativePath=Loader\classloader\MethodImpl\self_override2\self_override2.cmd +WorkingDir=Loader\classloader\MethodImpl\self_override2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b323557-ret.cmd_2634] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret\b323557-ret.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMax_ro.cmd_2635] +RelativePath=JIT\SIMD\VectorMax_ro\VectorMax_ro.cmd +WorkingDir=JIT\SIMD\VectorMax_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48554b.cmd_2636] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b\b48554b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventHandlerEndInvoke.cmd_2637] +RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke\EventHandlerEndInvoke.cmd +WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallythrow_nonlocalexit_r.cmd_2638] +RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r\tryfinallythrow_nonlocalexit_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated420.cmd_2639] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest420\Generated420\Generated420.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest420\Generated420 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated672.cmd_2640] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest672\Generated672\Generated672.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest672\Generated672 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FastTailCallStackFixup.cmd_2641] +RelativePath=JIT\opt\Tailcall\FastTailCallStackFixup\FastTailCallStackFixup.cmd +WorkingDir=JIT\opt\Tailcall\FastTailCallStackFixup +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1E_d.cmd_2642] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_d\hfa_sd1E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[addref.cmd_2643] +RelativePath=JIT\CodeGenBringUpTests\addref\addref.cmd +WorkingDir=JIT\CodeGenBringUpTests\addref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[funcptrtest.cmd_2644] +RelativePath=JIT\Directed\Misc\function_pointer\funcptrtest\funcptrtest.cmd +WorkingDir=JIT\Directed\Misc\function_pointer\funcptrtest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed2_cs_r.cmd_2645] +RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_r\mixed2_cs_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsPunctuation2.cmd_2646] +RelativePath=CoreMangLib\cti\system\char\CharIsPunctuation2\CharIsPunctuation2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsPunctuation2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_R_Un.cmd_2647] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un\OpCodesConv_R_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1016.cmd_2648] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1016\Generated1016\Generated1016.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1016\Generated1016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgjumps.cmd_2649] +RelativePath=JIT\Methodical\VT\callconv\_dbgjumps\_dbgjumps.cmd +WorkingDir=JIT\Methodical\VT\callconv\_dbgjumps +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics009.cmd_2650] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009\box-unbox-generics009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc_S.cmd_2651] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S\OpCodesStloc_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch1.cmd_2652] +RelativePath=JIT\Methodical\switch\switch1\switch1.cmd +WorkingDir=JIT\Methodical\switch\switch1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_i4.cmd_2653] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4\ldc_add_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueEqInt1.cmd_2654] +RelativePath=JIT\CodeGenBringUpTests\JTrueEqInt1\JTrueEqInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueEqInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41470.cmd_2655] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470\b41470.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated966.cmd_2656] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest966\Generated966\Generated966.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest966\Generated966 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchsimpletype_ro.cmd_2657] +RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_ro\trycatchsimpletype_ro.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions07.cmd_2658] +RelativePath=baseservices\exceptions\generics\GenericExceptions07\GenericExceptions07.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListget_item.cmd_2659] +RelativePath=CoreMangLib\cti\system\array\ArrayIListget_item\ArrayIListget_item.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListget_item +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf3b.cmd_2660] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3b\ArrayLastIndexOf3b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sizeof.cmd_2661] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sizeof\sizeof.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_r.cmd_2662] +RelativePath=JIT\Methodical\cctor\misc\throw_cs_r\throw_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\throw_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated994.cmd_2663] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest994\Generated994\Generated994.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest994\Generated994 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomNext2.cmd_2664] +RelativePath=CoreMangLib\cti\system\random\RandomNext2\RandomNext2.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomNext2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_374539.cmd_2665] +RelativePath=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539\DevDiv_374539.cmd +WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82249.cmd_2666] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249\b82249.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallingConventionsHasThis.cmd_2667] +RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis\CallingConventionsHasThis.cmd +WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind01_small.cmd_2668] +RelativePath=JIT\jit64\localloc\unwind\unwind01_small\unwind01_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1308.cmd_2669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1308\Generated1308\Generated1308.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1308\Generated1308 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrotarg_double.cmd_2670] +RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_double\_dbgrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated394.cmd_2671] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest394\Generated394\Generated394.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest394\Generated394 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsClass.cmd_2672] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass\AttributeTargetsClass.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSize2.cmd_2673] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2\PackingSize2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1100.cmd_2674] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1100\Generated1100\Generated1100.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1100\Generated1100 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_struct01.cmd_2675] +RelativePath=JIT\Generics\Parameters\instance_assignment_struct01\instance_assignment_struct01.cmd +WorkingDir=JIT\Generics\Parameters\instance_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase0_Nested_J.cmd_2676] +RelativePath=Loader\classloader\InterfaceFolding\TestCase0_Nested_J\TestCase0_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase0_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedexcept_d.cmd_2677] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d\throwincascadedexcept_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46170.cmd_2678] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170\b46170.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reliu2.cmd_2679] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu2\_il_reliu2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated779.cmd_2680] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest779\Generated779\Generated779.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest779\Generated779 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated493.cmd_2681] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest493\Generated493\Generated493.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest493\Generated493 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1122.cmd_2682] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1122\Generated1122\Generated1122.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1122\Generated1122 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh04_small.cmd_2683] +RelativePath=JIT\jit64\localloc\eh\eh04_small\eh04_small.cmd +WorkingDir=JIT\jit64\localloc\eh\eh04_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated854.cmd_2684] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest854\Generated854\Generated854.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest854\Generated854 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadnonlocalexit_r.cmd_2685] +RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_r\deadnonlocalexit_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_ro.cmd_2686] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro\throwinfinallynestedintry_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCompareTo2.cmd_2687] +RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo2\GuidCompareTo2.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16570.cmd_2688] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570\b16570.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit10.cmd_2689] +RelativePath=baseservices\threading\generics\Monitor\EnterExit10\EnterExit10.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brtrue.cmd_2690] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brtrue\brtrue.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brtrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass007.cmd_2691] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007\castclass007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DebuggingModesDisableOptimizations.cmd_2692] +RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations\DebuggingModesDisableOptimizations.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgnested.cmd_2693] +RelativePath=JIT\Methodical\VT\etc\_speed_dbgnested\_speed_dbgnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbgnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1088.cmd_2694] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1088\Generated1088\Generated1088.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1088\Generated1088 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesAdd_Ovf_Un.cmd_2695] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un\OpCodesAdd_Ovf_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddLong_2.cmd_2696] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_2\InterlockedAddLong_2.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_45.cmd_2697] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_45\GCSimulator_45.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_45 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vbil.cmd_2698] +RelativePath=JIT\jit64\gc\misc\vbil\vbil.cmd +WorkingDir=JIT\jit64\gc\misc\vbil +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FiboRec.cmd_2699] +RelativePath=JIT\CodeGenBringUpTests\FiboRec\FiboRec.cmd +WorkingDir=JIT\CodeGenBringUpTests\FiboRec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated340.cmd_2700] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest340\Generated340\Generated340.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest340\Generated340 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_u8.cmd_2701] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u8\bne_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeCompatAttrCtor.cmd_2702] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor\RuntimeCompatAttrCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jmp.cmd_2703] +RelativePath=JIT\IL_Conformance\Old\Base\jmp\jmp.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91359.cmd_2704] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359\b91359.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathRound2.cmd_2705] +RelativePath=CoreMangLib\cti\system\math\MathRound2\MathRound2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathRound2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated362.cmd_2706] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest362\Generated362\Generated362.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest362\Generated362 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryValue2.cmd_2707] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2\DictionaryIDictionaryValue2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sbyte_cs_ro.cmd_2708] +RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro\sbyte_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class04.cmd_2709] +RelativePath=JIT\Generics\Instantiation\Interfaces\class04\class04.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\class04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33362.cmd_2710] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362\b33362.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalnstruct.cmd_2711] +RelativePath=GC\Scenarios\FinalNStruct\finalnstruct\finalnstruct.cmd +WorkingDir=GC\Scenarios\FinalNStruct\finalnstruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgpointer_i.cmd_2712] +RelativePath=JIT\Methodical\tailcall\_il_dbgpointer_i\_il_dbgpointer_i.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Generated376.cmd_2713] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest376\Generated376\Generated376.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest376\Generated376 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryexcept_r.cmd_2714] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r\throwinnestedtryexcept_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1059.cmd_2715] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1059\Generated1059\Generated1059.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1059\Generated1059 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgqperm.cmd_2716] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm\_il_dbgqperm.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-3.cmd_2717] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-3\_speed_relunsafe-3.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HardwareEh.cmd_2718] +RelativePath=baseservices\exceptions\simple\HardwareEh\HardwareEh.cmd +WorkingDir=baseservices\exceptions\simple\HardwareEh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reversedtryblock_d.cmd_2719] +RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_d\reversedtryblock_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WaitHandleDispose3.cmd_2720] +RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3\WaitHandleDispose3.cmd +WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_378.cmd_2721] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_378\GCSimulator_378.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_234.cmd_2722] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_234\GCSimulator_234.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_234 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_84.cmd_2723] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_84\GCSimulator_84.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_84 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-7-two.cmd_2724] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-7-two\RMV-2-13-7-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-7-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeoutExceptionCtor3.cmd_2725] +RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3\TimeoutExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NormalException.cmd_2726] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\NormalException\NormalException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\NormalException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToDateTime.cmd_2727] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime\IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b111130.cmd_2728] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130\b111130.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xor_u4.cmd_2729] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u4\xor_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMin_r.cmd_2730] +RelativePath=JIT\SIMD\VectorMin_r\VectorMin_r.cmd +WorkingDir=JIT\SIMD\VectorMin_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2C_d.cmd_2731] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_d\hfa_nd2C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64MinValue.cmd_2732] +RelativePath=CoreMangLib\cti\system\int64\Int64MinValue\Int64MinValue.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64MinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31780.cmd_2733] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780\b31780.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfinally.cmd_2734] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally\_il_dbgfinally.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsNumber1.cmd_2735] +RelativePath=CoreMangLib\cti\system\char\CharIsNumber1\CharIsNumber1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsNumber1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToChar.cmd_2736] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToChar\CharIConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyintrycatchwithleaveintotry_r.cmd_2737] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r\tryfinallyintrycatchwithleaveintotry_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated418.cmd_2738] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest418\Generated418\Generated418.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest418\Generated418 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gettotalmemory.cmd_2739] +RelativePath=GC\LargeMemory\API\gc\gettotalmemory\gettotalmemory.cmd +WorkingDir=GC\LargeMemory\API\gc\gettotalmemory +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated19.cmd_2740] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest19\Generated19\Generated19.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest19\Generated19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1b_cs_ro.cmd_2741] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro\xprecise1b_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorConvert_r.cmd_2742] +RelativePath=JIT\SIMD\VectorConvert_r\VectorConvert_r.cmd +WorkingDir=JIT\SIMD\VectorConvert_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13466.cmd_2743] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466\b13466.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandleinvalid6.cmd_2744] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandleinvalid6\bindhandleinvalid6.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandleinvalid6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42918.cmd_2745] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918\b42918.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCompare1.cmd_2746] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompare1\TimeSpanCompare1.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompare1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relvtret.cmd_2747] +RelativePath=JIT\Methodical\VT\callconv\_relvtret\_relvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_relvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IndexOutOfRangeExceptionctor3.cmd_2748] +RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3\IndexOutOfRangeExceptionctor3.cmd +WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try3_r.cmd_2749] +RelativePath=JIT\Directed\leave\try3_r\try3_r.cmd +WorkingDir=JIT\Directed\leave\try3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NoThrowInline.cmd_2750] +RelativePath=JIT\Performance\CodeQuality\Inlining\NoThrowInline\NoThrowInline.cmd +WorkingDir=JIT\Performance\CodeQuality\Inlining\NoThrowInline +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackEnumeratorCurrent.cmd_2751] +RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent\StackEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_switch.cmd_2752] +RelativePath=JIT\Methodical\tailcall\_il_reltest_switch\_il_reltest_switch.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_145.cmd_2753] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_145\GCSimulator_145.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_145 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1134.cmd_2754] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1134\Generated1134\Generated1134.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1134\Generated1134 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null029.cmd_2755] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029\castclass-null029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1303.cmd_2756] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1303\Generated1303\Generated1303.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1303\Generated1303 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OverflowExceptionCtor3.cmd_2757] +RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3\OverflowExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh1.cmd_2758] +RelativePath=JIT\jit64\gc\misc\eh1\eh1.cmd +WorkingDir=JIT\jit64\gc\misc\eh1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StoreElement_r.cmd_2759] +RelativePath=JIT\SIMD\StoreElement_r\StoreElement_r.cmd +WorkingDir=JIT\SIMD\StoreElement_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_cs_il.cmd_2760] +RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_il\_relsin_cs_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-06_cs_r.cmd_2761] +RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_r\5w1d-06_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_d_loop_try.cmd_2762] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_d_loop_try\simpleexpr4_d_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_d_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2.cmd_2763] +RelativePath=JIT\jit64\regress\vsw\575343\test2\test2.cmd +WorkingDir=JIT\jit64\regress\vsw\575343\test2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b74182.cmd_2764] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182\b74182.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_nonf_il_d.cmd_2765] +RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_d\intrinsic_nonf_il_d.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am08mixedarray.cmd_2766] +RelativePath=baseservices\threading\mutex\abandonedmutex\am08mixedarray\am08mixedarray.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am08mixedarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBrfalse_S.cmd_2767] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S\OpCodesBrfalse_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceIsAlive_PSC.cmd_2768] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC\WeakReferenceIsAlive_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59948.cmd_2769] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948\b59948.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8div_cs_do.cmd_2770] +RelativePath=JIT\Methodical\divrem\div\u8div_cs_do\u8div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\u8div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b03689.cmd_2771] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689\b03689.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2441;EXCLUDED;TLS +HostStyle=0 + +[Ctors_ro.cmd_2772] +RelativePath=JIT\SIMD\Ctors_ro\Ctors_ro.cmd +WorkingDir=JIT\SIMD\Ctors_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionRevision.cmd_2773] +RelativePath=CoreMangLib\cti\system\version\VersionRevision\VersionRevision.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionRevision +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6417.cmd_2774] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6417\ConvertToUInt6417.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6417 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchtrycatch_r.cmd_2775] +RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_r\trycatchtrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublinknoleak2.cmd_2776] +RelativePath=GC\Scenarios\DoublinkList\doublinknoleak2\doublinknoleak2.cmd +WorkingDir=GC\Scenarios\DoublinkList\doublinknoleak2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[MathFSqrt.cmd_2777] +RelativePath=CoreMangLib\cti\system\mathf\MathFSqrt\MathFSqrt.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFSqrt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_315.cmd_2778] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_315\GCSimulator_315.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_315 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_double_1_r.cmd_2779] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_r\seq_gc_double_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I4_Un.cmd_2780] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un\OpCodesConv_Ovf_I4_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyValuePairValue.cmd_2781] +RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue\KeyValuePairValue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw2dimarray_d.cmd_2782] +RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_d\throw2dimarray_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNadd_cs_r.cmd_2783] +RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_r\r8NaNadd_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrotarg_valref.cmd_2784] +RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_valref\_relrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8rem_cs_r.cmd_2785] +RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_r\r8rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeUInt64.cmd_2786] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt64\TypeCodeUInt64.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg8.cmd_2787] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg8\openmutexneg8.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated529.cmd_2788] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest529\Generated529\Generated529.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest529\Generated529 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_271.cmd_2789] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_271\GCSimulator_271.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_271 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value007.cmd_2790] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007\box-unbox-value007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[calli2.cmd_2791] +RelativePath=JIT\Directed\coverage\importer\calli2\calli2.cmd +WorkingDir=JIT\Directed\coverage\importer\calli2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UseTrashedVfp1.cmd_2792] +RelativePath=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1\UseTrashedVfp1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedClass03.cmd_2793] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedClass03\NestedClass03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedClass03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1236.cmd_2794] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1236\Generated1236\Generated1236.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1236\Generated1236 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated208.cmd_2795] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest208\Generated208\Generated208.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest208\Generated208 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fielda_tests.cmd_2796] +RelativePath=JIT\Directed\PREFIX\unaligned\1\fielda_tests\fielda_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\fielda_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_i4_i1.cmd_2797] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1\_il_dbgcompat_i4_i1.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated63.cmd_2798] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest63\Generated63\Generated63.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest63\Generated63 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[field_tests.cmd_2799] +RelativePath=JIT\Directed\PREFIX\unaligned\2\field_tests\field_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\field_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66425.cmd_2800] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425\b66425.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_i2.cmd_2801] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2\ldind_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_auto.cmd_2802] +RelativePath=Loader\classloader\generics\Layout\General\class01_auto\class01_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class01_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_u8.cmd_2803] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8\bgt_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case8.cmd_2804] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8\case8.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated83.cmd_2805] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest83\Generated83\Generated83.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest83\Generated83 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_d.cmd_2806] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_d\throwinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringInsert.cmd_2807] +RelativePath=CoreMangLib\cti\system\string\StringInsert\StringInsert.cmd +WorkingDir=CoreMangLib\cti\system\string\StringInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jmp_opt.cmd_2808] +RelativePath=JIT\jit64\opt\cg\il\jmp_opt\jmp_opt.cmd +WorkingDir=JIT\jit64\opt\cg\il\jmp_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListCapacity.cmd_2809] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCapacity\ListCapacity.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCapacity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71179.cmd_2810] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179\b71179.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceTrackResurrection_cti_PSC.cmd_2811] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC\WeakReferenceTrackResurrection_cti_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsmax.cmd_2812] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmax\_rellcsmax.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmax +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst002.cmd_2813] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst002\IsInst002.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Interfaces002.cmd_2814] +RelativePath=Loader\classloader\generics\Variance\Interfaces\Interfaces002\Interfaces002.cmd +WorkingDir=Loader\classloader\generics\Variance\Interfaces\Interfaces002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread13.cmd_2815] +RelativePath=baseservices\threading\generics\threadstart\GThread13\GThread13.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtryfinallythrow_r.cmd_2816] +RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r\deadtryfinallythrow_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileStreamDispose_PSC.cmd_2817] +RelativePath=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC\FileStreamDispose_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Or_Op_cs_d.cmd_2818] +RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_d\Bool_Or_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated823.cmd_2819] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest823\Generated823\Generated823.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest823\Generated823 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value040.cmd_2820] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040\box-unbox-value040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_do.cmd_2821] +RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_do\throw_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfinally_jmpind.cmd_2822] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind\_il_relcatchfinally_jmpind.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldfld_mul.cmd_2823] +RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mul\_relldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret6_1.cmd_2824] +RelativePath=JIT\jit64\gc\misc\structret6_1\structret6_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret6_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cprop001_r.cmd_2825] +RelativePath=JIT\jit64\opt\cprop\cprop001_r\cprop001_r.cmd +WorkingDir=JIT\jit64\opt\cprop\cprop001_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringSubString1.cmd_2826] +RelativePath=CoreMangLib\cti\system\string\StringSubString1\StringSubString1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringSubString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_f4.cmd_2827] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f4\_opt_relrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102879.cmd_2828] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879\b102879.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalStructAsLayoutExp.cmd_2829] +RelativePath=Interop\StructMarshalling\PInvoke\MarshalStructAsLayoutExp\MarshalStructAsLayoutExp.cmd +WorkingDir=Interop\StructMarshalling\PInvoke\MarshalStructAsLayoutExp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[main.cmd_2830] +RelativePath=Loader\classloader\regressions\vsw111021\main\main.cmd +WorkingDir=Loader\classloader\regressions\vsw111021\main +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jump.cmd_2831] +RelativePath=JIT\Directed\pinvoke\jump\jump.cmd +WorkingDir=JIT\Directed\pinvoke\jump +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89506.cmd_2832] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506\b89506.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[char_cs_r.cmd_2833] +RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_r\char_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b74976.cmd_2834] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976\b74976.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82048.cmd_2835] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048\b82048.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3GetHash_r.cmd_2836] +RelativePath=JIT\SIMD\Vector3GetHash_r\Vector3GetHash_r.cmd +WorkingDir=JIT\SIMD\Vector3GetHash_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_box.cmd_2837] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box\_il_reli_box.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNrem_cs_r.cmd_2838] +RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_r\r4NaNrem_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AVException01.cmd_2839] +RelativePath=baseservices\exceptions\AccessViolationException\AVException01\AVException01.cmd +WorkingDir=baseservices\exceptions\AccessViolationException\AVException01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[handleMath.cmd_2840] +RelativePath=JIT\Regression\JitBlue\DevDiv_206786\handleMath\handleMath.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_206786\handleMath +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizertest.cmd_2841] +RelativePath=GC\LargeMemory\Allocation\finalizertest\finalizertest.cmd +WorkingDir=GC\LargeMemory\Allocation\finalizertest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest1.cmd_2842] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest1\_il_reltest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow03_div.cmd_2843] +RelativePath=JIT\jit64\rtchecks\overflow\overflow03_div\overflow03_div.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PathTooLongExceptionctor2.cmd_2844] +RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2\PathTooLongExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_No_Op_cs_d.cmd_2845] +RelativePath=JIT\Directed\cmov\Double_No_Op_cs_d\Double_No_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overldrem_cs_d.cmd_2846] +RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_d\overldrem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread27.cmd_2847] +RelativePath=baseservices\threading\generics\threadstart\GThread27\GThread27.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit3_r.cmd_2848] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r\tryCatchFinallyThrow_nonlocalexit3_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05214.cmd_2849] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214\b05214.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1176.cmd_2850] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1176\Generated1176\Generated1176.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1176\Generated1176 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_No_Op_cs_do.cmd_2851] +RelativePath=JIT\Directed\cmov\Float_No_Op_cs_do\Float_No_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort3b.cmd_2852] +RelativePath=CoreMangLib\cti\system\array\ArraySort3b\ArraySort3b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryfault_r.cmd_2853] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r\throwinnestedtryfault_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_ro.cmd_2854] +RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_ro\doublearr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlBranch.cmd_2855] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch\FlowControlBranch.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltypedref.cmd_2856] +RelativePath=JIT\Methodical\Boxing\misc\_reltypedref\_reltypedref.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_reltypedref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated665.cmd_2857] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest665\Generated665\Generated665.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest665\Generated665 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43694.cmd_2858] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694\b43694.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_c.cmd_2859] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_c\_il_relrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0B_r.cmd_2860] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_r\hfa_sf0B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_403.cmd_2861] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_403\GCSimulator_403.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesJmp.cmd_2862] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp\OpCodesJmp.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1168.cmd_2863] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1168\Generated1168\Generated1168.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1168\Generated1168 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesSystem.cmd_2864] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem\FileAttributesSystem.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[1000w1d_cs_r.cmd_2865] +RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_r\1000w1d_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort3.cmd_2866] +RelativePath=CoreMangLib\cti\system\array\ArraySort3\ArraySort3.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblkInt32.cmd_2867] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32\cpblkInt32.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_add.cmd_2868] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_add\VolatileTest_op_add.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop4_cs_do.cmd_2869] +RelativePath=JIT\Directed\UnrollLoop\loop4_cs_do\loop4_cs_do.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1174.cmd_2870] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1174\Generated1174\Generated1174.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1174\Generated1174 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsLetter2.cmd_2871] +RelativePath=CoreMangLib\cti\system\char\CharIsLetter2\CharIsLetter2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLetter2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1210.cmd_2872] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1210\Generated1210\Generated1210.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1210\Generated1210 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics011.cmd_2873] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011\box-unbox-generics011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharGetHashCode.cmd_2874] +RelativePath=CoreMangLib\cti\system\char\CharGetHashCode\CharGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\char\CharGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase03.cmd_2875] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase03\AbstractBase03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_294.cmd_2876] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_294\GCSimulator_294.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3_cs_ro.cmd_2877] +RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_ro\pow3_cs_ro.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1336.cmd_2878] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1336\Generated1336\Generated1336.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1336\Generated1336 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28776.cmd_2879] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776\b28776.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localgotoinahandler_r.cmd_2880] +RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_r\localgotoinahandler_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HugeField2.cmd_2881] +RelativePath=JIT\jit64\opt\cse\HugeField2\HugeField2.cmd +WorkingDir=JIT\jit64\opt\cse\HugeField2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexitnestedintrycatch_r.cmd_2882] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r\simplenonlocalexitnestedintrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_816617_r.cmd_2883] +RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r\DevDiv_816617_r.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesAssembly.cmd_2884] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly\FieldAttributesAssembly.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49101.cmd_2885] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101\b49101.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated69.cmd_2886] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest69\Generated69\Generated69.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest69\Generated69 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06812.cmd_2887] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812\b06812.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b473131_byte.cmd_2888] +RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_byte\b473131_byte.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_byte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26888.cmd_2889] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888\b26888.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteMaxValue.cmd_2890] +RelativePath=CoreMangLib\cti\system\byte\ByteMaxValue\ByteMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryIsFixedSize.cmd_2891] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize\IDictionaryIsFixedSize.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31493.cmd_2892] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493\b31493.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_shr.cmd_2893] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_shr\VolatileTest_op_shr.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_shr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated203.cmd_2894] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest203\Generated203\Generated203.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest203\Generated203 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39381.cmd_2895] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381\b39381.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble11.cmd_2896] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble11\ConvertToDouble11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1139.cmd_2897] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1139\Generated1139\Generated1139.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1139\Generated1139 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToInt32.cmd_2898] +RelativePath=CoreMangLib\cti\system\single\SingleToInt32\SingleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b604247.cmd_2899] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247\b604247.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_box_val.cmd_2900] +RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_val\_il_relrefarg_box_val.cmd +WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_val +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[collect.cmd_2901] +RelativePath=GC\LargeMemory\API\gc\collect\collect.cmd +WorkingDir=GC\LargeMemory\API\gc\collect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[GCSimulator_272.cmd_2902] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_272\GCSimulator_272.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_272 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_do.cmd_2903] +RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_do\cascadedcatch_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilestaticfield.cmd_2904] +RelativePath=JIT\jit64\opt\cse\volatilestaticfield\volatilestaticfield.cmd +WorkingDir=JIT\jit64\opt\cse\volatilestaticfield +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated604.cmd_2905] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest604\Generated604\Generated604.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest604\Generated604 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh01_large.cmd_2906] +RelativePath=JIT\jit64\localloc\eh\eh01_large\eh01_large.cmd +WorkingDir=JIT\jit64\localloc\eh\eh01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetByteCount2.cmd_2907] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2\UTF8EncodingGetByteCount2.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_f4.cmd_2908] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f4\_dbgrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_R4.cmd_2909] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4\OpCodesLdind_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b57952.cmd_2910] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952\b57952.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_native.cmd_2911] +RelativePath=JIT\Methodical\refany\_il_dbgu_native\_il_dbgu_native.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgu_native +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1026.cmd_2912] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1026\Generated1026\Generated1026.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1026\Generated1026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1214.cmd_2913] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1214\Generated1214\Generated1214.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1214\Generated1214 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10789.cmd_2914] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789\b10789.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionCopyTo.cmd_2915] +RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo\ICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor1.cmd_2916] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1\DictionaryCtor1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface04.cmd_2917] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface04\NestedInterface04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_u8.cmd_2918] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u8\clt_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq.cmd_2919] +RelativePath=JIT\IL_Conformance\Old\Base\ceq\ceq.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ceq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1475.cmd_2920] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1475\Generated1475\Generated1475.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1475\Generated1475 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated541.cmd_2921] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest541\Generated541\Generated541.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest541\Generated541 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldc_mul.cmd_2922] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mul\_dbgs_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldobj.cmd_2923] +RelativePath=JIT\IL_Conformance\Old\objectmodel\ldobj\ldobj.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrgetlen_il_d.cmd_2924] +RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_d\arrgetlen_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBeq_S.cmd_2925] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S\OpCodesBeq_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unaligned.cmd_2926] +RelativePath=JIT\IL_Conformance\Old\Base\unaligned\unaligned.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\unaligned +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst2_do.cmd_2927] +RelativePath=JIT\Directed\nullabletypes\isinst2_do\isinst2_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst2_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[indexer.cmd_2928] +RelativePath=JIT\opt\Inline\tests\indexer\indexer.cmd +WorkingDir=JIT\opt\Inline\tests\indexer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated329.cmd_2929] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest329\Generated329\Generated329.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest329\Generated329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCgt_Un.cmd_2930] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un\OpCodesCgt_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4div_cs_d.cmd_2931] +RelativePath=JIT\Methodical\divrem\div\u4div_cs_d\u4div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\u4div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeLong.cmd_2932] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeLong\ExchangeLong.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeLong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumper3.cmd_2933] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumper3\_il_reljumper3.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionctor1.cmd_2934] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1\FileNotFoundExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated725.cmd_2935] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest725\Generated725\Generated725.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest725\Generated725 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit2.cmd_2936] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit2\_dbgexplicit2.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBase64CharArray.cmd_2937] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64CharArray\ConvertToBase64CharArray.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64CharArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40269.cmd_2938] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269\b40269.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToInt64.cmd_2939] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64\UInt64IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70967.cmd_2940] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967\b70967.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91230.cmd_2941] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230\b91230.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated562.cmd_2942] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest562\Generated562\Generated562.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest562\Generated562 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31150.cmd_2943] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150\b31150.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Xor_Op_cs_d.cmd_2944] +RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_d\Bool_Xor_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc3_cs_r.cmd_2945] +RelativePath=JIT\Directed\localloc\localloc3_cs_r\localloc3_cs_r.cmd +WorkingDir=JIT\Directed\localloc\localloc3_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11949.cmd_2946] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949\b11949.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1057.cmd_2947] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1057\Generated1057\Generated1057.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1057\Generated1057 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeinsidefinally_d.cmd_2948] +RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d\badcodeinsidefinally_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgmdarray.cmd_2949] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbgmdarray\_il_dbgmdarray.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgmdarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10828.cmd_2950] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828\b10828.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCompareTo2.cmd_2951] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2\TimeSpanCompareTo2.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated306.cmd_2952] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest306\Generated306\Generated306.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest306\Generated306 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructLayoutAttributePack.cmd_2953] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack\StructLayoutAttributePack.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null044.cmd_2954] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044\castclass-null044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericICollectionIsReadOnly.cmd_2955] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly\GenericICollectionIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox042.cmd_2956] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042\box-unbox042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics039.cmd_2957] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039\box-unbox-generics039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh06_dynamic.cmd_2958] +RelativePath=JIT\jit64\localloc\ehverify\eh06_dynamic\eh06_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh06_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_r4.cmd_2959] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r4\div_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_cs_r.cmd_2960] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r\catchrettoinnertry_cs_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated191.cmd_2961] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest191\Generated191\Generated191.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest191\Generated191 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldadd_cs_r.cmd_2962] +RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_r\lclfldadd_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectEquals1.cmd_2963] +RelativePath=CoreMangLib\cti\system\object\ObjectEquals1\ObjectEquals1.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method014.cmd_2964] +RelativePath=Loader\classloader\generics\GenericMethods\method014\method014.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetMaxByteCount.cmd_2965] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount\UTF8EncodingGetMaxByteCount.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamNull_PSC.cmd_2966] +RelativePath=CoreMangLib\cti\system\io\stream\StreamNull_PSC\StreamNull_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stream\StreamNull_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated406.cmd_2967] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest406\Generated406\Generated406.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest406\Generated406 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated551.cmd_2968] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest551\Generated551\Generated551.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest551\Generated551 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToDateTime.cmd_2969] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime\UInt64IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1a2.cmd_2970] +RelativePath=JIT\Directed\StructPromote\SP1a2\SP1a2.cmd +WorkingDir=JIT\Directed\StructPromote\SP1a2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1343.cmd_2971] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1343\Generated1343\Generated1343.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1343\Generated1343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1279.cmd_2972] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1279\Generated1279\Generated1279.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1279\Generated1279 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics020.cmd_2973] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020\castclass-generics020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit4.cmd_2974] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit4\_opt_dbgexplicit4.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgee.cmd_2975] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgee\_il_dbgee.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgee +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated730.cmd_2976] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest730\Generated730\Generated730.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest730\Generated730 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_jmp.cmd_2977] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp\_il_relrecurse_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListRemoveAt.cmd_2978] +RelativePath=CoreMangLib\cti\system\array\ArrayIListRemoveAt\ArrayIListRemoveAt.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemoveAt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_i.cmd_2979] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i\ret_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14264.cmd_2980] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264\b14264.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated740.cmd_2981] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest740\Generated740\Generated740.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest740\Generated740 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess1_cs_do.cmd_2982] +RelativePath=JIT\Directed\StrAccess\straccess1_cs_do\straccess1_cs_do.cmd +WorkingDir=JIT\Directed\StrAccess\straccess1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray2_cs_d.cmd_2983] +RelativePath=JIT\Methodical\doublearray\dblarray2_cs_d\dblarray2_cs_d.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_void.cmd_2984] +RelativePath=JIT\Methodical\tailcall\_il_reltest_void\_il_reltest_void.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_void +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend18.cmd_2985] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18\StringBuilderAppend18.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt161.cmd_2986] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt161\ConvertToUInt161.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt161 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1494.cmd_2987] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1494\Generated1494\Generated1494.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1494\Generated1494 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeMakeByRefType.cmd_2988] +RelativePath=CoreMangLib\cti\system\type\TypeMakeByRefType\TypeMakeByRefType.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeMakeByRefType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1027.cmd_2989] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1027\Generated1027\Generated1027.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1027\Generated1027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1135.cmd_2990] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1135\Generated1135\Generated1135.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1135\Generated1135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineSig.cmd_2991] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig\OperandTypeInlineSig.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress2_do.cmd_2992] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_do\CgStress2_do.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated953.cmd_2993] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest953\Generated953\Generated953.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest953\Generated953 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLeDbl.cmd_2994] +RelativePath=JIT\CodeGenBringUpTests\JTrueLeDbl\JTrueLeDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLeDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohcompactapi2.cmd_2995] +RelativePath=GC\Features\LOHCompaction\lohcompactapi2\lohcompactapi2.cmd +WorkingDir=GC\Features\LOHCompaction\lohcompactapi2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox028.cmd_2996] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028\box-unbox028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19101.cmd_2997] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101\b19101.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryKeys3.cmd_2998] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3\DictionaryIDictionaryKeys3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26324a.cmd_2999] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a\b26324a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[OperandTypeInlineI8.cmd_3000] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8\OperandTypeInlineI8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated563.cmd_3001] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest563\Generated563\Generated563.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest563\Generated563 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-12-3.cmd_3002] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-12-3\L-1-12-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-12-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated516.cmd_3003] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest516\Generated516\Generated516.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest516\Generated516 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null027.cmd_3004] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027\box-unbox-null027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1108.cmd_3005] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1108\Generated1108\Generated1108.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1108\Generated1108 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated627.cmd_3006] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest627\Generated627\Generated627.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest627\Generated627 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex1a.cmd_3007] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex1a\waitanyex1a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex1a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ushort_cs_ro.cmd_3008] +RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro\ushort_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bestfit-finalize.cmd_3009] +RelativePath=GC\Features\HeapExpansion\bestfit-finalize\bestfit-finalize.cmd +WorkingDir=GC\Features\HeapExpansion\bestfit-finalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated821.cmd_3010] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest821\Generated821\Generated821.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest821\Generated821 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt321.cmd_3011] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt321\ConvertToUInt321.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-1.cmd_3012] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-1\_dbgunsafe-1.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvtret2.cmd_3013] +RelativePath=JIT\Methodical\VT\callconv\_il_relvtret2\_il_relvtret2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeTClass.cmd_3014] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass\CompareExchangeTClass.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[TimeSpanFromTicks.cmd_3015] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanFromTicks\TimeSpanFromTicks.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanFromTicks +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null024.cmd_3016] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024\box-unbox-null024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbggcarr.cmd_3017] +RelativePath=JIT\Methodical\Arrays\misc\_speed_dbggcarr\_speed_dbggcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbggcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated68.cmd_3018] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest68\Generated68\Generated68.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest68\Generated68 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25833.cmd_3019] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833\b25833.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch10.cmd_3020] +RelativePath=baseservices\exceptions\generics\nested-try-catch10\nested-try-catch10.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SeekOriginCurrent.cmd_3021] +RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent\SeekOriginCurrent.cmd +WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLeave.cmd_3022] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave\OpCodesLeave.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestWithManyParams.cmd_3023] +RelativePath=Loader\classloader\generics\Misc\TestWithManyParams\TestWithManyParams.cmd +WorkingDir=Loader\classloader\generics\Misc\TestWithManyParams +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated317.cmd_3024] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest317\Generated317\Generated317.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest317\Generated317 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchbeforetrybody_r.cmd_3025] +RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_r\catchbeforetrybody_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListIsFixedSize.cmd_3026] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize\ListIListIsFixedSize.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48614.cmd_3027] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614\b48614.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1307.cmd_3028] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1307\Generated1307\Generated1307.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1307\Generated1307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CodeSize1.cmd_3029] +RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize1\CodeSize1.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39951.cmd_3030] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951\b39951.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_332.cmd_3031] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_332\GCSimulator_332.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_332 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtypes.cmd_3032] +RelativePath=JIT\Methodical\ldtoken\_il_dbgtypes\_il_dbgtypes.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_dbgtypes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface003.cmd_3033] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003\box-unbox-interface003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_No_Op_cs_d.cmd_3034] +RelativePath=JIT\Directed\cmov\Float_No_Op_cs_d\Float_No_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefs.cmd_3035] +RelativePath=reflection\ldtoken\byrefs\byrefs.cmd +WorkingDir=reflection\ldtoken\byrefs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59478.cmd_3036] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478\b59478.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread04.cmd_3037] +RelativePath=baseservices\threading\generics\threadstart\GThread04\GThread04.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i72.cmd_3038] +RelativePath=JIT\jit64\mcc\interop\mcc_i72\mcc_i72.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i72 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_il_dbgu_qsort2.cmd_3039] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2\_il_dbgu_qsort2.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_180.cmd_3040] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_180\GCSimulator_180.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_180 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated277.cmd_3041] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest277\Generated277\Generated277.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest277\Generated277 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh09_small.cmd_3042] +RelativePath=JIT\jit64\localloc\ehverify\eh09_small\eh09_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh09_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesFamORAssem.cmd_3043] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem\MethodAttributesFamORAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1161.cmd_3044] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1161\Generated1161\Generated1161.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1161\Generated1161 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated765.cmd_3045] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest765\Generated765\Generated765.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest765\Generated765 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[assemname_cs_do.cmd_3046] +RelativePath=JIT\Methodical\cctor\misc\assemname_cs_do\assemname_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27657.cmd_3047] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657\b27657.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lur_02.cmd_3048] +RelativePath=JIT\jit64\opt\lur\lur_02\lur_02.cmd +WorkingDir=JIT\jit64\opt\lur\lur_02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_muldiv.cmd_3049] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_muldiv\_speed_dbgs_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05737.cmd_3050] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737\b05737.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads03.cmd_3051] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads03\CircularCctorThreeThreads03.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794115_ro.cmd_3052] +RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro\DevDiv_794115_ro.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_50_r.cmd_3053] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r\throwinfinally_50_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_27.cmd_3054] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_27\GCSimulator_27.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02c_seq_ser.cmd_3055] +RelativePath=Loader\classloader\generics\Layout\General\Base02c_seq_ser\Base02c_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02c_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_cs_cs.cmd_3056] +RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs\_odbgsin_cs_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf3.cmd_3057] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3\ArrayLastIndexOf3.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise2_cs_d.cmd_3058] +RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_d\xprecise2_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse1_cs_d.cmd_3059] +RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_d\cse1_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedGenericTypesMix.cmd_3060] +RelativePath=Loader\classloader\generics\Instantiation\Nesting\NestedGenericTypesMix\NestedGenericTypesMix.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Nesting\NestedGenericTypesMix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1167.cmd_3061] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1167\Generated1167\Generated1167.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1167\Generated1167 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b78392.cmd_3062] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392\b78392.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_120.cmd_3063] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_120\GCSimulator_120.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_120 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b93635.cmd_3064] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635\b93635.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit3.cmd_3065] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit3\_opt_relexplicit3.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi8u8.cmd_3066] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi8u8\_il_dbgi8u8.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi8u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16Parse1.cmd_3067] +RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse1\UInt16Parse1.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated770.cmd_3068] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest770\Generated770\Generated770.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest770\Generated770 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetMaxByteCount.cmd_3069] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount\EncodingGetMaxByteCount.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated803.cmd_3070] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest803\Generated803\Generated803.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest803\Generated803 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1G_r.cmd_3071] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_r\hfa_sf1G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1490.cmd_3072] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1490\Generated1490\Generated1490.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1490\Generated1490 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated511.cmd_3073] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest511\Generated511\Generated511.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest511\Generated511 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated488.cmd_3074] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest488\Generated488\Generated488.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest488\Generated488 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Base_1.cmd_3075] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1\Generic_Test_CSharp_Base_1.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt169.cmd_3076] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt169\ConvertToUInt169.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt169 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31182.cmd_3077] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182\b31182.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase3_Nested_J.cmd_3078] +RelativePath=Loader\classloader\InterfaceFolding\TestCase3_Nested_J\TestCase3_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase3_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcincatch_d.cmd_3079] +RelativePath=JIT\Methodical\eh\interactions\gcincatch_d\gcincatch_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\gcincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2C_d.cmd_3080] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_d\hfa_sd2C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41495.cmd_3081] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495\b41495.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToInt32.cmd_3082] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt32\DecimalToInt32.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow02_add.cmd_3083] +RelativePath=JIT\jit64\rtchecks\overflow\overflow02_add\overflow02_add.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated631.cmd_3084] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest631\Generated631\Generated631.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest631\Generated631 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics029.cmd_3085] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029\castclass-generics029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarray1.cmd_3086] +RelativePath=JIT\Methodical\refany\_il_relarray1\_il_relarray1.cmd +WorkingDir=JIT\Methodical\refany\_il_relarray1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtrycatch_r.cmd_3087] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r\throwinnestedtrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Alloc_neg2.cmd_3088] +RelativePath=GC\API\GCHandle\Alloc_neg2\Alloc_neg2.cmd +WorkingDir=GC\API\GCHandle\Alloc_neg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex9.cmd_3089] +RelativePath=baseservices\threading\waithandle\waitall\waitallex9\waitallex9.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[float_cs_ro.cmd_3090] +RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_ro\float_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TreeSort.cmd_3091] +RelativePath=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort\TreeSort.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldc_mul.cmd_3092] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul\_il_dbgs_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Co9604get_IsRunning.cmd_3093] +RelativePath=CoreMangLib\components\stopwatch\Co9604get_IsRunning\Co9604get_IsRunning.cmd +WorkingDir=CoreMangLib\components\stopwatch\Co9604get_IsRunning +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread03.cmd_3094] +RelativePath=baseservices\threading\generics\WaitCallback\thread03\thread03.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread30.cmd_3095] +RelativePath=baseservices\threading\generics\syncdelegate\GThread30\GThread30.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refanytype1_il_r.cmd_3096] +RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r\refanytype1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relval_ctor.cmd_3097] +RelativePath=JIT\Methodical\Invoke\ctor\_speed_relval_ctor\_speed_relval_ctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_speed_relval_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated196.cmd_3098] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest196\Generated196\Generated196.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest196\Generated196 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArgumentOutOfRangeExceptionMessage.cmd_3099] +RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage\ArgumentOutOfRangeExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_3100] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\localloc\localloc.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated77.cmd_3101] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest77\Generated77\Generated77.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest77\Generated77 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80043.cmd_3102] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043\b80043.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpath_r.cmd_3103] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_r\throwinfinallyerrpath_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Conv_R4.cmd_3104] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4\Conv_R4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class_ImplicitOverrideVirtualNewslot.cmd_3105] +RelativePath=Loader\classloader\generics\VSD\Class_ImplicitOverrideVirtualNewslot\Class_ImplicitOverrideVirtualNewslot.cmd +WorkingDir=Loader\classloader\generics\VSD\Class_ImplicitOverrideVirtualNewslot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated292.cmd_3106] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest292\Generated292\Generated292.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest292\Generated292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_cs_il.cmd_3107] +RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_il\_orelsin_cs_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localgotoinahandler_ro.cmd_3108] +RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro\localgotoinahandler_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[193825_uro.cmd_3109] +RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro\193825_uro.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_3110] +RelativePath=JIT\jit64\regress\vsw\539509\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\539509\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[GetHashCode.cmd_3111] +RelativePath=CoreMangLib\cti\system\attribute\GetHashCode\GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\attribute\GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated64.cmd_3112] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest64\Generated64\Generated64.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest64\Generated64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest1_cs_d.cmd_3113] +RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d\ctest1_cs_d.cmd +WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48797.cmd_3114] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797\b48797.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorector1.cmd_3115] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorector1\semaphorector1.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorector1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EmbedStringVersions.cmd_3116] +RelativePath=Loader\binding\assemblies\assemblyversion\EmbedStringVersions\EmbedStringVersions.cmd +WorkingDir=Loader\binding\assemblies\assemblyversion\EmbedStringVersions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_cs_do.cmd_3117] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do\catchrettoinnertry_cs_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div.cmd_3118] +RelativePath=JIT\IL_Conformance\Old\Base\div\div.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uncaughtException_d.cmd_3119] +RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d\uncaughtException_d.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46641.cmd_3120] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641\b46641.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated549.cmd_3121] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest549\Generated549\Generated549.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest549\Generated549 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex3a.cmd_3122] +RelativePath=baseservices\threading\waithandle\waitall\waitallex3a\waitallex3a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex3a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault03.cmd_3123] +RelativePath=baseservices\exceptions\generics\try-fault03\try-fault03.cmd +WorkingDir=baseservices\exceptions\generics\try-fault03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated723.cmd_3124] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest723\Generated723\Generated723.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest723\Generated723 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1125.cmd_3125] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1125\Generated1125\Generated1125.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1125\Generated1125 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72518.cmd_3126] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518\b72518.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgnative.cmd_3127] +RelativePath=JIT\Methodical\refany\_dbgnative\_dbgnative.cmd +WorkingDir=JIT\Methodical\refany\_dbgnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictEnumIEnumReset.cmd_3128] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset\DictEnumIEnumReset.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch4b.cmd_3129] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4b\ArrayBinarySearch4b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryKeyCollectionEnumeratorDispose.cmd_3130] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose\DictionaryKeyCollectionEnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads03.cmd_3131] +RelativePath=Loader\classloader\TypeInitialization\CoreCLR\CircularCctorThreeThreads03\CircularCctorThreeThreads03.cmd +WorkingDir=Loader\classloader\TypeInitialization\CoreCLR\CircularCctorThreeThreads03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31878.cmd_3132] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878\b31878.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesMemberAccessMask.cmd_3133] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask\MethodAttributesMemberAccessMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated351.cmd_3134] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest351\Generated351\Generated351.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest351\Generated351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesStatic.cmd_3135] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic\FieldAttributesStatic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52593.cmd_3136] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593\b52593.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdd.cmd_3137] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgdd\_il_dbgdd.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_oreltry_cs.cmd_3138] +RelativePath=JIT\Methodical\Boxing\seh\_oreltry_cs\_oreltry_cs.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_oreltry_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryKeyCollectionEnumeratorMoveNext.cmd_3139] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext\DictionaryKeyCollectionEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_And_Op_cs_d.cmd_3140] +RelativePath=JIT\Directed\cmov\Int_And_Op_cs_d\Int_And_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh03_large.cmd_3141] +RelativePath=JIT\jit64\localloc\eh\eh03_large\eh03_large.cmd +WorkingDir=JIT\jit64\localloc\eh\eh03_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread02.cmd_3142] +RelativePath=baseservices\threading\generics\WaitCallback\thread02\thread02.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[inl001.cmd_3143] +RelativePath=JIT\jit64\opt\inl\inl001\inl001.cmd +WorkingDir=JIT\jit64\opt\inl\inl001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCreateInstance2b.cmd_3144] +RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2b\ArrayCreateInstance2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32551b.cmd_3145] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b\b32551b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Burgers.cmd_3146] +RelativePath=JIT\Performance\CodeQuality\Burgers\Burgers\Burgers.cmd +WorkingDir=JIT\Performance\CodeQuality\Burgers\Burgers +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncoderCtor.cmd_3147] +RelativePath=CoreMangLib\cti\system\text\encoder\EncoderCtor\EncoderCtor.cmd +WorkingDir=CoreMangLib\cti\system\text\encoder\EncoderCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_conv.cmd_3148] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv\_il_reli_conv.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringReplace2.cmd_3149] +RelativePath=CoreMangLib\cti\system\string\StringReplace2\StringReplace2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringReplace2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryTryGetValue.cmd_3150] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue\DictionaryTryGetValue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated379.cmd_3151] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest379\Generated379\Generated379.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest379\Generated379 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble7.cmd_3152] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble7\ConvertToDouble7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59857.cmd_3153] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857\b59857.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lcliimpl_il_r.cmd_3154] +RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_r\lcliimpl_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblAvg6.cmd_3155] +RelativePath=JIT\CodeGenBringUpTests\DblAvg6\DblAvg6.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblAvg6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[backwardleaveincatch_d.cmd_3156] +RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_d\backwardleaveincatch_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1G_d.cmd_3157] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_d\hfa_nf1G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b174294.cmd_3158] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294\b174294.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[plug.cmd_3159] +RelativePath=GC\Features\HeapExpansion\plug\plug.cmd +WorkingDir=GC\Features\HeapExpansion\plug +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[OpCodesLdloca_S.cmd_3160] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S\OpCodesLdloca_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated160.cmd_3161] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest160\Generated160\Generated160.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest160\Generated160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42929.cmd_3162] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929\b42929.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_u.cmd_3163] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u\bne_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNrem_cs_do.cmd_3164] +RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_do\r8NaNrem_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stind_r8.cmd_3165] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_r8\stind_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2E_d.cmd_3166] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_d\hfa_nf2E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract04.cmd_3167] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract04\abstract04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeEquals2.cmd_3168] +RelativePath=CoreMangLib\cti\system\type\TypeEquals2\TypeEquals2.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgstress1.cmd_3169] +RelativePath=JIT\Methodical\refany\_dbgstress1\_dbgstress1.cmd +WorkingDir=JIT\Methodical\refany\_dbgstress1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated984.cmd_3170] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest984\Generated984\Generated984.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest984\Generated984 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldsfld_mul.cmd_3171] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul\_speed_rels_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27658.cmd_3172] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658\b27658.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_r8.cmd_3173] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r8\clt_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax6.cmd_3174] +RelativePath=CoreMangLib\cti\system\math\MathMax6\MathMax6.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgval_ctor.cmd_3175] +RelativePath=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor\_speed_dbgval_ctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multihandler_do.cmd_3176] +RelativePath=JIT\Methodical\eh\basics\multihandler_do\multihandler_do.cmd +WorkingDir=JIT\Methodical\eh\basics\multihandler_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated227.cmd_3177] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest227\Generated227\Generated227.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest227\Generated227 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8flat_cs_d.cmd_3178] +RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_d\i8flat_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_r4.cmd_3179] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4\ldc_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11814.cmd_3180] +RelativePath=JIT\Regression\JitBlue\GitHub_11814\GitHub_11814\GitHub_11814.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11814\GitHub_11814 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1_cs_r.cmd_3181] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_r\xprecise1_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrotarg_objref.cmd_3182] +RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref\_opt_relrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread05.cmd_3183] +RelativePath=baseservices\threading\generics\threadstart\GThread05\GThread05.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b598034.cmd_3184] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034\b598034.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[args3.cmd_3185] +RelativePath=JIT\opt\Inline\tests\args3\args3.cmd +WorkingDir=JIT\opt\Inline\tests\args3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread10.cmd_3186] +RelativePath=baseservices\threading\generics\WaitCallback\thread10\thread10.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi.cmd_3187] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi\StackBehaviourPopref_popi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_TSNullRefEx.cmd_3188] +RelativePath=baseservices\threading\coverage\Nullref\CS_TSNullRefEx\CS_TSNullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_TSNullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple1.cmd_3189] +RelativePath=JIT\jit64\gc\misc\simple1\simple1.cmd +WorkingDir=JIT\jit64\gc\misc\simple1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_float_1_r.cmd_3190] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_r\seq_gc_float_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HandlerException.cmd_3191] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\HandlerException\HandlerException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\HandlerException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bool_cs_d.cmd_3192] +RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_d\bool_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27917.cmd_3193] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917\b27917.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relgcreport.cmd_3194] +RelativePath=JIT\Methodical\refany\_speed_relgcreport\_speed_relgcreport.cmd +WorkingDir=JIT\Methodical\refany\_speed_relgcreport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueNeFP.cmd_3195] +RelativePath=JIT\CodeGenBringUpTests\JTrueNeFP\JTrueNeFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueNeFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchange3.cmd_3196] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchange3\compareexchange3.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchange3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1615.cmd_3197] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1615\ConvertToUInt1615.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1615 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret3_1.cmd_3198] +RelativePath=JIT\jit64\gc\misc\structret3_1\structret3_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret3_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRefanytype.cmd_3199] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype\OpCodesRefanytype.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectFinalize.cmd_3200] +RelativePath=CoreMangLib\cti\system\object\ObjectFinalize\ObjectFinalize.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectFinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4a_cs_r.cmd_3201] +RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_r\convr4a_cs_r.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics014.cmd_3202] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014\box-unbox-generics014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1_cs_ro.cmd_3203] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_ro\xprecise1_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt162.cmd_3204] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt162\ConvertToUInt162.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt162 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgisinst_ldarg.cmd_3205] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg\_speed_dbgisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_123.cmd_3206] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_123\GCSimulator_123.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_123 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcastclass_newobj.cmd_3207] +RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_newobj\_dbgcastclass_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_d.cmd_3208] +RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_d\throw_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator.cmd_3209] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator\GCSimulator.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsAlive.cmd_3210] +RelativePath=GC\API\WeakReference\IsAlive\IsAlive.cmd +WorkingDir=GC\API\WeakReference\IsAlive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[default_class01.cmd_3211] +RelativePath=JIT\Generics\TypeParameters\default_class01\default_class01.cmd +WorkingDir=JIT\Generics\TypeParameters\default_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_No_Op_cs_ro.cmd_3212] +RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_ro\Bool_No_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_I2.cmd_3213] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2\OpCodesLdelem_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass044.cmd_3214] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044\castclass044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectEquals2.cmd_3215] +RelativePath=CoreMangLib\cti\system\object\ObjectEquals2\ObjectEquals2.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated901.cmd_3216] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest901\Generated901\Generated901.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest901\Generated901 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble17.cmd_3217] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble17\ConvertToDouble17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated311.cmd_3218] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest311\Generated311\Generated311.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest311\Generated311 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_190.cmd_3219] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_190\GCSimulator_190.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_190 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04726.cmd_3220] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726\b04726.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting63.cmd_3221] +RelativePath=Loader\classloader\nesting\Tests\nesting63\nesting63.cmd +WorkingDir=Loader\classloader\nesting\Tests\nesting63 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSet_r.cmd_3222] +RelativePath=JIT\SIMD\VectorSet_r\VectorSet_r.cmd +WorkingDir=JIT\SIMD\VectorSet_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNsub_cs_ro.cmd_3223] +RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_ro\r8NaNsub_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchintryfinally_d.cmd_3224] +RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_d\trycatchintryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated116.cmd_3225] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest116\Generated116\Generated116.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest116\Generated116 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated837.cmd_3226] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest837\Generated837\Generated837.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest837\Generated837 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress3_do.cmd_3227] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_do\CgStress3_do.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated650.cmd_3228] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest650\Generated650\Generated650.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest650\Generated650 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CodeSize0.cmd_3229] +RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize0\CodeSize0.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test3.cmd_3230] +RelativePath=Loader\classloader\regressions\226741\test3\test3.cmd +WorkingDir=Loader\classloader\regressions\226741\test3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAC_d.cmd_3231] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d\CGRecurseAAC_d.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedObject.cmd_3232] +RelativePath=GC\Features\Pinning\PinningOther\PinnedObject\PinnedObject.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36332.cmd_3233] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332\b36332.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsval.cmd_3234] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsval\_speed_rellcsval.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderChars.cmd_3235] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars\StringBuilderChars.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeLong_2.cmd_3236] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2\CompareExchangeLong_2.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeValue.cmd_3237] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue\OpCodeValue.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumps5.cmd_3238] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps5\_il_dbgjumps5.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorMoveNext.cmd_3239] +RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b60142.cmd_3240] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142\b60142.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1316.cmd_3241] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1316\Generated1316\Generated1316.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1316\Generated1316 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateGetHashCode1.cmd_3242] +RelativePath=CoreMangLib\cti\system\delegate\DelegateGetHashCode1\DelegateGetHashCode1.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetHashCode1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badendfinally_il_r.cmd_3243] +RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r\badendfinally_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call06_large.cmd_3244] +RelativePath=JIT\jit64\localloc\call\call06_large\call06_large.cmd +WorkingDir=JIT\jit64\localloc\call\call06_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceTargetb_PSC.cmd_3245] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC\WeakReferenceTargetb_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_3246] +RelativePath=JIT\Directed\PREFIX\volatile\1\localloc\localloc.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase4_Nested_J_Nested_I.cmd_3247] +RelativePath=Loader\classloader\InterfaceFolding\TestCase4_Nested_J_Nested_I\TestCase4_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase4_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct3_5.cmd_3248] +RelativePath=JIT\jit64\gc\misc\struct3_5\struct3_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct3_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean5.cmd_3249] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean5\ConvertToBoolean5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIsInfinity.cmd_3250] +RelativePath=CoreMangLib\cti\system\double\DoubleIsInfinity\DoubleIsInfinity.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIsInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte7.cmd_3251] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte7\ConvertToByte7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorUnused_ro.cmd_3252] +RelativePath=JIT\SIMD\VectorUnused_ro\VectorUnused_ro.cmd +WorkingDir=JIT\SIMD\VectorUnused_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MulticastDelegateEquals.cmd_3253] +RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals\MulticastDelegateEquals.cmd +WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated15.cmd_3254] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest15\Generated15\Generated15.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest15\Generated15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_struct01.cmd_3255] +RelativePath=JIT\Generics\Locals\static_assignment_struct01\static_assignment_struct01.cmd +WorkingDir=JIT\Generics\Locals\static_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCompare.cmd_3256] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCompare\DecimalCompare.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCompare +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgstress3.cmd_3257] +RelativePath=JIT\Methodical\refany\_dbgstress3\_dbgstress3.cmd +WorkingDir=JIT\Methodical\refany\_dbgstress3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated566.cmd_3258] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest566\Generated566\Generated566.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest566\Generated566 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex1.cmd_3259] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex1\waitoneex1.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated400.cmd_3260] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest400\Generated400\Generated400.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest400\Generated400 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated998.cmd_3261] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest998\Generated998\Generated998.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest998\Generated998 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null030.cmd_3262] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030\castclass-null030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated188.cmd_3263] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest188\Generated188\Generated188.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest188\Generated188 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated346.cmd_3264] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest346\Generated346\Generated346.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest346\Generated346 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal15.cmd_3265] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal15\ConvertToDecimal15.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794631_do.cmd_3266] +RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do\DevDiv_794631_do.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst.cmd_3267] +RelativePath=JIT\IL_Conformance\Old\objectmodel\isinst\isinst.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\isinst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[comp64_il_r.cmd_3268] +RelativePath=JIT\Methodical\NaN\comp64_il_r\comp64_il_r.cmd +WorkingDir=JIT\Methodical\NaN\comp64_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw1dimarray_r.cmd_3269] +RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_r\throw1dimarray_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b60723.cmd_3270] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723\b60723.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor7.cmd_3271] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7\MemoryStreamCtor7.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bleref_il_r.cmd_3272] +RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_r\bleref_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[NegRMW.cmd_3273] +RelativePath=JIT\CodeGenBringUpTests\NegRMW\NegRMW.cmd +WorkingDir=JIT\CodeGenBringUpTests\NegRMW +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret4_3.cmd_3274] +RelativePath=JIT\jit64\gc\misc\structret4_3\structret4_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret4_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_ro_loop.cmd_3275] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_ro_loop\arrayexpr2_ro_loop.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_ro_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_s.cmd_3276] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_s\_il_relrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16TryParse.cmd_3277] +RelativePath=CoreMangLib\cti\system\uint16\UInt16TryParse\UInt16TryParse.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Simple1.cmd_3278] +RelativePath=JIT\Directed\Arrays\Simple1\Simple1.cmd +WorkingDir=JIT\Directed\Arrays\Simple1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-01_cs_ro.cmd_3279] +RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_ro\3w1d-01_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_un_r4.cmd_3280] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4\bne_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgval_cctor.cmd_3281] +RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor\_il_dbgval_cctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w250d_cs_ro.cmd_3282] +RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_ro\10w250d_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64Parse1.cmd_3283] +RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse1\UInt64Parse1.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1391.cmd_3284] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1391\Generated1391\Generated1391.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1391\Generated1391 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_obj_1_d.cmd_3285] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d\expl_gc_obj_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionCtor2.cmd_3286] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2\FileNotFoundExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64Equals2.cmd_3287] +RelativePath=CoreMangLib\cti\system\int64\Int64Equals2\Int64Equals2.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64Equals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DebuggingModesIgnoreSymbolStoreSequencePoints.cmd_3288] +RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints\DebuggingModesIgnoreSymbolStoreSequencePoints.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanTrueString.cmd_3289] +RelativePath=CoreMangLib\cti\system\boolean\BooleanTrueString\BooleanTrueString.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanTrueString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4_cs_ro.cmd_3290] +RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_ro\r4_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_cs_r.cmd_3291] +RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_r\vt1_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex5.cmd_3292] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex5\waitanyex5.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[437017.cmd_3293] +RelativePath=baseservices\threading\regressions\beta2\437017\437017.cmd +WorkingDir=baseservices\threading\regressions\beta2\437017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[rethrowwithhandlerscatchingbase_d.cmd_3294] +RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d\rethrowwithhandlerscatchingbase_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b119538b.cmd_3295] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b\b119538b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8231.cmd_3296] +RelativePath=JIT\Regression\JitBlue\GitHub_8231\GitHub_8231\GitHub_8231.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8231\GitHub_8231 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8div_cs_r.cmd_3297] +RelativePath=JIT\Methodical\divrem\div\u8div_cs_r\u8div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\u8div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated219.cmd_3298] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest219\Generated219\Generated219.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest219\Generated219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[148343.cmd_3299] +RelativePath=JIT\jit64\gc\misc\148343\148343.cmd +WorkingDir=JIT\jit64\gc\misc\148343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26020.cmd_3300] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020\b26020.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxing001.cmd_3301] +RelativePath=JIT\Methodical\acceptance\Boxing\boxing001\boxing001.cmd +WorkingDir=JIT\Methodical\acceptance\Boxing\boxing001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToUInt16.cmd_3302] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt16\StringIConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase06.cmd_3303] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase06\AbstractBase06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WaitHandleDispose1.cmd_3304] +RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1\WaitHandleDispose1.cmd +WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Marshal.cmd_3305] +RelativePath=Regressions\common\Marshal\Marshal.cmd +WorkingDir=Regressions\common\Marshal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfinally_ind.cmd_3306] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind\_il_relcatchfinally_ind.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_257.cmd_3307] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_257\GCSimulator_257.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_257 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated387.cmd_3308] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest387\Generated387\Generated387.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest387\Generated387 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread11.cmd_3309] +RelativePath=baseservices\threading\generics\syncdelegate\GThread11\GThread11.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullarraymember.cmd_3310] +RelativePath=baseservices\threading\waithandle\waitall\nullarraymember\nullarraymember.cmd +WorkingDir=baseservices\threading\waithandle\waitall\nullarraymember +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_2c.cmd_3311] +RelativePath=JIT\Methodical\tailcall\_il_reltest_2c\_il_reltest_2c.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_2c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleMinValue.cmd_3312] +RelativePath=CoreMangLib\cti\system\single\SingleMinValue\SingleMinValue.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8rem_cs_d.cmd_3313] +RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_d\i8rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[br.cmd_3314] +RelativePath=JIT\IL_Conformance\Old\Base\br\br.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\br +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_i2.cmd_3315] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i2\_il_relrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59678.cmd_3316] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678\b59678.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderInsert4.cmd_3317] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4\StringBuilderInsert4.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyrecursive_20_d.cmd_3318] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d\throwinfinallyrecursive_20_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleToString4.cmd_3319] +RelativePath=CoreMangLib\cti\system\double\DoubleToString4\DoubleToString4.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleToString4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass024.cmd_3320] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024\castclass024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[main.cmd_3321] +RelativePath=Loader\regressions\classloader\main\main.cmd +WorkingDir=Loader\regressions\classloader\main +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_379.cmd_3322] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_379\GCSimulator_379.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_379 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relaccum.cmd_3323] +RelativePath=JIT\Methodical\VT\identity\_relaccum\_relaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_relaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_3324] +RelativePath=JIT\jit64\regress\vsw\102754\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\102754\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class03.cmd_3325] +RelativePath=JIT\Generics\Typeof\class03\class03.cmd +WorkingDir=JIT\Generics\Typeof\class03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign6.cmd_3326] +RelativePath=CoreMangLib\cti\system\math\MathSign6\MathSign6.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex7a.cmd_3327] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex7a\waitanyex7a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex7a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgformat.cmd_3328] +RelativePath=JIT\Methodical\refany\_il_dbgformat\_il_dbgformat.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgformat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass016.cmd_3329] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016\castclass016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46583.cmd_3330] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583\b46583.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_range2.cmd_3331] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range2\_il_dbgint32_range2.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics015.cmd_3332] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015\box-unbox-generics015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumps1.cmd_3333] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumps1\_il_reljumps1.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchange4.cmd_3334] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchange4\compareexchange4.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchange4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullcomparaison_d.cmd_3335] +RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d\nullcomparaison_d.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBase64String2.cmd_3336] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String2\ConvertToBase64String2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileShareNone.cmd_3337] +RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareNone\FileShareNone.cmd +WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleIsClosed_PSC.cmd_3338] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC\SafeHandleIsClosed_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value027.cmd_3339] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027\box-unbox-value027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84131.cmd_3340] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131\b84131.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[not.cmd_3341] +RelativePath=JIT\IL_Conformance\Old\Base\not\not.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\not +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1399.cmd_3342] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1399\Generated1399\Generated1399.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1399\Generated1399 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value018.cmd_3343] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018\box-unbox-value018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_do.cmd_3344] +RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_do\jaggedarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3b_il_r.cmd_3345] +RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_r\25param3b_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test3.cmd_3346] +RelativePath=Loader\classloader\regressions\asurt150271\test3\test3.cmd +WorkingDir=Loader\classloader\regressions\asurt150271\test3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b569942.cmd_3347] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942\b569942.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble14.cmd_3348] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble14\ConvertToDouble14.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test.cmd_3349] +RelativePath=Loader\classloader\generics\regressions\341477\Test\Test.cmd +WorkingDir=Loader\classloader\generics\regressions\341477\Test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed_cs_do.cmd_3350] +RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do\mixed_cs_do.cmd +WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor2.cmd_3351] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2\MemoryStreamCtor2.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_82.cmd_3352] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_82\GCSimulator_82.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_82 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedEx1.cmd_3353] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\NestedEx1\NestedEx1.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\NestedEx1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdfld.cmd_3354] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld\OpCodesLdfld.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumps3.cmd_3355] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps3\_il_dbgjumps3.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate014.cmd_3356] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate014\Delegate014.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNmul_cs_do.cmd_3357] +RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_do\r4NaNmul_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OutAttributeCtor.cmd_3358] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor\OutAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LLoops.cmd_3359] +RelativePath=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops\LLoops.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericStructs.cmd_3360] +RelativePath=JIT\opt\Inline\tests\GenericStructs\GenericStructs.cmd +WorkingDir=JIT\opt\Inline\tests\GenericStructs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytryfinally_ro.cmd_3361] +RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_ro\tryfinallytryfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_u8.cmd_3362] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u8\div_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs7.cmd_3363] +RelativePath=CoreMangLib\cti\system\math\MathAbs7\MathAbs7.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEnumeratorDispose.cmd_3364] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose\DictionaryEnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[global_il_d.cmd_3365] +RelativePath=JIT\Methodical\cctor\misc\global_il_d\global_il_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\global_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Generated229.cmd_3366] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest229\Generated229\Generated229.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest229\Generated229 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartULong_1.cmd_3367] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_1\ThreadStartULong_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_292.cmd_3368] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_292\GCSimulator_292.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value041.cmd_3369] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041\box-unbox-value041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwoutside_r.cmd_3370] +RelativePath=JIT\Methodical\eh\basics\throwoutside_r\throwoutside_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwoutside_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u4_i.cmd_3371] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i\conv_ovf_u4_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray2_cs_r.cmd_3372] +RelativePath=JIT\Methodical\doublearray\dblarray2_cs_r\dblarray2_cs_r.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToUInt32.cmd_3373] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32\UInt64IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread16.cmd_3374] +RelativePath=baseservices\threading\generics\WaitCallback\thread16\thread16.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-4.cmd_3375] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-4\_relunsafe-4.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics009.cmd_3376] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009\castclass-generics009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42013.cmd_3377] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013\b42013.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign4.cmd_3378] +RelativePath=CoreMangLib\cti\system\math\MathSign4\MathSign4.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray1_cs_ro.cmd_3379] +RelativePath=JIT\Methodical\doublearray\dblarray1_cs_ro\dblarray1_cs_ro.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated510.cmd_3380] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest510\Generated510\Generated510.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest510\Generated510 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_o.cmd_3381] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_o\_relrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Or_Op_cs_d.cmd_3382] +RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_d\Int_Or_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_333.cmd_3383] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_333\GCSimulator_333.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadImageFormatExceptionCtor2.cmd_3384] +RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2\BadImageFormatExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated284.cmd_3385] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest284\Generated284\Generated284.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest284\Generated284 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions03.cmd_3386] +RelativePath=baseservices\exceptions\generics\GenericExceptions03\GenericExceptions03.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedStruct01.cmd_3387] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedStruct01\NestedStruct01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedStruct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_I1.cmd_3388] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1\OpCodesConv_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37608.cmd_3389] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608\b37608.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i51.cmd_3390] +RelativePath=JIT\jit64\mcc\interop\mcc_i51\mcc_i51.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i51 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[mul_ovf_i4.cmd_3391] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4\mul_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54667.cmd_3392] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667\b54667.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1179.cmd_3393] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1179\Generated1179\Generated1179.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1179\Generated1179 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBgt.cmd_3394] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt\OpCodesBgt.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_720779.cmd_3395] +RelativePath=Loader\classloader\regressions\dev10_720779\dev10_720779\dev10_720779.cmd +WorkingDir=Loader\classloader\regressions\dev10_720779\dev10_720779 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat4.cmd_3396] +RelativePath=CoreMangLib\cti\system\string\StringConcat4\StringConcat4.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_i8.cmd_3397] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i8\blt_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallywith2reachableendfinally_r.cmd_3398] +RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r\tryfinallywith2reachableendfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27978.cmd_3399] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978\b27978.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittonestedsibling_r.cmd_3400] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r\nonlocalexittonestedsibling_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[9param.cmd_3401] +RelativePath=JIT\jit64\gc\misc\9param\9param.cmd +WorkingDir=JIT\jit64\gc\misc\9param +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFAtan.cmd_3402] +RelativePath=CoreMangLib\cti\system\mathf\MathFAtan\MathFAtan.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFAtan +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[monitorenter.cmd_3403] +RelativePath=baseservices\threading\monitor\enter\monitorenter\monitorenter.cmd +WorkingDir=baseservices\threading\monitor\enter\monitorenter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_struct01.cmd_3404] +RelativePath=JIT\Generics\Locals\instance_assignment_struct01\instance_assignment_struct01.cmd +WorkingDir=JIT\Generics\Locals\instance_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_11.cmd_3405] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_11\GCSimulator_11.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39397.cmd_3406] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397\b39397.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1440.cmd_3407] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1440\Generated1440\Generated1440.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1440\Generated1440 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71831.cmd_3408] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831\b71831.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_r.cmd_3409] +RelativePath=JIT\Directed\shift\int32_r\int32_r.cmd +WorkingDir=JIT\Directed\shift\int32_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryEnter03.cmd_3410] +RelativePath=baseservices\threading\generics\Monitor\TryEnter03\TryEnter03.cmd +WorkingDir=baseservices\threading\generics\Monitor\TryEnter03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46649.cmd_3411] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649\b46649.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0E_d.cmd_3412] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_d\hfa_nf0E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_d.cmd_3413] +RelativePath=JIT\Directed\shift\int32_d\int32_d.cmd +WorkingDir=JIT\Directed\shift\int32_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1A_d.cmd_3414] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_d\hfa_sd1A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null045.cmd_3415] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045\castclass-null045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated250.cmd_3416] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest250\Generated250\Generated250.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest250\Generated250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesReadonly.cmd_3417] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly\OpCodesReadonly.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchangedouble.cmd_3418] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchangedouble\compareexchangedouble.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchangedouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32613.cmd_3419] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613\b32613.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_i2.cmd_3420] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i2\ldloc_s_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_struct01.cmd_3421] +RelativePath=JIT\Generics\Locals\static_equalnull_struct01\static_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Locals\static_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1196.cmd_3422] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1196\Generated1196\Generated1196.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1196\Generated1196 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter2_d.cmd_3423] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d\throwinfinallyintryfilter2_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CscBench.cmd_3424] +RelativePath=JIT\Performance\CodeQuality\Roslyn\CscBench\CscBench.cmd +WorkingDir=JIT\Performance\CodeQuality\Roslyn\CscBench +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated538.cmd_3425] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest538\Generated538\Generated538.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest538\Generated538 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytrycatch_d.cmd_3426] +RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_d\tryfinallytrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadcodeincatch_r.cmd_3427] +RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_r\deadcodeincatch_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92736.cmd_3428] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736\b92736.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics001.cmd_3429] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001\box-unbox-generics001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString8.cmd_3430] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString8\ConvertToString8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ambiguous.cmd_3431] +RelativePath=Loader\classloader\InterfaceFolding\Ambiguous\Ambiguous.cmd +WorkingDir=Loader\classloader\InterfaceFolding\Ambiguous +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated436.cmd_3432] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest436\Generated436\Generated436.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest436\Generated436 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InstanceCalls.cmd_3433] +RelativePath=JIT\CodeGenBringUpTests\InstanceCalls\InstanceCalls.cmd +WorkingDir=JIT\CodeGenBringUpTests\InstanceCalls +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b320147.cmd_3434] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147\b320147.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter2.cmd_3435] +RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter2\throwinfinallyintryfilter2.cmd +WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToInt64.cmd_3436] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64\Int64IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52838.cmd_3437] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838\b52838.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_50.cmd_3438] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_50\GCSimulator_50.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_50 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated121.cmd_3439] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest121\Generated121\Generated121.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest121\Generated121 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg1.cmd_3440] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg1\openmutexneg1.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread08.cmd_3441] +RelativePath=baseservices\threading\generics\TimerCallback\thread08\thread08.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_897464.cmd_3442] +RelativePath=Loader\classloader\regressions\dev10_897464\dev10_897464\dev10_897464.cmd +WorkingDir=Loader\classloader\regressions\dev10_897464\dev10_897464 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesOr.cmd_3443] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr\OpCodesOr.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated86.cmd_3444] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest86\Generated86\Generated86.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest86\Generated86 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rangecheckinfinally_d.cmd_3445] +RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_d\rangecheckinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh07_small.cmd_3446] +RelativePath=JIT\jit64\localloc\ehverify\eh07_small\eh07_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh07_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i87.cmd_3447] +RelativePath=JIT\jit64\mcc\interop\mcc_i87\mcc_i87.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i87 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated186.cmd_3448] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest186\Generated186\Generated186.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest186\Generated186 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16881a.cmd_3449] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a\b16881a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxenum_d.cmd_3450] +RelativePath=JIT\Directed\nullabletypes\boxunboxenum_d\boxunboxenum_d.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh02_large.cmd_3451] +RelativePath=JIT\jit64\localloc\eh\eh02_large\eh02_large.cmd +WorkingDir=JIT\jit64\localloc\eh\eh02_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relptr_types.cmd_3452] +RelativePath=JIT\Methodical\ldtoken\_il_relptr_types\_il_relptr_types.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_relptr_types +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopinfinally_do.cmd_3453] +RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_do\loopinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arglist.cmd_3454] +RelativePath=JIT\Directed\PREFIX\unaligned\1\arglist\arglist.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\arglist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[deadrgninfunclet_r.cmd_3455] +RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_r\deadrgninfunclet_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_8.cmd_3456] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_8\ConvertToInt32_8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_funcptr_gc_d.cmd_3457] +RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d\seq_funcptr_gc_d.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29583.cmd_3458] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583\b29583.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteMinValue.cmd_3459] +RelativePath=CoreMangLib\cti\system\sbyte\SByteMinValue\SByteMinValue.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgaccum.cmd_3460] +RelativePath=JIT\Methodical\VT\identity\_speed_dbgaccum\_speed_dbgaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_speed_dbgaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbggcarr.cmd_3461] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbggcarr\_il_dbggcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbggcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated413.cmd_3462] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest413\Generated413\Generated413.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest413\Generated413 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate017.cmd_3463] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate017\Delegate017.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_10.cmd_3464] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_10\ConvertToInt64_10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedGenericStructs.cmd_3465] +RelativePath=Loader\classloader\generics\Instantiation\Nesting\NestedGenericStructs\NestedGenericStructs.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Nesting\NestedGenericStructs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgisinst_call.cmd_3466] +RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_call\_dbgisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics023.cmd_3467] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023\box-unbox-generics023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_long_1_r.cmd_3468] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_r\expl_gc_long_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48872.cmd_3469] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872\b48872.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct2.cmd_3470] +RelativePath=JIT\jit64\gc\misc\struct2\struct2.cmd +WorkingDir=JIT\jit64\gc\misc\struct2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sysinfo_cs.cmd_3471] +RelativePath=JIT\Directed\pinvoke\sysinfo_cs\sysinfo_cs.cmd +WorkingDir=JIT\Directed\pinvoke\sysinfo_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b323557-dbg.cmd_3472] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg\b323557-dbg.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvolatile.cmd_3473] +RelativePath=JIT\Methodical\VT\identity\_il_relvolatile\_il_relvolatile.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_relvolatile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter3.cmd_3474] +RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter3\throwinfinallyintryfilter3.cmd +WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToBoolean.cmd_3475] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean\Int16IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28927.cmd_3476] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927\b28927.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shr_i4.cmd_3477] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i4\shr_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47906.cmd_3478] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906\b47906.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchbackwardswithfinally_r.cmd_3479] +RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r\branchbackwardswithfinally_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1264.cmd_3480] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1264\Generated1264\Generated1264.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1264\Generated1264 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_r4.cmd_3481] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4\ldind_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_box.cmd_3482] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box\_il_relu_box.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ssa_tuIsAddr.cmd_3483] +RelativePath=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr\ssa_tuIsAddr.cmd +WorkingDir=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryfinally_r.cmd_3484] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r\nestedtryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohcompact_stress.cmd_3485] +RelativePath=GC\Features\LOHCompaction\lohcompact_stress\lohcompact_stress.cmd +WorkingDir=GC\Features\LOHCompaction\lohcompact_stress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-5.cmd_3486] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-5\_speed_relunsafe-5.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesNormal.cmd_3487] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal\FileAttributesNormal.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh12_small.cmd_3488] +RelativePath=JIT\jit64\localloc\ehverify\eh12_small\eh12_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh12_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated849.cmd_3489] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest849\Generated849\Generated849.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest849\Generated849 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToByte.cmd_3490] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte\UInt32IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1155.cmd_3491] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1155\Generated1155\Generated1155.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1155\Generated1155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ActivatorCreateInstance2.cmd_3492] +RelativePath=CoreMangLib\cti\system\activator\ActivatorCreateInstance2\ActivatorCreateInstance2.cmd +WorkingDir=CoreMangLib\cti\system\activator\ActivatorCreateInstance2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threadstartclass.cmd_3493] +RelativePath=baseservices\threading\paramthreadstart\threadstartclass\threadstartclass.cmd +WorkingDir=baseservices\threading\paramthreadstart\threadstartclass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed1_cs_r.cmd_3494] +RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_r\mixed1_cs_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated338.cmd_3495] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest338\Generated338\Generated338.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest338\Generated338 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14350.cmd_3496] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350\b14350.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesUnbox.cmd_3497] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox\OpCodesUnbox.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeChar.cmd_3498] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeChar\TypeCodeChar.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated673.cmd_3499] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest673\Generated673\Generated673.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest673\Generated673 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblRem.cmd_3500] +RelativePath=JIT\CodeGenBringUpTests\DblRem\DblRem.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblRem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread15.cmd_3501] +RelativePath=baseservices\threading\generics\TimerCallback\thread15\thread15.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Peer_1.cmd_3502] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1\Generic_Test_CSharp_Peer_1.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06811.cmd_3503] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811\b06811.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relvirtcall.cmd_3504] +RelativePath=JIT\Methodical\refany\_relvirtcall\_relvirtcall.cmd +WorkingDir=JIT\Methodical\refany\_relvirtcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1106.cmd_3505] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1106\Generated1106\Generated1106.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1106\Generated1106 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch5b.cmd_3506] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5b\ArrayBinarySearch5b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret2_3.cmd_3507] +RelativePath=JIT\jit64\gc\misc\structret2_3\structret2_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret2_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UseUnalignedDouble.cmd_3508] +RelativePath=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble\UseUnalignedDouble.cmd +WorkingDir=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListICollectionSyncRoot.cmd_3509] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot\ListICollectionSyncRoot.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeTString_2.cmd_3510] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString_2\ExchangeTString_2.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit5.cmd_3511] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit5\_opt_relexplicit5.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowInlinedStatic.cmd_3512] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowInlinedStatic\CctorThrowInlinedStatic.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowInlinedStatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess2_cs_do.cmd_3513] +RelativePath=JIT\Directed\StrAccess\straccess2_cs_do\straccess2_cs_do.cmd +WorkingDir=JIT\Directed\StrAccess\straccess2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Parse1.cmd_3514] +RelativePath=CoreMangLib\cti\system\int\Int32Parse1\Int32Parse1.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Parse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InstrCnt0.cmd_3515] +RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt0\InstrCnt0.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryfault_d.cmd_3516] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d\throwinnestedtryfault_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB5001_PSP.cmd_3517] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB5001_PSP\LocallocCnstB5001_PSP.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB5001_PSP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_long_1_d.cmd_3518] +RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_d\expl_long_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64CompareTo1.cmd_3519] +RelativePath=CoreMangLib\cti\system\int64\Int64CompareTo1\Int64CompareTo1.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64CompareTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test137310.cmd_3520] +RelativePath=Loader\classloader\generics\regressions\137310\test137310\test137310.cmd +WorkingDir=Loader\classloader\generics\regressions\137310\test137310 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchincatch_do.cmd_3521] +RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_do\switchincatch_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopstrswitchgoto_r.cmd_3522] +RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r\loopstrswitchgoto_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise4_cs_d.cmd_3523] +RelativePath=JIT\Methodical\cctor\simple\precise4_cs_d\precise4_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Args5.cmd_3524] +RelativePath=JIT\CodeGenBringUpTests\Args5\Args5.cmd +WorkingDir=JIT\CodeGenBringUpTests\Args5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_3525] +RelativePath=JIT\Directed\PREFIX\unaligned\1\cpblk\cpblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_byte_1_r.cmd_3526] +RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_r\seq_byte_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92073.cmd_3527] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073\b92073.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1447.cmd_3528] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1447\Generated1447\Generated1447.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1447\Generated1447 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind05_large.cmd_3529] +RelativePath=JIT\jit64\localloc\unwind\unwind05_large\unwind05_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind05_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_258.cmd_3530] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_258\GCSimulator_258.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_258 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryRemove.cmd_3531] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove\DictionaryIDictionaryRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilldind.cmd_3532] +RelativePath=JIT\Directed\coverage\importer\volatilldind\volatilldind.cmd +WorkingDir=JIT\Directed\coverage\importer\volatilldind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumper4.cmd_3533] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper4\_il_dbgjumper4.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1128.cmd_3534] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1128\Generated1128\Generated1128.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1128\Generated1128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08020.cmd_3535] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020\b08020.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value006.cmd_3536] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006\box-unbox-value006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Complex2.cmd_3537] +RelativePath=JIT\Directed\Arrays\Complex2\Complex2.cmd +WorkingDir=JIT\Directed\Arrays\Complex2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1249.cmd_3538] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1249\Generated1249\Generated1249.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1249\Generated1249 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase7.cmd_3539] +RelativePath=Loader\classloader\InterfaceFolding\TestCase7\TestCase7.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotarg_double.cmd_3540] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_double\_il_relrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueNeDbl.cmd_3541] +RelativePath=JIT\CodeGenBringUpTests\JTrueNeDbl\JTrueNeDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueNeDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b73283.cmd_3542] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283\b73283.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions06.cmd_3543] +RelativePath=baseservices\exceptions\generics\GenericExceptions06\GenericExceptions06.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1194.cmd_3544] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1194\Generated1194\Generated1194.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1194\Generated1194 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeToString.cmd_3545] +RelativePath=CoreMangLib\cti\system\type\TypeToString\TypeToString.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch03.cmd_3546] +RelativePath=baseservices\exceptions\generics\try-catch03\try-catch03.cmd +WorkingDir=baseservices\exceptions\generics\try-catch03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellength0.cmd_3547] +RelativePath=JIT\Methodical\Arrays\misc\_il_rellength0\_il_rellength0.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_rellength0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListICollectionCopyTo.cmd_3548] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo\ListICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_876169_ro.cmd_3549] +RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro\DevDiv_876169_ro.cmd +WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MinMax_ro.cmd_3550] +RelativePath=JIT\SIMD\MinMax_ro\MinMax_ro.cmd +WorkingDir=JIT\SIMD\MinMax_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarray3.cmd_3551] +RelativePath=JIT\Methodical\refany\_il_relarray3\_il_relarray3.cmd +WorkingDir=JIT\Methodical\refany\_il_relarray3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated426.cmd_3552] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest426\Generated426\Generated426.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest426\Generated426 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetByteCount2.cmd_3553] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2\EncodingGetByteCount2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemberAccessExceptionCtor3.cmd_3554] +RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3\MemberAccessExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samethrowtwice_ro.cmd_3555] +RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_ro\samethrowtwice_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed_cs_r.cmd_3556] +RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r\mixed_cs_r.cmd +WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04384.cmd_3557] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384\b04384.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyrecursive_20_r.cmd_3558] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r\throwinfinallyrecursive_20_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToChar.cmd_3559] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar\BooleanIConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finalize.cmd_3560] +RelativePath=GC\API\GC\Finalize\Finalize.cmd +WorkingDir=GC\API\GC\Finalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass01.cmd_3561] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass01\NestedBaseClass01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateGetInvocationList1.cmd_3562] +RelativePath=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1\DelegateGetInvocationList1.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin7.cmd_3563] +RelativePath=CoreMangLib\cti\system\math\MathMin7\MathMin7.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread26.cmd_3564] +RelativePath=baseservices\threading\generics\TimerCallback\thread26\thread26.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_il_d.cmd_3565] +RelativePath=JIT\Generics\ConstrainedCall\vt2_il_d\vt2_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int64_d.cmd_3566] +RelativePath=JIT\Directed\shift\int64_d\int64_d.cmd +WorkingDir=JIT\Directed\shift\int64_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_216571.cmd_3567] +RelativePath=JIT\Regression\JitBlue\DevDiv_216571\DevDiv_216571\DevDiv_216571.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_216571\DevDiv_216571 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14277.cmd_3568] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277\b14277.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal13.cmd_3569] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal13\ConvertToDecimal13.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try1_d.cmd_3570] +RelativePath=JIT\Directed\leave\try1_d\try1_d.cmd +WorkingDir=JIT\Directed\leave\try1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated45.cmd_3571] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest45\Generated45\Generated45.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest45\Generated45 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated472.cmd_3572] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest472\Generated472\Generated472.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest472\Generated472 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit5.cmd_3573] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit5\_relexplicit5.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null026.cmd_3574] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026\castclass-null026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFMin.cmd_3575] +RelativePath=CoreMangLib\cti\system\mathf\MathFMin\MathFMin.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFMin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b140118.cmd_3576] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118\b140118.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02a_auto.cmd_3577] +RelativePath=Loader\classloader\generics\Layout\General\Base02a_auto\Base02a_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02a_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b180381b.cmd_3578] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b\b180381b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated484.cmd_3579] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest484\Generated484\Generated484.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest484\Generated484 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeTypeHandleEquals.cmd_3580] +RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals\RuntimeTypeHandleEquals.cmd +WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase2_Nested_J_Nested_I.cmd_3581] +RelativePath=Loader\classloader\InterfaceFolding\TestCase2_Nested_J_Nested_I\TestCase2_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase2_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refanytype1_il_d.cmd_3582] +RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d\refanytype1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySetValue1b.cmd_3583] +RelativePath=CoreMangLib\cti\system\array\ArraySetValue1b\ArraySetValue1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_r8.cmd_3584] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r8\beq_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53878.cmd_3585] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878\b53878.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread30.cmd_3586] +RelativePath=baseservices\threading\generics\TimerCallback\thread30\thread30.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldc_mulovf.cmd_3587] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mulovf\_il_relldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[args2.cmd_3588] +RelativePath=JIT\opt\Inline\tests\args2\args2.cmd +WorkingDir=JIT\opt\Inline\tests\args2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_44.cmd_3589] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_44\GCSimulator_44.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_44 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated576.cmd_3590] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest576\Generated576\Generated576.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest576\Generated576 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b302558.cmd_3591] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558\b302558.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex10.cmd_3592] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex10\waitanyex10.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TailWinApi.cmd_3593] +RelativePath=JIT\Directed\IL\PInvokeTail\TailWinApi\TailWinApi.cmd +WorkingDir=JIT\Directed\IL\PInvokeTail\TailWinApi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thdlist.cmd_3594] +RelativePath=GC\Scenarios\THDList\thdlist\thdlist.cmd +WorkingDir=GC\Scenarios\THDList\thdlist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[waitallex1.cmd_3595] +RelativePath=baseservices\threading\waithandle\waitall\waitallex1\waitallex1.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated609.cmd_3596] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest609\Generated609\Generated609.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest609\Generated609 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relisinst_call.cmd_3597] +RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_call\_speed_relisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reladdsub.cmd_3598] +RelativePath=JIT\Methodical\int64\unsigned\_speed_reladdsub\_speed_reladdsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_reladdsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call06_small.cmd_3599] +RelativePath=JIT\jit64\localloc\call\call06_small\call06_small.cmd +WorkingDir=JIT\jit64\localloc\call\call06_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_I8.cmd_3600] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8\OpCodesLdelem_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated834.cmd_3601] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest834\Generated834\Generated834.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest834\Generated834 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceCtor1_PSC.cmd_3602] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC\WeakReferenceCtor1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldc_mulovf.cmd_3603] +RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mulovf\_rels_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i64.cmd_3604] +RelativePath=JIT\jit64\mcc\interop\mcc_i64\mcc_i64.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldelem_get.cmd_3605] +RelativePath=JIT\Methodical\Arrays\misc\_il_relldelem_get\_il_relldelem_get.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relldelem_get +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess1_cs_d.cmd_3606] +RelativePath=JIT\Directed\StrAccess\straccess1_cs_d\straccess1_cs_d.cmd +WorkingDir=JIT\Directed\StrAccess\straccess1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b423755.cmd_3607] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755\b423755.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit8.cmd_3608] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit8\_dbgexplicit8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated961.cmd_3609] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest961\Generated961\Generated961.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest961\Generated961 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericICollectionRemove.cmd_3610] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove\GenericICollectionRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat1.cmd_3611] +RelativePath=CoreMangLib\cti\system\string\StringConcat1\StringConcat1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25815.cmd_3612] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815\b25815.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_No_Op_cs_do.cmd_3613] +RelativePath=JIT\Directed\cmov\Int_No_Op_cs_do\Int_No_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b22680.cmd_3614] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680\b22680.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBgt_Un_S.cmd_3615] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S\OpCodesBgt_Un_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxinterface_ro.cmd_3616] +RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_ro\boxunboxinterface_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldfld_mul.cmd_3617] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mul\_il_relldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31762.cmd_3618] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762\b31762.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TargetInvocationExceptionCtor2.cmd_3619] +RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2\TargetInvocationExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1406.cmd_3620] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1406\Generated1406\Generated1406.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1406\Generated1406 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45458.cmd_3621] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458\b45458.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyloop_d.cmd_3622] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_d\tryfinallyloop_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1613.cmd_3623] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1613\ConvertToUInt1613.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1613 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FormatExceptionCtor2.cmd_3624] +RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2\FormatExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally-struct01.cmd_3625] +RelativePath=baseservices\exceptions\generics\try-catch-finally-struct01\try-catch-finally-struct01.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_do.cmd_3626] +RelativePath=JIT\Methodical\NaN\arithm64_do\arithm64_do.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_And_Op_cs_ro.cmd_3627] +RelativePath=JIT\Directed\cmov\Double_And_Op_cs_ro\Double_And_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryContains.cmd_3628] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains\IDictionaryContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_2.cmd_3629] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_2\ConvertToInt32_2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2.cmd_3630] +RelativePath=JIT\jit64\regress\vsw\524070\test2\test2.cmd +WorkingDir=JIT\jit64\regress\vsw\524070\test2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_3631] +RelativePath=JIT\Directed\PREFIX\unaligned\2\initblk\initblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1382.cmd_3632] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1382\Generated1382\Generated1382.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1382\Generated1382 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_small.cmd_3633] +RelativePath=JIT\jit64\localloc\verify\verify01_small\verify01_small.cmd +WorkingDir=JIT\jit64\localloc\verify\verify01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[TreeInsert.cmd_3634] +RelativePath=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert\TreeInsert.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTicksPerSecond.cmd_3635] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond\TimeSpanTicksPerSecond.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesManagedMask.cmd_3636] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask\MethodImplAttributesManagedMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat5.cmd_3637] +RelativePath=CoreMangLib\cti\system\string\StringConcat5\StringConcat5.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxenum_do.cmd_3638] +RelativePath=JIT\Directed\nullabletypes\boxunboxenum_do\boxunboxenum_do.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1_cs_do.cmd_3639] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_do\xprecise1_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[date.cmd_3640] +RelativePath=Regressions\common\date\date.cmd +WorkingDir=Regressions\common\date +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_i4.cmd_3641] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i4\ldarg_s_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin1.cmd_3642] +RelativePath=CoreMangLib\cti\system\math\MathMin1\MathMin1.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_119.cmd_3643] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_119\GCSimulator_119.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_119 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated962.cmd_3644] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest962\Generated962\Generated962.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest962\Generated962 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated453.cmd_3645] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest453\Generated453\Generated453.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest453\Generated453 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated498.cmd_3646] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest498\Generated498\Generated498.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest498\Generated498 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1189.cmd_3647] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1189\Generated1189\Generated1189.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1189\Generated1189 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1b.cmd_3648] +RelativePath=JIT\Directed\StructPromote\SP1b\SP1b.cmd +WorkingDir=JIT\Directed\StructPromote\SP1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U2.cmd_3649] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2\OpCodesConv_Ovf_U2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71318.cmd_3650] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318\b71318.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_326.cmd_3651] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_326\GCSimulator_326.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_326 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcincatch_ro.cmd_3652] +RelativePath=JIT\Methodical\eh\interactions\gcincatch_ro\gcincatch_ro.cmd +WorkingDir=JIT\Methodical\eh\interactions\gcincatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfloat64_range2.cmd_3653] +RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range2\_il_relfloat64_range2.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_11.cmd_3654] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_11\ConvertToInt32_11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeStackBehaviourPop.cmd_3655] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop\OpCodeStackBehaviourPop.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesDeivce.cmd_3656] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce\FileAttributesDeivce.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytrycatch_r.cmd_3657] +RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_r\tryfinallytrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated616.cmd_3658] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest616\Generated616\Generated616.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest616\Generated616 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_i1.cmd_3659] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i1\_relrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_i8_i4.cmd_3660] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4\ldc_conv_ovf_i8_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowexcept_d.cmd_3661] +RelativePath=JIT\Methodical\eh\basics\trythrowexcept_d\trythrowexcept_d.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i4.cmd_3662] +RelativePath=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4\conv_ovf_i4.cmd +WorkingDir=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorector4.cmd_3663] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorector4\semaphorector4.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorector4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[revcomp.cmd_3664] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\revcomp\revcomp\revcomp.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\revcomp\revcomp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt323.cmd_3665] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt323\ConvertToUInt323.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04319.cmd_3666] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319\b04319.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenMethInlined_Multinested.cmd_3667] +RelativePath=Loader\classloader\TypeInitialization\Inlining\GenMethInlined_Multinested\GenMethInlined_Multinested.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\GenMethInlined_Multinested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTotalMinutes.cmd_3668] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes\TimeSpanTotalMinutes.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated952.cmd_3669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest952\Generated952\Generated952.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest952\Generated952 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b87285.cmd_3670] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285\b87285.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_r4.cmd_3671] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r4\_il_relhuge_r4.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-9-1.cmd_3672] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-9-1\L-1-9-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-9-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_876169_r.cmd_3673] +RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r\DevDiv_876169_r.cmd +WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListIndexOF.cmd_3674] +RelativePath=CoreMangLib\cti\system\array\ArrayIListIndexOF\ArrayIListIndexOF.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListIndexOF +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1a.cmd_3675] +RelativePath=JIT\Directed\StructPromote\SP1a\SP1a.cmd +WorkingDir=JIT\Directed\StructPromote\SP1a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_cs_il.cmd_3676] +RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il\_odbgsin_cs_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCtor5.cmd_3677] +RelativePath=CoreMangLib\cti\system\string\StringCtor5\StringCtor5.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCtor5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tail.cmd_3678] +RelativePath=JIT\Directed\pinvoke\tail\tail.cmd +WorkingDir=JIT\Directed\pinvoke\tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrotarg_valref.cmd_3679] +RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_valref\_dbgrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NoEnterObject.cmd_3680] +RelativePath=baseservices\threading\monitor\unownedlock\NoEnterObject\NoEnterObject.cmd +WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70992.cmd_3681] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992\b70992.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BBCnt1.cmd_3682] +RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt1\BBCnt1.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartLong_1.cmd_3683] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong_1\ThreadStartLong_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_calli.cmd_3684] +RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_calli\_il_relcastclass_calli.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf2.cmd_3685] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2\ArrayLastIndexOf2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit4.cmd_3686] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit4\_relexplicit4.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionGetHashCode.cmd_3687] +RelativePath=CoreMangLib\cti\system\version\VersionGetHashCode\VersionGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathRound4.cmd_3688] +RelativePath=CoreMangLib\cti\system\math\MathRound4\MathRound4.cmd +WorkingDir=CoreMangLib\cti\system\math\MathRound4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relhan3_ref.cmd_3689] +RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ref\_speed_relhan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_br.cmd_3690] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_br\c_br.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_br +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_151.cmd_3691] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_151\GCSimulator_151.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_151 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNrem_cs_d.cmd_3692] +RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_d\r4NaNrem_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_281.cmd_3693] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_281\GCSimulator_281.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_281 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_ref.cmd_3694] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref\ldloc_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[oponerror_r.cmd_3695] +RelativePath=JIT\Methodical\eh\leaves\oponerror_r\oponerror_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\oponerror_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1090.cmd_3696] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1090\Generated1090\Generated1090.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1090\Generated1090 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_6318.cmd_3697] +RelativePath=JIT\Regression\JitBlue\GitHub_6318\GitHub_6318\GitHub_6318.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_6318\GitHub_6318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1a_cs_r.cmd_3698] +RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_r\25param1a_cs_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_406156.cmd_3699] +RelativePath=JIT\Regression\JitBlue\DevDiv_406156\DevDiv_406156\DevDiv_406156.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_406156\DevDiv_406156 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_405852.cmd_3700] +RelativePath=JIT\Regression\JitBlue\DevDiv_405852\DevDiv_405852\DevDiv_405852.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_405852\DevDiv_405852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics034.cmd_3701] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034\box-unbox-generics034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1238.cmd_3702] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1238\Generated1238\Generated1238.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1238\Generated1238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_399.cmd_3703] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_399\GCSimulator_399.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_399 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1454.cmd_3704] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1454\Generated1454\Generated1454.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1454\Generated1454 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgrefanyval.cmd_3705] +RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval\_speed_dbgrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalGetBits.cmd_3706] +RelativePath=CoreMangLib\cti\system\decimal\DecimalGetBits\DecimalGetBits.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalGetBits +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange4.cmd_3707] +RelativePath=baseservices\threading\interlocked\exchange\exchange4\exchange4.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_ref.cmd_3708] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_ref\starg_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63732.cmd_3709] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732\b63732.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shr_u8.cmd_3710] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u8\shr_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NegativeCases.cmd_3711] +RelativePath=JIT\Directed\forceinlining\NegativeCases\NegativeCases.cmd +WorkingDir=JIT\Directed\forceinlining\NegativeCases +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_U2.cmd_3712] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2\_il_relldobj_U2.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32MaxValue.cmd_3713] +RelativePath=CoreMangLib\cti\system\uint32\UInt32MaxValue\UInt32MaxValue.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32MaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b81763.cmd_3714] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763\b81763.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated608.cmd_3715] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest608\Generated608\Generated608.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest608\Generated608 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27538.cmd_3716] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538\b27538.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_3717] +RelativePath=JIT\jit64\regress\vsw\336666\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\336666\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstvaluetype_ro.cmd_3718] +RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_ro\isinstvaluetype_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated676.cmd_3719] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest676\Generated676\Generated676.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest676\Generated676 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sealedclass.cmd_3720] +RelativePath=JIT\opt\Devirtualization\sealedclass\sealedclass.cmd +WorkingDir=JIT\opt\Devirtualization\sealedclass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68045.cmd_3721] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045\b68045.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_r.cmd_3722] +RelativePath=JIT\Directed\shift\uint8_r\uint8_r.cmd +WorkingDir=JIT\Directed\shift\uint8_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14364.cmd_3723] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364\b14364.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_long_1_r.cmd_3724] +RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_r\expl_long_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartChar_3.cmd_3725] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_3\ThreadStartChar_3.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1277.cmd_3726] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1277\Generated1277\Generated1277.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1277\Generated1277 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_233.cmd_3727] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_233\GCSimulator_233.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_233 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharToString2.cmd_3728] +RelativePath=CoreMangLib\cti\system\char\CharToString2\CharToString2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgisinst_ldarg.cmd_3729] +RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldarg\_dbgisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated71.cmd_3730] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest71\Generated71\Generated71.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest71\Generated71 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated259.cmd_3731] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest259\Generated259\Generated259.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest259\Generated259 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgnative.cmd_3732] +RelativePath=JIT\Methodical\refany\_speed_dbgnative\_speed_dbgnative.cmd +WorkingDir=JIT\Methodical\refany\_speed_dbgnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_i4.cmd_3733] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4\ldc_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated483.cmd_3734] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest483\Generated483\Generated483.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest483\Generated483 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1044.cmd_3735] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1044\Generated1044\Generated1044.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1044\Generated1044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_class01.cmd_3736] +RelativePath=JIT\Generics\Locals\static_equalnull_class01\static_equalnull_class01.cmd +WorkingDir=JIT\Generics\Locals\static_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Version_Parsing.cmd_3737] +RelativePath=CoreMangLib\system\version\Version_Parsing\Version_Parsing.cmd +WorkingDir=CoreMangLib\system\version\Version_Parsing +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1291.cmd_3738] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1291\Generated1291\Generated1291.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1291\Generated1291 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_switch.cmd_3739] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_switch\c_switch.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion6.cmd_3740] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion6\NullCheckAssertion6.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[oddsize.cmd_3741] +RelativePath=JIT\Directed\RVAInit\oddsize\oddsize.cmd +WorkingDir=JIT\Directed\RVAInit\oddsize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeMakeArrayType1.cmd_3742] +RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType1\TypeMakeArrayType1.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit4_ro.cmd_3743] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro\tryCatchFinallyThrow_nonlocalexit4_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1129.cmd_3744] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1129\Generated1129\Generated1129.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1129\Generated1129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1c.cmd_3745] +RelativePath=JIT\Directed\StructPromote\SP1c\SP1c.cmd +WorkingDir=JIT\Directed\StructPromote\SP1c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b73079.cmd_3746] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079\b73079.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1486.cmd_3747] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1486\Generated1486\Generated1486.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1486\Generated1486 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_CoreRT_2073.cmd_3748] +RelativePath=JIT\Regression\JitBlue\GitHub_CoreRT_2073\GitHub_CoreRT_2073\GitHub_CoreRT_2073.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_CoreRT_2073\GitHub_CoreRT_2073 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[double_cs_r.cmd_3749] +RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_r\double_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop2_cs_do.cmd_3750] +RelativePath=JIT\Directed\UnrollLoop\loop2_cs_do\loop2_cs_do.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcastclass_ldarg.cmd_3751] +RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg\_dbgcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableToString.cmd_3752] +RelativePath=CoreMangLib\cti\system\nullable\NullableToString\NullableToString.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waithandlewaitone1.cmd_3753] +RelativePath=baseservices\threading\waithandle\misc\waithandlewaitone1\waithandlewaitone1.cmd +WorkingDir=baseservices\threading\waithandle\misc\waithandlewaitone1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPVar.cmd_3754] +RelativePath=JIT\CodeGenBringUpTests\FPVar\FPVar.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPVar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldfld_mulovf.cmd_3755] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf\_speed_dbgldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value031.cmd_3756] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031\box-unbox-value031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyloop_ro.cmd_3757] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_ro\tryfinallyloop_ro.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relnested.cmd_3758] +RelativePath=JIT\Methodical\VT\etc\_speed_relnested\_speed_relnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToUInt16.cmd_3759] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16\SByteIConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_r_loop_try.cmd_3760] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop_try\mixedexpr1_r_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt329.cmd_3761] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt329\ConvertToUInt329.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intarr_cs_do.cmd_3762] +RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_do\intarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MatInv4.cmd_3763] +RelativePath=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4\MatInv4.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToType.cmd_3764] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType\BooleanIConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b173569.cmd_3765] +RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569\b173569.cmd +WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_398410.cmd_3766] +RelativePath=Loader\classloader\regressions\dev10_398410\dev10_398410\dev10_398410.cmd +WorkingDir=Loader\classloader\regressions\dev10_398410\dev10_398410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2a_cs_do.cmd_3767] +RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_do\25param2a_cs_do.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13738.cmd_3768] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738\b13738.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b356258.cmd_3769] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258\b356258.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToSByte.cmd_3770] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte\DoubleIConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesReparsePoint.cmd_3771] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint\FileAttributesReparsePoint.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv2_10623.cmd_3772] +RelativePath=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623\DevDiv2_10623.cmd +WorkingDir=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_255294.cmd_3773] +RelativePath=JIT\Regression\JitBlue\DevDiv_255294\DevDiv_255294\DevDiv_255294.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_255294\DevDiv_255294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax7.cmd_3774] +RelativePath=CoreMangLib\cti\system\math\MathMax7\MathMax7.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FunctionPtrTest.cmd_3775] +RelativePath=Interop\MarshalAPI\FunctionPointer\FunctionPtrTest\FunctionPtrTest.cmd +WorkingDir=Interop\MarshalAPI\FunctionPointer\FunctionPtrTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf4.cmd_3776] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4\ArrayIndexOf4.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread16.cmd_3777] +RelativePath=baseservices\threading\generics\TimerCallback\thread16\thread16.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullsdarr.cmd_3778] +RelativePath=JIT\Directed\coverage\importer\nullsdarr\nullsdarr.cmd +WorkingDir=JIT\Directed\coverage\importer\nullsdarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated526.cmd_3779] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest526\Generated526\Generated526.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest526\Generated526 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated206.cmd_3780] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest206\Generated206\Generated206.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest206\Generated206 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w5d_cs_d.cmd_3781] +RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_d\10w5d_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetChars1.cmd_3782] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars1\EncodingGetChars1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated530.cmd_3783] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest530\Generated530\Generated530.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest530\Generated530 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesReuseSlot.cmd_3784] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot\MethodAttributesReuseSlot.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAA_r.cmd_3785] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r\CGRecurseAAA_r.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated969.cmd_3786] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest969\Generated969\Generated969.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest969\Generated969 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_byte_1_r.cmd_3787] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r\expl_gc_byte_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsizeof.cmd_3788] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof\_il_dbgsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_5047.cmd_3789] +RelativePath=JIT\Regression\JitBlue\GitHub_5047\GitHub_5047\GitHub_5047.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_5047\GitHub_5047 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySetValue2.cmd_3790] +RelativePath=CoreMangLib\cti\system\array\ArraySetValue2\ArraySetValue2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1465.cmd_3791] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1465\Generated1465\Generated1465.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1465\Generated1465 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_r.cmd_3792] +RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_r\stfldstatic1_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsizeof.cmd_3793] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof\_il_dbgsizeof.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44983.cmd_3794] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983\b44983.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackEnumeratorDispose.cmd_3795] +RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose\StackEnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bouncingball_cs_d.cmd_3796] +RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_d\bouncingball_cs_d.cmd +WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfilter_r.cmd_3797] +RelativePath=JIT\Methodical\eh\basics\throwinfilter_r\throwinfilter_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfilter_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49644.cmd_3798] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644\b49644.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Int16IConvertibleToDecimal.cmd_3799] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal\Int16IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblAddConst.cmd_3800] +RelativePath=JIT\CodeGenBringUpTests\DblAddConst\DblAddConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblAddConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit3_il_r.cmd_3801] +RelativePath=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r\prefldinit3_il_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics016.cmd_3802] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016\box-unbox-generics016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i75.cmd_3803] +RelativePath=JIT\jit64\mcc\interop\mcc_i75\mcc_i75.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i75 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandlenull.cmd_3804] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandlenull\bindhandlenull.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandlenull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01b_auto_ser.cmd_3805] +RelativePath=Loader\classloader\generics\Layout\General\Base01b_auto_ser\Base01b_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01b_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lifetime1.cmd_3806] +RelativePath=JIT\Directed\lifetime\lifetime1\lifetime1.cmd +WorkingDir=JIT\Directed\lifetime\lifetime1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface003.cmd_3807] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003\castclass-interface003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_I.cmd_3808] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I\OpCodesConv_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41149.cmd_3809] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149\b41149.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[global_il_r.cmd_3810] +RelativePath=JIT\Methodical\cctor\misc\global_il_r\global_il_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\global_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[TryCatchFinally.cmd_3811] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\TryCatchFinally\TryCatchFinally.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\TryCatchFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[devdiv_174983.cmd_3812] +RelativePath=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983\devdiv_174983.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_865840.cmd_3813] +RelativePath=JIT\Regression\Dev11\dev10_865840\dev10_865840\dev10_865840.cmd +WorkingDir=JIT\Regression\Dev11\dev10_865840\dev10_865840 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2445;EXCLUDED +HostStyle=0 + +[arithm64_cs_d.cmd_3814] +RelativePath=JIT\Methodical\NaN\arithm64_cs_d\arithm64_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingEquals.cmd_3815] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingEquals\EncodingEquals.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated728.cmd_3816] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest728\Generated728\Generated728.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest728\Generated728 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36274.cmd_3817] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274\b36274.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_ep.cmd_3818] +RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep\_il_relrecurse_ep.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[faultbeforetrybody_r.cmd_3819] +RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_r\faultbeforetrybody_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple.cmd_3820] +RelativePath=JIT\Directed\RVAInit\simple\simple.cmd +WorkingDir=JIT\Directed\RVAInit\simple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_219.cmd_3821] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_219\GCSimulator_219.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b434481_GenericRecurInit.cmd_3822] +RelativePath=Loader\classloader\regressions\434481\b434481_GenericRecurInit\b434481_GenericRecurInit.cmd +WorkingDir=Loader\classloader\regressions\434481\b434481_GenericRecurInit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated902.cmd_3823] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest902\Generated902\Generated902.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest902\Generated902 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16224.cmd_3824] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224\b16224.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgval_ctor_newobj.cmd_3825] +RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj\_il_dbgval_ctor_newobj.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45985.cmd_3826] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985\b45985.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfault_r.cmd_3827] +RelativePath=JIT\Methodical\eh\basics\tryfault_r\tryfault_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfault_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_r.cmd_3828] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_r\simpleexpr4_r.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[muldimjagary.cmd_3829] +RelativePath=GC\Scenarios\muldimjagary\muldimjagary\muldimjagary.cmd +WorkingDir=GC\Scenarios\muldimjagary\muldimjagary +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[GCSimulator_261.cmd_3830] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_261\GCSimulator_261.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_261 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13621.cmd_3831] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621\b13621.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b169333.cmd_3832] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333\b169333.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated140.cmd_3833] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest140\Generated140\Generated140.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest140\Generated140 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotSupportedExceptionCtor1.cmd_3834] +RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1\NotSupportedExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LPTSTRTest.cmd_3835] +RelativePath=Interop\StringMarshalling\LPTSTR\LPTSTRTest\LPTSTRTest.cmd +WorkingDir=Interop\StringMarshalling\LPTSTR\LPTSTRTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_48.cmd_3836] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_48\GCSimulator_48.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_48 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1314.cmd_3837] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1314\Generated1314\Generated1314.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1314\Generated1314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToChar.cmd_3838] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar\UInt32IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26957.cmd_3839] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957\b26957.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics008.cmd_3840] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008\box-unbox-generics008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[regionLive.cmd_3841] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\regionLive\regionLive.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\regionLive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMatrix_ro.cmd_3842] +RelativePath=JIT\SIMD\VectorMatrix_ro\VectorMatrix_ro.cmd +WorkingDir=JIT\SIMD\VectorMatrix_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U2_Un.cmd_3843] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un\OpCodesConv_Ovf_U2_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25paramMixed_il_r.cmd_3844] +RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_r\25paramMixed_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SqrtGeneric_r.cmd_3845] +RelativePath=JIT\SIMD\SqrtGeneric_r\SqrtGeneric_r.cmd +WorkingDir=JIT\SIMD\SqrtGeneric_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2B_d.cmd_3846] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_d\hfa_sf2B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch4.cmd_3847] +RelativePath=JIT\Methodical\switch\switch4\switch4.cmd +WorkingDir=JIT\Methodical\switch\switch4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b58360.cmd_3848] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360\b58360.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1142.cmd_3849] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1142\Generated1142\Generated1142.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1142\Generated1142 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfloat64_range1.cmd_3850] +RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range1\_il_relfloat64_range1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[347011.cmd_3851] +RelativePath=baseservices\threading\regressions\beta1\347011\347011.cmd +WorkingDir=baseservices\threading\regressions\beta1\347011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartSByte_2.cmd_3852] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_2\ThreadStartSByte_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48805.cmd_3853] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805\b48805.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64ToString2.cmd_3854] +RelativePath=CoreMangLib\cti\system\uint64\UInt64ToString2\UInt64ToString2.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64ToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyincatchtry_d.cmd_3855] +RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d\tryfinallyincatchtry_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte8.cmd_3856] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte8\ConvertToByte8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateRemove.cmd_3857] +RelativePath=CoreMangLib\cti\system\delegate\DelegateRemove\DelegateRemove.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_objref.cmd_3858] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_objref\_il_dbghuge_objref.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesClt_Un.cmd_3859] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un\OpCodesClt_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullable.cmd_3860] +RelativePath=Regressions\coreclr\0044\nullable\nullable.cmd +WorkingDir=Regressions\coreclr\0044\nullable +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ver_fg_13.cmd_3861] +RelativePath=JIT\jit64\verif\sniff\fg\ver_fg_13\ver_fg_13.cmd +WorkingDir=JIT\jit64\verif\sniff\fg\ver_fg_13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringPadLeft1.cmd_3862] +RelativePath=CoreMangLib\cti\system\string\StringPadLeft1\StringPadLeft1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadLeft1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[longinccheckreturn.cmd_3863] +RelativePath=baseservices\threading\interlocked\checkreturn\longinccheckreturn\longinccheckreturn.cmd +WorkingDir=baseservices\threading\interlocked\checkreturn\longinccheckreturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgctor_recurse.cmd_3864] +RelativePath=JIT\Methodical\VT\etc\_dbgctor_recurse\_dbgctor_recurse.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbgctor_recurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1367.cmd_3865] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1367\Generated1367\Generated1367.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1367\Generated1367 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08797.cmd_3866] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797\b08797.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array4.cmd_3867] +RelativePath=JIT\CodeGenBringUpTests\Array4\Array4.cmd +WorkingDir=JIT\CodeGenBringUpTests\Array4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_18.cmd_3868] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_18\GCSimulator_18.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyaftercatch_d.cmd_3869] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d\rethrowinfinallyaftercatch_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend12.cmd_3870] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12\StringBuilderAppend12.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeOpenOrCreate.cmd_3871] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate\FileModeOpenOrCreate.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictEnumIDictEnumget_Entry.cmd_3872] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry\DictEnumIDictEnumget_Entry.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexitnestedintrycatch_ro.cmd_3873] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro\simplenonlocalexitnestedintrycatch_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relmdarray.cmd_3874] +RelativePath=JIT\Methodical\xxobj\operand\_il_relmdarray\_il_relmdarray.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_relmdarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarga_S.cmd_3875] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S\OpCodesLdarga_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[field_tests.cmd_3876] +RelativePath=JIT\Directed\PREFIX\volatile\1\field_tests\field_tests.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\field_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28037.cmd_3877] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037\b28037.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalSubtract.cmd_3878] +RelativePath=CoreMangLib\cti\system\decimal\DecimalSubtract\DecimalSubtract.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalSubtract +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToDouble.cmd_3879] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDouble\CharIConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samethrowtwice_d.cmd_3880] +RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_d\samethrowtwice_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07900.cmd_3881] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900\b07900.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesManaged.cmd_3882] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged\MethodImplAttributesManaged.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StrSwitchFinally.cmd_3883] +RelativePath=baseservices\exceptions\unittests\StrSwitchFinally\StrSwitchFinally.cmd +WorkingDir=baseservices\exceptions\unittests\StrSwitchFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit7.cmd_3884] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit7\_opt_relexplicit7.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated6.cmd_3885] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest6\Generated6\Generated6.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest6\Generated6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface001.cmd_3886] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001\box-unbox-interface001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_r4.cmd_3887] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r4\add_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_int32.cmd_3888] +RelativePath=JIT\Directed\zeroinit\init_int32\init_int32.cmd +WorkingDir=JIT\Directed\zeroinit\init_int32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_r8_i.cmd_3889] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i\conv_ovf_r8_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31917.cmd_3890] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917\b31917.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method003.cmd_3891] +RelativePath=Loader\classloader\generics\Variance\Methods\Method003\Method003.cmd +WorkingDir=Loader\classloader\generics\Variance\Methods\Method003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b103838.cmd_3892] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838\b103838.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPCall1.cmd_3893] +RelativePath=JIT\CodeGenBringUpTests\FPCall1\FPCall1.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPCall1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorMoveNext.cmd_3894] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rvastatic2.cmd_3895] +RelativePath=JIT\Directed\rvastatics\rvastatic2\rvastatic2.cmd +WorkingDir=JIT\Directed\rvastatics\rvastatic2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[GCSimulator_211.cmd_3896] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_211\GCSimulator_211.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_211 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1095.cmd_3897] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1095\Generated1095\Generated1095.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1095\Generated1095 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278365.cmd_3898] +RelativePath=JIT\Regression\JitBlue\DevDiv_278365\DevDiv_278365\DevDiv_278365.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278365\DevDiv_278365 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_R4.cmd_3899] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4\OpCodesLdelem_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated555.cmd_3900] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest555\Generated555\Generated555.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest555\Generated555 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_short_1_d.cmd_3901] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_d\seq_gc_short_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_38.cmd_3902] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_38\GCSimulator_38.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_38 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_3903] +RelativePath=JIT\jit64\regress\vsw\543645\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\543645\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b220968.cmd_3904] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968\b220968.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1212.cmd_3905] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1212\Generated1212\Generated1212.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1212\Generated1212 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PathTooLongExceptionctor1.cmd_3906] +RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1\PathTooLongExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToSByte.cmd_3907] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToSByte\StringIConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNmul_cs_do.cmd_3908] +RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_do\r8NaNmul_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToDouble.cmd_3909] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble\BooleanIConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refs.cmd_3910] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\refs\refs.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\refs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated660.cmd_3911] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest660\Generated660\Generated660.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest660\Generated660 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_279396.cmd_3912] +RelativePath=JIT\Regression\JitBlue\DevDiv_279396\DevDiv_279396\DevDiv_279396.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_279396\DevDiv_279396 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesPreserveSig.cmd_3913] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig\MethodImplAttributesPreserveSig.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i82.cmd_3914] +RelativePath=JIT\jit64\mcc\interop\mcc_i82\mcc_i82.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i82 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[OpCodesSub.cmd_3915] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub\OpCodesSub.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyKeyNameAttributeCtor.cmd_3916] +RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor\AssemblyKeyNameAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_3917] +RelativePath=JIT\jit64\regress\vsw\568666\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\568666\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1333.cmd_3918] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1333\Generated1333\Generated1333.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1333\Generated1333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMul_r.cmd_3919] +RelativePath=JIT\SIMD\VectorMul_r\VectorMul_r.cmd +WorkingDir=JIT\SIMD\VectorMul_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread17.cmd_3920] +RelativePath=baseservices\threading\generics\threadstart\GThread17\GThread17.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PropertyAttributesSpecialName.cmd_3921] +RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName\PropertyAttributesSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumerableGetEnumerator.cmd_3922] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingUnicode.cmd_3923] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUnicode\EncodingUnicode.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUnicode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GoryNativePast.cmd_3924] +RelativePath=baseservices\exceptions\unittests\GoryNativePast\GoryNativePast.cmd +WorkingDir=baseservices\exceptions\unittests\GoryNativePast +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05477.cmd_3925] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477\b05477.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldsfld_mulovf.cmd_3926] +RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf\_rels_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[caninline_do.cmd_3927] +RelativePath=JIT\jit64\opt\inl\caninline_do\caninline_do.cmd +WorkingDir=JIT\jit64\opt\inl\caninline_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b115103.cmd_3928] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103\b115103.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_r.cmd_3929] +RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r\stfldstatic1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I2.cmd_3930] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2\OpCodesConv_Ovf_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[2branchesoutoftry_r.cmd_3931] +RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_r\2branchesoutoftry_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overldrem_cs_do.cmd_3932] +RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_do\overldrem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BinaryRMW.cmd_3933] +RelativePath=JIT\CodeGenBringUpTests\BinaryRMW\BinaryRMW.cmd +WorkingDir=JIT\CodeGenBringUpTests\BinaryRMW +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal10.cmd_3934] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal10\ConvertToDecimal10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldfld_mulovf.cmd_3935] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf\_il_rels_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_316.cmd_3936] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_316\GCSimulator_316.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_316 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated149.cmd_3937] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest149\Generated149\Generated149.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest149\Generated149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1258.cmd_3938] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1258\Generated1258\Generated1258.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1258\Generated1258 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow2_cs_d.cmd_3939] +RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_d\pow2_cs_d.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated165.cmd_3940] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest165\Generated165\Generated165.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest165\Generated165 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated243.cmd_3941] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest243\Generated243\Generated243.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest243\Generated243 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionMajor.cmd_3942] +RelativePath=CoreMangLib\cti\system\version\VersionMajor\VersionMajor.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionMajor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Target.cmd_3943] +RelativePath=GC\API\WeakReference\Target\Target.cmd +WorkingDir=GC\API\WeakReference\Target +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated279.cmd_3944] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest279\Generated279\Generated279.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest279\Generated279 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_i8.cmd_3945] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i8\ble_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lohcompactscenariorepro.cmd_3946] +RelativePath=GC\Features\LOHCompaction\lohcompactscenariorepro\lohcompactscenariorepro.cmd +WorkingDir=GC\Features\LOHCompaction\lohcompactscenariorepro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4flat_cs_r.cmd_3947] +RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_r\r4flat_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated515.cmd_3948] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest515\Generated515\Generated515.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest515\Generated515 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_cs_ro.cmd_3949] +RelativePath=JIT\Methodical\NaN\arithm32_cs_ro\arithm32_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_r.cmd_3950] +RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_r\stfldstatic1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_cs_do.cmd_3951] +RelativePath=JIT\Directed\shift\int32_cs_do\int32_cs_do.cmd +WorkingDir=JIT\Directed\shift\int32_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[longdec.cmd_3952] +RelativePath=baseservices\threading\interlocked\decrement\longdec\longdec.cmd +WorkingDir=baseservices\threading\interlocked\decrement\longdec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-01_cs_d.cmd_3953] +RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_d\3w1d-01_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rvastatic4.cmd_3954] +RelativePath=JIT\Directed\rvastatics\rvastatic4\rvastatic4.cmd +WorkingDir=JIT\Directed\rvastatics\rvastatic4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[mul4.cmd_3955] +RelativePath=JIT\CodeGenBringUpTests\mul4\mul4.cmd +WorkingDir=JIT\CodeGenBringUpTests\mul4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarga.cmd_3956] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga\OpCodesLdarga.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp5_1.cmd_3957] +RelativePath=JIT\jit64\gc\misc\structfp5_1\structfp5_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp5_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_struct.cmd_3958] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_struct\_il_relhuge_struct.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_struct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads1_cs_ro.cmd_3959] +RelativePath=JIT\Methodical\cctor\misc\threads1_cs_ro\threads1_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcatchfinally.cmd_3960] +RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally\_dbgcatchfinally.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_struct01.cmd_3961] +RelativePath=JIT\Generics\Fields\instance_assignment_struct01\instance_assignment_struct01.cmd +WorkingDir=JIT\Generics\Fields\instance_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated944.cmd_3962] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest944\Generated944\Generated944.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest944\Generated944 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObsoleteAttributeCtor3.cmd_3963] +RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3\ObsoleteAttributeCtor3.cmd +WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetBytes4.cmd_3964] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4\EncodingGetBytes4.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_7906.cmd_3965] +RelativePath=JIT\Regression\JitBlue\GitHub_7906\GitHub_7906\GitHub_7906.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_7906\GitHub_7906 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41129.cmd_3966] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129\b41129.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12685 +HostStyle=0 + +[thread21.cmd_3967] +RelativePath=baseservices\threading\generics\WaitCallback\thread21\thread21.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_252.cmd_3968] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_252\GCSimulator_252.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_252 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect1.cmd_3969] +RelativePath=GC\API\GC\Collect1\Collect1.cmd +WorkingDir=GC\API\GC\Collect1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_SideAffects.cmd_3970] +RelativePath=JIT\opt\Inline\tests\Inline_SideAffects\Inline_SideAffects.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_SideAffects +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem1.cmd_3971] +RelativePath=JIT\CodeGenBringUpTests\rem1\rem1.cmd +WorkingDir=JIT\CodeGenBringUpTests\rem1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanEquals3.cmd_3972] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals3\TimeSpanEquals3.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbsGeneric_r.cmd_3973] +RelativePath=JIT\SIMD\AbsGeneric_r\AbsGeneric_r.cmd +WorkingDir=JIT\SIMD\AbsGeneric_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesFamily.cmd_3974] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily\MethodAttributesFamily.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgconv_i8_i.cmd_3975] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i\_il_dbgconv_i8_i.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i1_un.cmd_3976] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un\conv_ovf_i1_un.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringEquals6.cmd_3977] +RelativePath=CoreMangLib\cti\system\string\StringEquals6\StringEquals6.cmd +WorkingDir=CoreMangLib\cti\system\string\StringEquals6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[constructor_d.cmd_3978] +RelativePath=JIT\Directed\nullabletypes\constructor_d\constructor_d.cmd +WorkingDir=JIT\Directed\nullabletypes\constructor_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Positive010.cmd_3979] +RelativePath=Loader\classloader\generics\Layout\Specific\Positive010\Positive010.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Positive010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayReserse2.cmd_3980] +RelativePath=CoreMangLib\cti\system\array\ArrayReserse2\ArrayReserse2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayReserse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar13.cmd_3981] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar13\ConvertToChar13.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop4_cs_r.cmd_3982] +RelativePath=JIT\Directed\UnrollLoop\loop4_cs_r\loop4_cs_r.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CLSCompliantAttributeCtor.cmd_3983] +RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor\CLSCompliantAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorReturn_ro.cmd_3984] +RelativePath=JIT\SIMD\VectorReturn_ro\VectorReturn_ro.cmd +WorkingDir=JIT\SIMD\VectorReturn_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_TimerNullRefEx.cmd_3985] +RelativePath=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx\CS_TimerNullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_class01.cmd_3986] +RelativePath=JIT\Generics\Parameters\static_equalnull_class01\static_equalnull_class01.cmd +WorkingDir=JIT\Generics\Parameters\static_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_154.cmd_3987] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_154\GCSimulator_154.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_154 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[params-value.cmd_3988] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value\params-value.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1206.cmd_3989] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1206\Generated1206\Generated1206.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1206\Generated1206 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102533.cmd_3990] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533\b102533.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DDB125472_GetHashCode.cmd_3991] +RelativePath=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode\DDB125472_GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToDecimal.cmd_3992] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal\ByteIConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort13.cmd_3993] +RelativePath=CoreMangLib\cti\system\array\ArraySort13\ArraySort13.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_d_loop_try.cmd_3994] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_d_loop_try\arrayexpr2_d_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_d_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_d.cmd_3995] +RelativePath=JIT\Methodical\NaN\arithm64_d\arithm64_d.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06464.cmd_3996] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464\b06464.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2B_d.cmd_3997] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_d\hfa_nf2B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ToFromIntPtr.cmd_3998] +RelativePath=GC\API\GCHandle\ToFromIntPtr\ToFromIntPtr.cmd +WorkingDir=GC\API\GCHandle\ToFromIntPtr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvalftn.cmd_3999] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn\_il_relvalftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileShareReadWrite.cmd_4000] +RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite\FileShareReadWrite.cmd +WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret2_1.cmd_4001] +RelativePath=JIT\jit64\gc\misc\structret2_1\structret2_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret2_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringReplace1.cmd_4002] +RelativePath=CoreMangLib\cti\system\string\StringReplace1\StringReplace1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringReplace1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter3_r.cmd_4003] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r\throwinfinallyintryfilter3_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow04_add.cmd_4004] +RelativePath=JIT\jit64\rtchecks\overflow\overflow04_add\overflow04_add.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_il_d.cmd_4005] +RelativePath=JIT\Generics\ConstrainedCall\vt3_il_d\vt3_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread13.cmd_4006] +RelativePath=baseservices\threading\generics\syncdelegate\GThread13\GThread13.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30792.cmd_4007] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792\b30792.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[regalloc1.cmd_4008] +RelativePath=JIT\Directed\intrinsic\interlocked\regalloc1\regalloc1.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_i.cmd_4009] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i\ldind_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28594.cmd_4010] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594\b28594.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter2_r.cmd_4011] +RelativePath=JIT\Directed\leave\filter2_r\filter2_r.cmd +WorkingDir=JIT\Directed\leave\filter2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_5437.cmd_4012] +RelativePath=JIT\Regression\Dev11\Dev11_5437\Dev11_5437\Dev11_5437.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_5437\Dev11_5437 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToDouble.cmd_4013] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble\ByteIConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics016.cmd_4014] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016\castclass-generics016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1471.cmd_4015] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1471\Generated1471\Generated1471.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1471\Generated1471 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CtorFromArray_r.cmd_4016] +RelativePath=JIT\SIMD\CtorFromArray_r\CtorFromArray_r.cmd +WorkingDir=JIT\SIMD\CtorFromArray_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brfalse.cmd_4017] +RelativePath=JIT\IL_Conformance\Old\Base\brfalse\brfalse.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\brfalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[basefinal.cmd_4018] +RelativePath=GC\Scenarios\BaseFinal\basefinal\basefinal.cmd +WorkingDir=GC\Scenarios\BaseFinal\basefinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryItem.cmd_4019] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem\DictionaryIDictionaryItem.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret3_2.cmd_4020] +RelativePath=JIT\jit64\gc\misc\structret3_2\structret3_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret3_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call03_large.cmd_4021] +RelativePath=JIT\jit64\localloc\call\call03_large\call03_large.cmd +WorkingDir=JIT\jit64\localloc\call\call03_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_393447.cmd_4022] +RelativePath=Loader\classloader\generics\regressions\dev10_393447\dev10_393447\dev10_393447.cmd +WorkingDir=Loader\classloader\generics\regressions\dev10_393447\dev10_393447 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeUsageAttributeCtor.cmd_4023] +RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor\AttributeUsageAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_18.cmd_4024] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_18\ConvertToInt32_18.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_enum.cmd_4025] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_enum\_il_relcompat_enum.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_enum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51875.cmd_4026] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875\b51875.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP2.cmd_4027] +RelativePath=JIT\Directed\StructPromote\SP2\SP2.cmd +WorkingDir=JIT\Directed\StructPromote\SP2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LongArgsAndReturn.cmd_4028] +RelativePath=JIT\CodeGenBringUpTests\LongArgsAndReturn\LongArgsAndReturn.cmd +WorkingDir=JIT\CodeGenBringUpTests\LongArgsAndReturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SpAddrAT.cmd_4029] +RelativePath=JIT\Directed\StructPromote\SpAddrAT\SpAddrAT.cmd +WorkingDir=JIT\Directed\StructPromote\SpAddrAT +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class05.cmd_4030] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05\class05.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10841.cmd_4031] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841\b10841.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_r_loop.cmd_4032] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop\staticFieldExpr1_r_loop.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcast_throw.cmd_4033] +RelativePath=JIT\Methodical\casts\SEH\_dbgcast_throw\_dbgcast_throw.cmd +WorkingDir=JIT\Methodical\casts\SEH\_dbgcast_throw +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_178.cmd_4034] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_178\GCSimulator_178.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_178 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReRegisterForFinalize.cmd_4035] +RelativePath=GC\API\GC\ReRegisterForFinalize\ReRegisterForFinalize.cmd +WorkingDir=GC\API\GC\ReRegisterForFinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BinarySearch2.cmd_4036] +RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch2\BinarySearch2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b452707.cmd_4037] +RelativePath=Loader\classloader\regressions\452707\b452707\b452707.cmd +WorkingDir=Loader\classloader\regressions\452707\b452707 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1C_r.cmd_4038] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_r\hfa_nf1C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter018.cmd_4039] +RelativePath=baseservices\exceptions\generics\TypeParameter018\TypeParameter018.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_struct01.cmd_4040] +RelativePath=JIT\Generics\Fields\instance_passing_struct01\instance_passing_struct01.cmd +WorkingDir=JIT\Generics\Fields\instance_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_funcptr_gc_r.cmd_4041] +RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r\seq_funcptr_gc_r.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSub_r.cmd_4042] +RelativePath=JIT\SIMD\VectorSub_r\VectorSub_r.cmd +WorkingDir=JIT\SIMD\VectorSub_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_r8.cmd_4043] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r8\ldloca_s_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-02_cs_r.cmd_4044] +RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_r\3w1d-02_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02353.cmd_4045] +RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353\b02353.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedFamORAssem.cmd_4046] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem\TypeAttributesNestedFamORAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Parse2.cmd_4047] +RelativePath=CoreMangLib\cti\system\int\Int32Parse2\Int32Parse2.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp6_1.cmd_4048] +RelativePath=JIT\jit64\gc\misc\structfp6_1\structfp6_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp6_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_7.cmd_4049] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_7\GCSimulator_7.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relfault.cmd_4050] +RelativePath=JIT\Methodical\Boxing\seh\_relfault\_relfault.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_relfault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit2_il_r.cmd_4051] +RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_r\prefldinit2_il_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1309.cmd_4052] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1309\Generated1309\Generated1309.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1309\Generated1309 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_i1.cmd_4053] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i1\_il_relrefloc_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16423.cmd_4054] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423\b16423.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[OpCodeToString.cmd_4055] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString\OpCodeToString.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relctor_recurse.cmd_4056] +RelativePath=JIT\Methodical\VT\etc\_speed_relctor_recurse\_speed_relctor_recurse.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relctor_recurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null027.cmd_4057] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027\castclass-null027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge.cmd_4058] +RelativePath=JIT\IL_Conformance\Old\Base\bge\bge.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_279829.cmd_4059] +RelativePath=JIT\Regression\JitBlue\DevDiv_279829\DevDiv_279829\DevDiv_279829.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_279829\DevDiv_279829 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex3a.cmd_4060] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex3a\waitoneex3a.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex3a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex7a.cmd_4061] +RelativePath=baseservices\threading\waithandle\waitall\waitallex7a\waitallex7a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex7a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_MRENullRefEx.cmd_4062] +RelativePath=baseservices\threading\coverage\Nullref\CS_MRENullRefEx\CS_MRENullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_MRENullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated741.cmd_4063] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest741\Generated741\Generated741.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest741\Generated741 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBlt.cmd_4064] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt\OpCodesBlt.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeSize.cmd_4065] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize\OpCodeSize.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64MinValue.cmd_4066] +RelativePath=CoreMangLib\cti\system\uint64\UInt64MinValue\UInt64MinValue.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64MinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar6.cmd_4067] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar6\ConvertToChar6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort12.cmd_4068] +RelativePath=CoreMangLib\cti\system\array\ArraySort12\ArraySort12.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesFamily.cmd_4069] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily\FieldAttributesFamily.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null043.cmd_4070] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043\castclass-null043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_flood.cmd_4071] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood\_il_dbgi_flood.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest_cs_ro.cmd_4072] +RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro\ctest_cs_ro.cmd +WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[largearraytest.cmd_4073] +RelativePath=GC\LargeMemory\Regressions\largearraytest\largearraytest.cmd +WorkingDir=GC\LargeMemory\Regressions\largearraytest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_cs_d.cmd_4074] +RelativePath=JIT\Directed\shift\uint32_cs_d\uint32_cs_d.cmd +WorkingDir=JIT\Directed\shift\uint32_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_56.cmd_4075] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_56\GCSimulator_56.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_56 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToInt32.cmd_4076] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32\SByteIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSingle13.cmd_4077] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle13\ConvertToSingle13.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interface_struct01.cmd_4078] +RelativePath=JIT\Generics\MemberAccess\interface_struct01\interface_struct01.cmd +WorkingDir=JIT\Generics\MemberAccess\interface_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1116.cmd_4079] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1116\Generated1116\Generated1116.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1116\Generated1116 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase5_Nested_I.cmd_4080] +RelativePath=Loader\classloader\InterfaceFolding\TestCase5_Nested_I\TestCase5_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase5_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test3.cmd_4081] +RelativePath=JIT\jit64\gc\misc\test3\test3.cmd +WorkingDir=JIT\jit64\gc\misc\test3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics003.cmd_4082] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003\box-unbox-generics003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToString3.cmd_4083] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToString3\DecimalToString3.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30125.cmd_4084] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125\b30125.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interfaceCall.cmd_4085] +RelativePath=JIT\opt\Inline\tests\interfaceCall\interfaceCall.cmd +WorkingDir=JIT\opt\Inline\tests\interfaceCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04306.cmd_4086] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306\b04306.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanGetHashCode.cmd_4087] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode\TimeSpanGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relvirtcall.cmd_4088] +RelativePath=JIT\Methodical\refany\_speed_relvirtcall\_speed_relvirtcall.cmd +WorkingDir=JIT\Methodical\refany\_speed_relvirtcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox044.cmd_4089] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044\box-unbox044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics_r.cmd_4090] +RelativePath=JIT\Methodical\nonvirtualcall\generics_r\generics_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionCompareTo2.cmd_4091] +RelativePath=CoreMangLib\cti\system\version\VersionCompareTo2\VersionCompareTo2.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionCompareTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg2.cmd_4092] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg2\openmutexneg2.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Weak.cmd_4093] +RelativePath=GC\API\GCHandle\Weak\Weak.cmd +WorkingDir=GC\API\GCHandle\Weak +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b24728.cmd_4094] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728\b24728.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldc_mulovf.cmd_4095] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf\_speed_dbgldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_u8.cmd_4096] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_u8\_il_dbghuge_u8.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEntryValue.cmd_4097] +RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue\DictionaryEntryValue.cmd +WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b65087.cmd_4098] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087\b65087.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated714.cmd_4099] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest714\Generated714\Generated714.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest714\Generated714 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26323.cmd_4100] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323\b26323.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[b219940.cmd_4101] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940\b219940.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75944.cmd_4102] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944\b75944.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_r8.cmd_4103] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r8\ldarg_s_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14294.cmd_4104] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294\b14294.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal16.cmd_4105] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal16\ConvertToDecimal16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_f4.cmd_4106] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f4\_relrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_224.cmd_4107] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_224\GCSimulator_224.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated583.cmd_4108] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest583\Generated583\Generated583.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest583\Generated583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_70.cmd_4109] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_70\GCSimulator_70.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_70 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase2_Nested_I_Nested_J.cmd_4110] +RelativePath=Loader\classloader\InterfaceFolding\TestCase2_Nested_I_Nested_J\TestCase2_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase2_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_r.cmd_4111] +RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r\stringarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesArchive.cmd_4112] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive\FileAttributesArchive.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[193825_udo.cmd_4113] +RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo\193825_udo.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84971.cmd_4114] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971\b84971.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_long_1_r.cmd_4115] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_r\seq_gc_long_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_NewObj.cmd_4116] +RelativePath=JIT\opt\Inline\tests\Inline_NewObj\Inline_NewObj.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_NewObj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunbox.cmd_4117] +RelativePath=JIT\Methodical\xxobj\operand\_speed_relunbox\_speed_relunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_speed_relunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorExp_ro.cmd_4118] +RelativePath=JIT\SIMD\VectorExp_ro\VectorExp_ro.cmd +WorkingDir=JIT\SIMD\VectorExp_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_c_ret.cmd_4119] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret\ldc_c_ret.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3_r.cmd_4120] +RelativePath=JIT\SIMD\Vector3_r\Vector3_r.cmd +WorkingDir=JIT\SIMD\Vector3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_un_r4.cmd_4121] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4\bge_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_double_1_r.cmd_4122] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_r\expl_gc_double_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fault.cmd_4123] +RelativePath=JIT\Directed\ExcepFilters\fault\fault\fault.cmd +WorkingDir=JIT\Directed\ExcepFilters\fault\fault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FormatExceptionCtor3.cmd_4124] +RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3\FormatExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep1.cmd_4125] +RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep1\_il_dbgdeep1.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble12.cmd_4126] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble12\ConvertToDouble12.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Co1727ctor_OO.cmd_4127] +RelativePath=Regressions\coreclr\1386\Co1727ctor_OO\Co1727ctor_OO.cmd +WorkingDir=Regressions\coreclr\1386\Co1727ctor_OO +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsMethod.cmd_4128] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod\AttributeTargetsMethod.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_i8.cmd_4129] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i8\bge_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovflrem1_il_r.cmd_4130] +RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_r\ovflrem1_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_134.cmd_4131] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_134\GCSimulator_134.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_134 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToUInt32.cmd_4132] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32\BooleanIConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMemberExceptionCtor3.cmd_4133] +RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3\MissingMemberExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSqrt_r.cmd_4134] +RelativePath=JIT\SIMD\VectorSqrt_r\VectorSqrt_r.cmd +WorkingDir=JIT\SIMD\VectorSqrt_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListTrimExcess.cmd_4135] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess\ListTrimExcess.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10665.cmd_4136] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665\b10665.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_4137] +RelativePath=JIT\jit64\regress\vsw\286991\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\286991\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_cpblk.cmd_4138] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk\c_cpblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryItem2.cmd_4139] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2\DictionaryIDictionaryItem2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs6.cmd_4140] +RelativePath=CoreMangLib\cti\system\math\MathAbs6\MathAbs6.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1368.cmd_4141] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1368\Generated1368\Generated1368.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1368\Generated1368 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingFieldExceptionMessage.cmd_4142] +RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage\MissingFieldExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10481.cmd_4143] +RelativePath=JIT\Regression\JitBlue\GitHub_10481\GitHub_10481\GitHub_10481.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10481\GitHub_10481 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40725.cmd_4144] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725\b40725.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_i8.cmd_4145] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i8\mul_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10621.cmd_4146] +RelativePath=JIT\Regression\JitBlue\GitHub_10621\GitHub_10621\GitHub_10621.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10621\GitHub_10621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1358.cmd_4147] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1358\Generated1358\Generated1358.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1358\Generated1358 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated3.cmd_4148] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest3\Generated3\Generated3.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest3\Generated3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_4149] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01\struct01.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RngchkStress2_o.cmd_4150] +RelativePath=JIT\jit64\opt\rngchk\RngchkStress2_o\RngchkStress2_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\RngchkStress2_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldfld_mulovf.cmd_4151] +RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mulovf\_rels_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackToArray.cmd_4152] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackToArray\StackToArray.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackToArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unboxnullable_ro.cmd_4153] +RelativePath=JIT\Directed\nullabletypes\unboxnullable_ro\unboxnullable_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\unboxnullable_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated197.cmd_4154] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest197\Generated197\Generated197.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest197\Generated197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_375.cmd_4155] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_375\GCSimulator_375.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_375 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchsimpletype_do.cmd_4156] +RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_do\trycatchsimpletype_do.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated114.cmd_4157] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest114\Generated114\Generated114.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest114\Generated114 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relhan3_ref.cmd_4158] +RelativePath=JIT\Methodical\VT\etc\_relhan3_ref\_relhan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_relhan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableGetUnderlyingType.cmd_4159] +RelativePath=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType\NullableGetUnderlyingType.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b609280.cmd_4160] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280\b609280.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_9.cmd_4161] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_9\GCSimulator_9.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal.cmd_4162] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal\ConvertToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated112.cmd_4163] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest112\Generated112\Generated112.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest112\Generated112 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pi-digits.cmd_4164] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits\pi-digits.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TextReaderNull_PSC.cmd_4165] +RelativePath=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC\TextReaderNull_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2C_d.cmd_4166] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_d\hfa_nf2C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test0828.cmd_4167] +RelativePath=Regressions\coreclr\0828\Test0828\Test0828.cmd +WorkingDir=Regressions\coreclr\0828\Test0828 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal11.cmd_4168] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal11\ConvertToDecimal11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatileLocal1.cmd_4169] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1\volatileLocal1.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12685 +HostStyle=0 + +[b21296.cmd_4170] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296\b21296.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[339415.cmd_4171] +RelativePath=JIT\jit64\gc\regress\vswhidbey\339415\339415.cmd +WorkingDir=JIT\jit64\gc\regress\vswhidbey\339415 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructFldAddr.cmd_4172] +RelativePath=JIT\CodeGenBringUpTests\StructFldAddr\StructFldAddr.cmd +WorkingDir=JIT\CodeGenBringUpTests\StructFldAddr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_284785.cmd_4173] +RelativePath=JIT\Regression\JitBlue\DevDiv_284785\DevDiv_284785\DevDiv_284785.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_284785\DevDiv_284785 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1255.cmd_4174] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1255\Generated1255\Generated1255.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1255\Generated1255 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_i1.cmd_4175] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1\add_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40521.cmd_4176] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521\b40521.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs_gcref.cmd_4177] +RelativePath=JIT\Methodical\VT\port\_rellcs_gcref\_rellcs_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_rellcs_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollGenericICollClear.cmd_4178] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear\SystemCollGenericICollClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14367.cmd_4179] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367\b14367.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SimpleArray_01_o.cmd_4180] +RelativePath=JIT\jit64\opt\rngchk\SimpleArray_01_o\SimpleArray_01_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\SimpleArray_01_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct4_5.cmd_4181] +RelativePath=JIT\jit64\gc\misc\struct4_5\struct4_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct4_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001h.cmd_4182] +RelativePath=Loader\classloader\generics\GenericMethods\method001h\method001h.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001h +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_288.cmd_4183] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_288\GCSimulator_288.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_288 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[binarytrees3.cmd_4184] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees3\binarytrees3.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35354.cmd_4185] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354\b35354.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nativeuint_il_r.cmd_4186] +RelativePath=JIT\Directed\shift\nativeuint_il_r\nativeuint_il_r.cmd +WorkingDir=JIT\Directed\shift\nativeuint_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fieldExprUnchecked1.cmd_4187] +RelativePath=JIT\jit64\opt\cse\fieldExprUnchecked1\fieldExprUnchecked1.cmd +WorkingDir=JIT\jit64\opt\cse\fieldExprUnchecked1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotImplementedExceptionCtor1.cmd_4188] +RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1\NotImplementedExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1184.cmd_4189] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1184\Generated1184\Generated1184.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1184\Generated1184 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_short_1_d.cmd_4190] +RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_d\expl_short_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TailCallCases.cmd_4191] +RelativePath=JIT\opt\ETW\TailCallCases\TailCallCases.cmd +WorkingDir=JIT\opt\ETW\TailCallCases +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_i1.cmd_4192] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1\_il_dbgrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[302680.cmd_4193] +RelativePath=baseservices\exceptions\regressions\whidbeym3.3\302680\302680\302680.cmd +WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\302680\302680 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lim_002.cmd_4194] +RelativePath=JIT\jit64\opt\lim\lim_002\lim_002.cmd +WorkingDir=JIT\jit64\opt\lim\lim_002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadlock_il_d.cmd_4195] +RelativePath=JIT\Methodical\cctor\misc\deadlock_il_d\deadlock_il_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relqperm.cmd_4196] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm\_il_relqperm.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null013.cmd_4197] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013\box-unbox-null013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt326.cmd_4198] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt326\ConvertToUInt326.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt326 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated40.cmd_4199] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest40\Generated40\Generated40.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest40\Generated40 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated986.cmd_4200] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest986\Generated986\Generated986.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest986\Generated986 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToDateTime.cmd_4201] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDateTime\CharIConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1158.cmd_4202] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1158\Generated1158\Generated1158.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1158\Generated1158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_Ref.cmd_4203] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref\OpCodesStelem_Ref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated991.cmd_4204] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest991\Generated991\Generated991.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest991\Generated991 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0E_d.cmd_4205] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_d\hfa_sf0E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_297.cmd_4206] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_297\GCSimulator_297.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_297 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructTrue.cmd_4207] +RelativePath=baseservices\threading\events\ManualResetEvent\ConstructTrue\ConstructTrue.cmd +WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructTrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nongentogen01.cmd_4208] +RelativePath=JIT\Generics\Conversions\Reference\nongentogen01\nongentogen01.cmd +WorkingDir=JIT\Generics\Conversions\Reference\nongentogen01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_13.cmd_4209] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_13\GCSimulator_13.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2G_d.cmd_4210] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_d\hfa_sd2G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relgcarr.cmd_4211] +RelativePath=JIT\Methodical\Arrays\misc\_relgcarr\_relgcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_relgcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85477.cmd_4212] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477\b85477.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_d.cmd_4213] +RelativePath=JIT\Methodical\eh\basics\throwincatch_d\throwincatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit1.cmd_4214] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit1\_dbgexplicit1.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr1.cmd_4215] +RelativePath=JIT\jit64\opt\cse\simpleexpr1\simpleexpr1.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91189.cmd_4216] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189\b91189.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11408.cmd_4217] +RelativePath=JIT\Regression\JitBlue\GitHub_11408\GitHub_11408\GitHub_11408.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11408\GitHub_11408 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[Generated762.cmd_4218] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest762\Generated762\Generated762.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest762\Generated762 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderReplace4.cmd_4219] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4\StringBuilderReplace4.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellocalloc.cmd_4220] +RelativePath=JIT\Methodical\xxobj\operand\_il_rellocalloc\_il_rellocalloc.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_rellocalloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2444;EXCLUDED +HostStyle=0 + +[Generated1025.cmd_4221] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1025\Generated1025\Generated1025.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1025\Generated1025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CPropOverflow.cmd_4222] +RelativePath=JIT\opt\AssertionPropagation\CPropOverflow\CPropOverflow.cmd +WorkingDir=JIT\opt\AssertionPropagation\CPropOverflow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byte_cs_ro.cmd_4223] +RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_ro\byte_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchangefloat.cmd_4224] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchangefloat\compareexchangefloat.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchangefloat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foo_dbg.cmd_4225] +RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg\foo_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit8.cmd_4226] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit8\_opt_dbgexplicit8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_89.cmd_4227] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_89\GCSimulator_89.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_89 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldtoken.cmd_4228] +RelativePath=JIT\Methodical\ldtoken\_il_relldtoken\_il_relldtoken.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_relldtoken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30799.cmd_4229] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799\b30799.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSet_ro.cmd_4230] +RelativePath=JIT\SIMD\VectorSet_ro\VectorSet_ro.cmd +WorkingDir=JIT\SIMD\VectorSet_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[indexMinusOne.cmd_4231] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne\indexMinusOne.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_catch.cmd_4232] +RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch\_il_relcastclass_catch.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend15.cmd_4233] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15\StringBuilderAppend15.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[127931.cmd_4234] +RelativePath=JIT\jit64\regress\ddb\127931\127931\127931.cmd +WorkingDir=JIT\jit64\regress\ddb\127931\127931 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret6_2.cmd_4235] +RelativePath=JIT\jit64\gc\misc\structret6_2\structret6_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret6_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArithmeticExceptionCtor1.cmd_4236] +RelativePath=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1\ArithmeticExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_22.cmd_4237] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_22\GCSimulator_22.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated233.cmd_4238] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest233\Generated233\Generated233.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest233\Generated233 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PInvokeUIntPtrTest.cmd_4239] +RelativePath=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest\PInvokeUIntPtrTest.cmd +WorkingDir=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NativeCallableTest.cmd_4240] +RelativePath=Interop\NativeCallable\NativeCallableTest\NativeCallableTest.cmd +WorkingDir=Interop\NativeCallable\NativeCallableTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Gt1.cmd_4241] +RelativePath=JIT\CodeGenBringUpTests\Gt1\Gt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Gt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetChars.cmd_4242] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars\UTF8EncodingGetChars.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_431.cmd_4243] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_431\GCSimulator_431.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_431 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread30.cmd_4244] +RelativePath=baseservices\threading\generics\threadstart\GThread30\GThread30.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_V.cmd_4245] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_V\_il_relldobj_V.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_V +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListCount.cmd_4246] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCount\ListCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated11.cmd_4247] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest11\Generated11\Generated11.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest11\Generated11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch3.cmd_4248] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3\ArrayBinarySearch3.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign1.cmd_4249] +RelativePath=CoreMangLib\cti\system\math\MathSign1\MathSign1.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar9.cmd_4250] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar9\ConvertToChar9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_ldloc.cmd_4251] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc\_il_dbgcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullHandle.cmd_4252] +RelativePath=GC\API\WeakReference\NullHandle\NullHandle.cmd +WorkingDir=GC\API\WeakReference\NullHandle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated262.cmd_4253] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest262\Generated262\Generated262.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest262\Generated262 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyNotFoundExceptionCtor1.cmd_4254] +RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1\KeyNotFoundExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37646.cmd_4255] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646\b37646.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[u8div_cs_ro.cmd_4256] +RelativePath=JIT\Methodical\divrem\div\u8div_cs_ro\u8div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\u8div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgsizeof.cmd_4257] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof\_speed_dbgsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33183.cmd_4258] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183\b33183.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIEnumerableGetEnumerator2.cmd_4259] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2\DictionaryIEnumerableGetEnumerator2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1223.cmd_4260] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1223\Generated1223\Generated1223.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1223\Generated1223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSeparator2.cmd_4261] +RelativePath=CoreMangLib\cti\system\char\CharIsSeparator2\CharIsSeparator2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated132.cmd_4262] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest132\Generated132\Generated132.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest132\Generated132 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relvtret.cmd_4263] +RelativePath=JIT\Methodical\VT\callconv\_speed_relvtret\_speed_relvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_relvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin11.cmd_4264] +RelativePath=CoreMangLib\cti\system\math\MathMin11\MathMin11.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_340.cmd_4265] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_340\GCSimulator_340.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_340 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB5_PSP.cmd_4266] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB5_PSP\LocallocCnstB5_PSP.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB5_PSP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionIsSynchronized.cmd_4267] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized\DictionaryICollectionIsSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_ThreadPoolNullChecks.cmd_4268] +RelativePath=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks\CS_ThreadPoolNullChecks.cmd +WorkingDir=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartShort.cmd_4269] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort\ThreadStartShort.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_cs_ro.cmd_4270] +RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_ro\vt1_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeSizeConst.cmd_4271] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst\MarshalAsAttributeSizeConst.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgpointer.cmd_4272] +RelativePath=JIT\Methodical\tailcall\_il_dbgpointer\_il_dbgpointer.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[_il_relgcval.cmd_4273] +RelativePath=JIT\Methodical\tailcall\_il_relgcval\_il_relgcval.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relgcval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13691.cmd_4274] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691\b13691.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomCtor1.cmd_4275] +RelativePath=CoreMangLib\cti\system\random\RandomCtor1\RandomCtor1.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[2branchesoutoftry_d.cmd_4276] +RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_d\2branchesoutoftry_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated910.cmd_4277] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest910\Generated910\Generated910.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest910\Generated910 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated297.cmd_4278] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest297\Generated297\Generated297.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest297\Generated297 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchbackwardswithcatch_d.cmd_4279] +RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d\branchbackwardswithcatch_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign2.cmd_4280] +RelativePath=CoreMangLib\cti\system\math\MathSign2\MathSign2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean2.cmd_4281] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean2\ConvertToBoolean2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgval_ctor.cmd_4282] +RelativePath=JIT\Methodical\Invoke\ctor\_dbgval_ctor\_dbgval_ctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_dbgval_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b473131.cmd_4283] +RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131\b473131.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28077.cmd_4284] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077\b28077.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8a_cs_do.cmd_4285] +RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_do\convr8a_cs_do.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct04.cmd_4286] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04\struct04.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tostring_r.cmd_4287] +RelativePath=JIT\Directed\nullabletypes\tostring_r\tostring_r.cmd +WorkingDir=JIT\Directed\nullabletypes\tostring_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathLog10.cmd_4288] +RelativePath=CoreMangLib\cti\system\math\MathLog10\MathLog10.cmd +WorkingDir=CoreMangLib\cti\system\math\MathLog10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[151232.cmd_4289] +RelativePath=baseservices\exceptions\regressions\whidbeyM3.2\151232\151232.cmd +WorkingDir=baseservices\exceptions\regressions\whidbeyM3.2\151232 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal8.cmd_4290] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal8\ConvertToDecimal8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1103.cmd_4291] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1103\Generated1103\Generated1103.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1103\Generated1103 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_short_1_d.cmd_4292] +RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_d\seq_short_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_i8.cmd_4293] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8\ldc_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorHWAccel2_r.cmd_4294] +RelativePath=JIT\SIMD\VectorHWAccel2_r\VectorHWAccel2_r.cmd +WorkingDir=JIT\SIMD\VectorHWAccel2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface10.cmd_4295] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface10\MultipleInterface10.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteToString3.cmd_4296] +RelativePath=CoreMangLib\cti\system\byte\ByteToString3\ByteToString3.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrToString.cmd_4297] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrToString\IntPtrToString.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplOptionsNoInlining.cmd_4298] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining\MethodImplOptionsNoInlining.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox002.cmd_4299] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002\box-unbox002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i52.cmd_4300] +RelativePath=JIT\jit64\mcc\interop\mcc_i52\mcc_i52.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i52 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[UInt32IConvertibleToInt64.cmd_4301] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64\UInt32IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimaldiv_cs_d.cmd_4302] +RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_d\decimaldiv_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcbench.cmd_4303] +RelativePath=GC\Scenarios\GCBench\gcbench\gcbench.cmd +WorkingDir=GC\Scenarios\GCBench\gcbench +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallythrow_nonlocalexit_d.cmd_4304] +RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d\tryfinallythrow_nonlocalexit_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[monitorisentered.cmd_4305] +RelativePath=baseservices\threading\monitor\isentered\monitorisentered\monitorisentered.cmd +WorkingDir=baseservices\threading\monitor\isentered\monitorisentered +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchangeintptr.cmd_4306] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchangeintptr\compareexchangeintptr.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchangeintptr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unsafe_d.cmd_4307] +RelativePath=JIT\Methodical\eh\cs\unsafe_d\unsafe_d.cmd +WorkingDir=JIT\Methodical\eh\cs\unsafe_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt.cmd_4308] +RelativePath=JIT\IL_Conformance\Old\Base\cgt\cgt.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\cgt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchinfinally_do.cmd_4309] +RelativePath=JIT\Methodical\eh\interactions\switchinfinally_do\switchinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baseclass02.cmd_4310] +RelativePath=JIT\Generics\Instantiation\Classes\baseclass02\baseclass02.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\baseclass02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentonongen01.cmd_4311] +RelativePath=JIT\Generics\Conversions\Reference\gentonongen01\gentonongen01.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentonongen01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefsubbyref1_il_d.cmd_4312] +RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d\byrefsubbyref1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedEx2.cmd_4313] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\NestedEx2\NestedEx2.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\NestedEx2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumps4.cmd_4314] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumps4\_il_reljumps4.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_calli.cmd_4315] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli\_il_relrecurse_calli.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs2.cmd_4316] +RelativePath=CoreMangLib\cti\system\math\MathAbs2\MathAbs2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05622.cmd_4317] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622\b05622.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1380.cmd_4318] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1380\Generated1380\Generated1380.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1380\Generated1380 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_242.cmd_4319] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_242\GCSimulator_242.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_242 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overlddiv_cs_ro.cmd_4320] +RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_ro\overlddiv_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst003.cmd_4321] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst003\IsInst003.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated247.cmd_4322] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest247\Generated247\Generated247.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest247\Generated247 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10852.cmd_4323] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852\b10852.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1011.cmd_4324] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1011\Generated1011\Generated1011.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1011\Generated1011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgtailjump_cs.cmd_4325] +RelativePath=JIT\Methodical\Boxing\misc\_odbgtailjump_cs\_odbgtailjump_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_odbgtailjump_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_371.cmd_4326] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_371\GCSimulator_371.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_371 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1369.cmd_4327] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1369\Generated1369\Generated1369.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1369\Generated1369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated166.cmd_4328] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest166\Generated166\Generated166.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest166\Generated166 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80824.cmd_4329] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824\b80824.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeSingle.cmd_4330] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSingle\TypeCodeSingle.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparisonOrdinalIgnoreCase.cmd_4331] +RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase\StringComparisonOrdinalIgnoreCase.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex9a.cmd_4332] +RelativePath=baseservices\threading\waithandle\waitall\waitallex9a\waitallex9a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex9a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_u8.cmd_4333] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8\add_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16399.cmd_4334] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399\b16399.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_221.cmd_4335] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_221\GCSimulator_221.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_221 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Conv_I4.cmd_4336] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4\Conv_I4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated761.cmd_4337] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest761\Generated761\Generated761.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest761\Generated761 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated870.cmd_4338] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest870\Generated870\Generated870.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest870\Generated870 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchtrycatch_ro.cmd_4339] +RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_ro\trycatchtrycatch_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05637.cmd_4340] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637\b05637.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated7.cmd_4341] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest7\Generated7\Generated7.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest7\Generated7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringTrim1b.cmd_4342] +RelativePath=CoreMangLib\cti\system\string\StringTrim1b\StringTrim1b.cmd +WorkingDir=CoreMangLib\cti\system\string\StringTrim1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Xor_Op_cs_ro.cmd_4343] +RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_ro\Int_Xor_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_R8.cmd_4344] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8\OpCodesLdc_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Normal.cmd_4345] +RelativePath=GC\API\GCHandle\Normal\Normal.cmd +WorkingDir=GC\API\GCHandle\Normal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated752.cmd_4346] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest752\Generated752\Generated752.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest752\Generated752 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox025.cmd_4347] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025\box-unbox025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-enum002.cmd_4348] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002\box-unbox-enum002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value043.cmd_4349] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043\box-unbox-value043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated213.cmd_4350] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest213\Generated213\Generated213.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest213\Generated213 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated183.cmd_4351] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest183\Generated183\Generated183.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest183\Generated183 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivetypes.cmd_4352] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivetypes\keepalivetypes.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivetypes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class_static01.cmd_4353] +RelativePath=JIT\Generics\MemberAccess\class_static01\class_static01.cmd +WorkingDir=JIT\Generics\MemberAccess\class_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relaccum.cmd_4354] +RelativePath=JIT\Methodical\VT\identity\_il_relaccum\_il_relaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_relaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeLong_3.cmd_4355] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3\CompareExchangeLong_3.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[enum.cmd_4356] +RelativePath=JIT\opt\Devirtualization\enum\enum.cmd +WorkingDir=JIT\opt\Devirtualization\enum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Usage.cmd_4357] +RelativePath=GC\API\GCHandleCollector\Usage\Usage.cmd +WorkingDir=GC\API\GCHandleCollector\Usage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02345.cmd_4358] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345\b02345.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToChar.cmd_4359] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToChar\Int32IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceIsAliveb_PSC.cmd_4360] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC\WeakReferenceIsAliveb_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetTotalMemory.cmd_4361] +RelativePath=GC\API\GC\GetTotalMemory\GetTotalMemory.cmd +WorkingDir=GC\API\GC\GetTotalMemory +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct04.cmd_4362] +RelativePath=JIT\Generics\Instantiation\Interfaces\struct04\struct04.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\struct04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_cs_d.cmd_4363] +RelativePath=JIT\Methodical\NaN\intrinsic_cs_d\intrinsic_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case4.cmd_4364] +RelativePath=Loader\classloader\v1\M10\Acceptance\Case4\Case4.cmd +WorkingDir=Loader\classloader\v1\M10\Acceptance\Case4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated246.cmd_4365] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest246\Generated246\Generated246.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest246\Generated246 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foregroundgc.cmd_4366] +RelativePath=GC\Features\BackgroundGC\foregroundgc\foregroundgc.cmd +WorkingDir=GC\Features\BackgroundGC\foregroundgc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[_il_relldsfld_mul.cmd_4367] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mul\_il_relldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToInt64.cmd_4368] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt64\DecimalToInt64.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend14.cmd_4369] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14\StringBuilderAppend14.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Simpletest4.cmd_4370] +RelativePath=JIT\Methodical\stringintern\_Simpletest4\_Simpletest4.cmd +WorkingDir=JIT\Methodical\stringintern\_Simpletest4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated701.cmd_4371] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest701\Generated701\Generated701.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest701\Generated701 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase5_Nested_I_Nested_J.cmd_4372] +RelativePath=Loader\classloader\InterfaceFolding\TestCase5_Nested_I_Nested_J\TestCase5_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase5_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samerethrowtwice_do.cmd_4373] +RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_do\samerethrowtwice_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorGet_ro.cmd_4374] +RelativePath=JIT\SIMD\VectorGet_ro\VectorGet_ro.cmd +WorkingDir=JIT\SIMD\VectorGet_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics013.cmd_4375] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013\castclass-generics013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread28.cmd_4376] +RelativePath=baseservices\threading\generics\threadstart\GThread28\GThread28.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldnull.cmd_4377] +RelativePath=JIT\Methodical\casts\coverage\_il_relldnull\_il_relldnull.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relldnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartChar_2.cmd_4378] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_2\ThreadStartChar_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_32.cmd_4379] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_32\GCSimulator_32.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract06.cmd_4380] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract06\abstract06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread29.cmd_4381] +RelativePath=baseservices\threading\generics\WaitCallback\thread29\thread29.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesHideBySig.cmd_4382] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig\MethodAttributesHideBySig.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40006.cmd_4383] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006\b40006.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest_cs_d.cmd_4384] +RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d\ctest_cs_d.cmd +WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep1.cmd_4385] +RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep1\_il_reldeep1.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29068.cmd_4386] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068\b29068.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCopy1.cmd_4387] +RelativePath=CoreMangLib\cti\system\array\ArrayCopy1\ArrayCopy1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCopy1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35366.cmd_4388] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366\b35366.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[not_u4.cmd_4389] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u4\not_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_ldloc.cmd_4390] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc\_il_dbgisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate002.cmd_4391] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate002\Delegate002.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArgs_r.cmd_4392] +RelativePath=JIT\SIMD\VectorArgs_r\VectorArgs_r.cmd +WorkingDir=JIT\SIMD\VectorArgs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct5_4.cmd_4393] +RelativePath=JIT\jit64\gc\misc\struct5_4\struct5_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct5_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgarray1.cmd_4394] +RelativePath=JIT\Methodical\refany\_il_dbgarray1\_il_dbgarray1.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgarray1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_r.cmd_4395] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r\catchrettoinnertry_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallingConventionsVarArgs.cmd_4396] +RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs\CallingConventionsVarArgs.cmd +WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated685.cmd_4397] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest685\Generated685\Generated685.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest685\Generated685 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated835.cmd_4398] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest835\Generated835\Generated835.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest835\Generated835 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBne_Un.cmd_4399] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un\OpCodesBne_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct1_2.cmd_4400] +RelativePath=JIT\jit64\gc\misc\struct1_2\struct1_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct1_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics044.cmd_4401] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044\castclass-generics044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unregister01.cmd_4402] +RelativePath=baseservices\threading\threadpool\unregister\unregister01\unregister01.cmd +WorkingDir=baseservices\threading\threadpool\unregister\unregister01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_large.cmd_4403] +RelativePath=JIT\jit64\localloc\verify\verify01_large\verify01_large.cmd +WorkingDir=JIT\jit64\localloc\verify\verify01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[IsAllocated.cmd_4404] +RelativePath=GC\API\GCHandle\IsAllocated\IsAllocated.cmd +WorkingDir=GC\API\GCHandle\IsAllocated +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble8.cmd_4405] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble8\ConvertToDouble8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExternalException.cmd_4406] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\ExternalException\ExternalException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\ExternalException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString6.cmd_4407] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString6\ConvertToString6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidCastExceptionctor1.cmd_4408] +RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1\InvalidCastExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4div_cs_d.cmd_4409] +RelativePath=JIT\Methodical\divrem\div\i4div_cs_d\i4div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\i4div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesDiv.cmd_4410] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv\OpCodesDiv.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Args4.cmd_4411] +RelativePath=JIT\CodeGenBringUpTests\Args4\Args4.cmd +WorkingDir=JIT\CodeGenBringUpTests\Args4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrgetlen_il_r.cmd_4412] +RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_r\arrgetlen_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbghan3.cmd_4413] +RelativePath=JIT\Methodical\VT\etc\_dbghan3\_dbghan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbghan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange4_cti.cmd_4414] +RelativePath=baseservices\threading\interlocked\exchange\exchange4_cti\exchange4_cti.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange4_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8rem_cs_do.cmd_4415] +RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_do\u8rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq_r4.cmd_4416] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4\ceq_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_911875_r.cmd_4417] +RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r\DevDiv_911875_r.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i66.cmd_4418] +RelativePath=JIT\jit64\mcc\interop\mcc_i66\mcc_i66.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i66 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated202.cmd_4419] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest202\Generated202\Generated202.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest202\Generated202 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCopy2.cmd_4420] +RelativePath=CoreMangLib\cti\system\array\ArrayCopy2\ArrayCopy2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCopy2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1121.cmd_4421] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1121\Generated1121\Generated1121.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1121\Generated1121 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox034.cmd_4422] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034\box-unbox034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpath_ro.cmd_4423] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro\throwinfinallyerrpath_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1327.cmd_4424] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1327\Generated1327\Generated1327.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1327\Generated1327 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52839.cmd_4425] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839\b52839.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_flow.cmd_4426] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow\_il_relu_flow.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_136.cmd_4427] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_136\GCSimulator_136.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_136 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch2_d.cmd_4428] +RelativePath=JIT\Directed\leave\catch2_d\catch2_d.cmd +WorkingDir=JIT\Directed\leave\catch2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListGetRange.cmd_4429] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetRange\ListGetRange.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetRange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyloop_do.cmd_4430] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_do\tryfinallyloop_do.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorHWAccel_r.cmd_4431] +RelativePath=JIT\SIMD\VectorHWAccel_r\VectorHWAccel_r.cmd +WorkingDir=JIT\SIMD\VectorHWAccel_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug573840.cmd_4432] +RelativePath=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840\bug573840.cmd +WorkingDir=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U4_Un.cmd_4433] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un\OpCodesConv_Ovf_U4_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1393.cmd_4434] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1393\Generated1393\Generated1393.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1393\Generated1393 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueEqFP.cmd_4435] +RelativePath=JIT\CodeGenBringUpTests\JTrueEqFP\JTrueEqFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueEqFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex8a.cmd_4436] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex8a\waitanyex8a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex8a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33888.cmd_4437] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888\b33888.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0B_r.cmd_4438] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_r\hfa_sd0B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27077.cmd_4439] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077\b27077.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91867.cmd_4440] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867\b91867.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovflrem1_il_d.cmd_4441] +RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_d\ovflrem1_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1425.cmd_4442] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1425\Generated1425\Generated1425.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1425\Generated1425 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated266.cmd_4443] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest266\Generated266\Generated266.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest266\Generated266 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated318.cmd_4444] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest318\Generated318\Generated318.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest318\Generated318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_254.cmd_4445] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_254\GCSimulator_254.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_254 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetPreamble.cmd_4446] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble\EncodingGetPreamble.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Xor1.cmd_4447] +RelativePath=JIT\CodeGenBringUpTests\Xor1\Xor1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Xor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringTrim1.cmd_4448] +RelativePath=CoreMangLib\cti\system\string\StringTrim1\StringTrim1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringTrim1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relbox.cmd_4449] +RelativePath=JIT\Methodical\int64\misc\_il_relbox\_il_relbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_il_relbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_r8.cmd_4450] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8\ldarg_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16554.cmd_4451] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554\b16554.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated594.cmd_4452] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest594\Generated594\Generated594.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest594\Generated594 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunbox.cmd_4453] +RelativePath=JIT\Methodical\xxobj\operand\_dbgunbox\_dbgunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_dbgunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leakgen.cmd_4454] +RelativePath=GC\Scenarios\LeakGen\leakgen\leakgen.cmd +WorkingDir=GC\Scenarios\LeakGen\leakgen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToInt16.cmd_4455] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt16\StringIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_U4.cmd_4456] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4\OpCodesLdind_U4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryClear.cmd_4457] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear\DictionaryClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetCtor1.cmd_4458] +RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1\AutoResetCtor1.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend8.cmd_4459] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8\StringBuilderAppend8.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b18049.cmd_4460] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049\b18049.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte.cmd_4461] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte\ConvertToSByte.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLtFP.cmd_4462] +RelativePath=JIT\CodeGenBringUpTests\JTrueLtFP\JTrueLtFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLtFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_r8.cmd_4463] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r8\ble_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract07.cmd_4464] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract07\abstract07.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ulong_cs_d.cmd_4465] +RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_d\ulong_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct_ImplicitOverrideVirtualNewslot.cmd_4466] +RelativePath=Loader\classloader\generics\VSD\Struct_ImplicitOverrideVirtualNewslot\Struct_ImplicitOverrideVirtualNewslot.cmd +WorkingDir=Loader\classloader\generics\VSD\Struct_ImplicitOverrideVirtualNewslot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72522.cmd_4467] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522\b72522.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToDecimal.cmd_4468] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToDecimal\DecimalToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1219.cmd_4469] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1219\Generated1219\Generated1219.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1219\Generated1219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_class01.cmd_4470] +RelativePath=JIT\Generics\Locals\instance_equalnull_class01\instance_equalnull_class01.cmd +WorkingDir=JIT\Generics\Locals\instance_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble13.cmd_4471] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble13\ConvertToDouble13.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCopyTo.cmd_4472] +RelativePath=CoreMangLib\cti\system\string\StringCopyTo\StringCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1007.cmd_4473] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1007\Generated1007\Generated1007.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1007\Generated1007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b76590.cmd_4474] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590\b76590.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToChar.cmd_4475] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToChar\Int64IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated852.cmd_4476] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest852\Generated852\Generated852.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest852\Generated852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32MinValue.cmd_4477] +RelativePath=CoreMangLib\cti\system\uint32\UInt32MinValue\UInt32MinValue.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32MinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_il_il.cmd_4478] +RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_il\_orelsin_il_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b115253.cmd_4479] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253\b115253.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i74.cmd_4480] +RelativePath=JIT\jit64\mcc\interop\mcc_i74\mcc_i74.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i74 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryIsFixedSize2.cmd_4481] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2\DictionaryIDictionaryIsFixedSize2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null014.cmd_4482] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014\box-unbox-null014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b99235.cmd_4483] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235\b99235.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case4.cmd_4484] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4\case4.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegInstanceFtn.cmd_4485] +RelativePath=JIT\opt\Inline\tests\DelegInstanceFtn\DelegInstanceFtn.cmd +WorkingDir=JIT\opt\Inline\tests\DelegInstanceFtn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_catch_neg.cmd_4486] +RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg\_il_dbgisinst_catch_neg.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_6649.cmd_4487] +RelativePath=JIT\Regression\JitBlue\GitHub_6649\GitHub_6649\GitHub_6649.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_6649\GitHub_6649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_354.cmd_4488] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_354\GCSimulator_354.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_354 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[or_u4.cmd_4489] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u4\or_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesPublic.cmd_4490] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic\MethodAttributesPublic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableGetHashCode.cmd_4491] +RelativePath=CoreMangLib\cti\system\nullable\NullableGetHashCode\NullableGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71093.cmd_4492] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093\b71093.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relknight.cmd_4493] +RelativePath=JIT\Methodical\VT\etc\_il_relknight\_il_relknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteToString2.cmd_4494] +RelativePath=CoreMangLib\cti\system\byte\ByteToString2\ByteToString2.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28787.cmd_4495] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787\b28787.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[33objref_cs_r.cmd_4496] +RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_r\33objref_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[labelbeforefinally_d.cmd_4497] +RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_d\labelbeforefinally_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3c_il_r.cmd_4498] +RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_r\25param3c_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind03_dynamic.cmd_4499] +RelativePath=JIT\jit64\localloc\unwind\unwind03_dynamic\unwind03_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind03_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated131.cmd_4500] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest131\Generated131\Generated131.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest131\Generated131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort5.cmd_4501] +RelativePath=CoreMangLib\cti\system\array\ArraySort5\ArraySort5.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcs_long.cmd_4502] +RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_long\_speed_rellcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop1_cs_ro.cmd_4503] +RelativePath=JIT\Directed\UnrollLoop\loop1_cs_ro\loop1_cs_ro.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsAll.cmd_4504] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll\AttributeTargetsAll.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array3.cmd_4505] +RelativePath=JIT\CodeGenBringUpTests\Array3\Array3.cmd +WorkingDir=JIT\CodeGenBringUpTests\Array3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldelema.cmd_4506] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbgldelema\_il_dbgldelema.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgldelema +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadImageFormatExceptionCtor3.cmd_4507] +RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3\BadImageFormatExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52840.cmd_4508] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840\b52840.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcincatch_r.cmd_4509] +RelativePath=JIT\Methodical\eh\interactions\gcincatch_r\gcincatch_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\gcincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcs.cmd_4510] +RelativePath=JIT\Methodical\VT\port\_speed_dbglcs\_speed_dbglcs.cmd +WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_267.cmd_4511] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_267\GCSimulator_267.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_267 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesOptional.cmd_4512] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional\ParameterAttributesOptional.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated632.cmd_4513] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest632\Generated632\Generated632.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest632\Generated632 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollGenericICollectionAdd.cmd_4514] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd\SystemCollGenericICollectionAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b57492.cmd_4515] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492\b57492.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble15.cmd_4516] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble15\ConvertToDouble15.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopstrswitchgoto_d.cmd_4517] +RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d\loopstrswitchgoto_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[long_cs_r.cmd_4518] +RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_r\long_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStarg_S.cmd_4519] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S\OpCodesStarg_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListCtor2.cmd_4520] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor2\ListCtor2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16.cmd_4521] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16\ConvertToInt16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02a_seq_ser.cmd_4522] +RelativePath=Loader\classloader\generics\Layout\General\Base02a_seq_ser\Base02a_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02a_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh07_dynamic.cmd_4523] +RelativePath=JIT\jit64\localloc\ehverify\eh07_dynamic\eh07_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh07_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_206.cmd_4524] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_206\GCSimulator_206.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_206 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct6.cmd_4525] +RelativePath=JIT\jit64\gc\misc\struct6\struct6.cmd +WorkingDir=JIT\jit64\gc\misc\struct6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToUInt32.cmd_4526] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt32\DecimalToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated801.cmd_4527] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest801\Generated801\Generated801.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest801\Generated801 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated884.cmd_4528] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest884\Generated884\Generated884.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest884\Generated884 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-6-1.cmd_4529] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-6-1\L-2-6-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-6-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFSin.cmd_4530] +RelativePath=CoreMangLib\cti\system\mathf\MathFSin\MathFSin.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFSin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated98.cmd_4531] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest98\Generated98\Generated98.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest98\Generated98 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_23.cmd_4532] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_23\GCSimulator_23.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4div_cs_ro.cmd_4533] +RelativePath=JIT\Methodical\divrem\div\r4div_cs_ro\r4div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\r4div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_i8.cmd_4534] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i8\starg_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParamArrayAttributeCtor.cmd_4535] +RelativePath=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor\ParamArrayAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Alloc_neg.cmd_4536] +RelativePath=GC\API\GCHandle\Alloc_neg\Alloc_neg.cmd +WorkingDir=GC\API\GCHandle\Alloc_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1009.cmd_4537] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1009\Generated1009\Generated1009.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1009\Generated1009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1428.cmd_4538] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1428\Generated1428\Generated1428.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1428\Generated1428 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectDisposedExceptionObjectName.cmd_4539] +RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName\ObjectDisposedExceptionObjectName.cmd +WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface016.cmd_4540] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016\castclass-interface016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3211.cmd_4541] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3211\ConvertToUInt3211.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3211 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fault.cmd_4542] +RelativePath=baseservices\exceptions\simple\fault\fault.cmd +WorkingDir=baseservices\exceptions\simple\fault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14067a.cmd_4543] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a\b14067a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListLastIndexOf3.cmd_4544] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3\ListLastIndexOf3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102844.cmd_4545] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844\b102844.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListContains.cmd_4546] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListContains\ListIListContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_i4.cmd_4547] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_i4\_il_relhuge_i4.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopstrswitchgoto_ro.cmd_4548] +RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro\loopstrswitchgoto_ro.cmd +WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fgloop2.cmd_4549] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2\fgloop2.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[value_r.cmd_4550] +RelativePath=JIT\Directed\nullabletypes\value_r\value_r.cmd +WorkingDir=JIT\Directed\nullabletypes\value_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_obj_1_d.cmd_4551] +RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_d\seq_obj_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278375.cmd_4552] +RelativePath=JIT\Regression\JitBlue\DevDiv_278375\DevDiv_278375\DevDiv_278375.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278375\DevDiv_278375 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharToString1.cmd_4553] +RelativePath=CoreMangLib\cti\system\char\CharToString1\CharToString1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102886.cmd_4554] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886\b102886.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_4555] +RelativePath=JIT\jit64\regress\vsw\575343\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\575343\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit6.cmd_4556] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit6\_opt_relexplicit6.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case3.cmd_4557] +RelativePath=Loader\classloader\regressions\dev10_813331\Case3\Case3.cmd +WorkingDir=Loader\classloader\regressions\dev10_813331\Case3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase6.cmd_4558] +RelativePath=Loader\classloader\InterfaceFolding\TestCase6\TestCase6.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_94.cmd_4559] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_94\GCSimulator_94.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_94 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_un_r8.cmd_4560] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8\cgt_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated736.cmd_4561] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest736\Generated736\Generated736.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest736\Generated736 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumeratorCurrent.cmd_4562] +RelativePath=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlagsAttributeCtor.cmd_4563] +RelativePath=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor\FlagsAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b98958.cmd_4564] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958\b98958.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_prop.cmd_4565] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop\_il_relu_prop.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_153.cmd_4566] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_153\GCSimulator_153.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_153 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrotate_i4.cmd_4567] +RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_i4\_il_relrotate_i4.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40141.cmd_4568] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141\b40141.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_62.cmd_4569] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_62\GCSimulator_62.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_62 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ccse_cs_do.cmd_4570] +RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_do\ccse_cs_do.cmd +WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47022.cmd_4571] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022\b47022.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_208.cmd_4572] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_208\GCSimulator_208.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_208 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relvirtftn.cmd_4573] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn\_il_relvirtftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_ref.cmd_4574] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref\stloc_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldsfld_mul.cmd_4575] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul\_il_dbgldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToSByte.cmd_4576] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte\UInt64IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated793.cmd_4577] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest793\Generated793\Generated793.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest793\Generated793 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1386.cmd_4578] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1386\Generated1386\Generated1386.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1386\Generated1386 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54611.cmd_4579] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611\b54611.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I8.cmd_4580] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8\OpCodesLdc_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_409.cmd_4581] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_409\GCSimulator_409.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_409 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nop.cmd_4582] +RelativePath=JIT\IL_Conformance\Old\Base\nop\nop.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\nop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameSetPublicKeyToken.cmd_4583] +RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken\AssemblyNameSetPublicKeyToken.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertFromBase64String.cmd_4584] +RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64String\ConvertFromBase64String.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64String +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PredicateInvoke.cmd_4585] +RelativePath=CoreMangLib\cti\system\predicate\PredicateInvoke\PredicateInvoke.cmd +WorkingDir=CoreMangLib\cti\system\predicate\PredicateInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1076.cmd_4586] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1076\Generated1076\Generated1076.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1076\Generated1076 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rank1array.cmd_4587] +RelativePath=baseservices\multidimmarray\rank1array\rank1array.cmd +WorkingDir=baseservices\multidimmarray\rank1array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_i2_bool.cmd_4588] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool\_il_dbgcompat_i2_bool.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_i.cmd_4589] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i\sub_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartChar.cmd_4590] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar\ThreadStartChar.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi4i2.cmd_4591] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i2\_il_dbgi4i2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread20.cmd_4592] +RelativePath=baseservices\threading\generics\syncdelegate\GThread20\GThread20.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_il_d.cmd_4593] +RelativePath=JIT\Generics\ConstrainedCall\vt1_il_d\vt1_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally-struct03.cmd_4594] +RelativePath=baseservices\exceptions\generics\try-finally-struct03\try-finally-struct03.cmd +WorkingDir=baseservices\exceptions\generics\try-finally-struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[float_cs_d.cmd_4595] +RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_d\float_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated238.cmd_4596] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest238\Generated238\Generated238.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest238\Generated238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind03_small.cmd_4597] +RelativePath=JIT\jit64\localloc\unwind\unwind03_small\unwind03_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind03_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initobj.cmd_4598] +RelativePath=JIT\Directed\PREFIX\unaligned\2\initobj\initobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\initobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_int_1_d.cmd_4599] +RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_d\expl_int_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NeutralResourcesLanguageAttributeCtor.cmd_4600] +RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor\NeutralResourcesLanguageAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_207.cmd_4601] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_207\GCSimulator_207.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_207 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b81766.cmd_4602] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766\b81766.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated295.cmd_4603] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest295\Generated295\Generated295.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest295\Generated295 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit1_r.cmd_4604] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r\tryCatchFinallyThrow_nonlocalexit1_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inlined.cmd_4605] +RelativePath=Loader\classloader\TypeInitialization\Inlining\Inlined\Inlined.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\Inlined +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_i_u2.cmd_4606] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_i_u2\_il_relcompat_i_u2.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteEquals2.cmd_4607] +RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals2\SByteEquals2.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestGC.cmd_4608] +RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestGC\TestGC.cmd +WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestGC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB117.cmd_4609] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB117\LocallocCnstB117.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB117 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31746.cmd_4610] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746\b31746.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[test.cmd_4611] +RelativePath=JIT\jit64\regress\vsw\373472\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\373472\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_struct_instance01.cmd_4612] +RelativePath=JIT\Generics\Exceptions\specific_struct_instance01\specific_struct_instance01.cmd +WorkingDir=JIT\Generics\Exceptions\specific_struct_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_r.cmd_4613] +RelativePath=JIT\Methodical\eh\basics\throwinfinally_r\throwinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[forwardleaveincatch_r.cmd_4614] +RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_r\forwardleaveincatch_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[methods.cmd_4615] +RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\methods\methods.cmd +WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\methods +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_And_Op_cs_r.cmd_4616] +RelativePath=JIT\Directed\cmov\Int_And_Op_cs_r\Int_And_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_passing_class01.cmd_4617] +RelativePath=JIT\Generics\Fields\static_passing_class01\static_passing_class01.cmd +WorkingDir=JIT\Generics\Fields\static_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated158.cmd_4618] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest158\Generated158\Generated158.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest158\Generated158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_384.cmd_4619] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_384\GCSimulator_384.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_384 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesFinal.cmd_4620] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal\MethodAttributesFinal.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overlddiv_cs_r.cmd_4621] +RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_r\overlddiv_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Le1.cmd_4622] +RelativePath=JIT\CodeGenBringUpTests\Le1\Le1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Le1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrGetHashCode.cmd_4623] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode\UIntPtrGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartObject_2.cmd_4624] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_2\ThreadStartObject_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[544701.cmd_4625] +RelativePath=GC\Regressions\v2.0-rtm\544701\544701\544701.cmd +WorkingDir=GC\Regressions\v2.0-rtm\544701\544701 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesTemporary.cmd_4626] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary\FileAttributesTemporary.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relisinst_newobj.cmd_4627] +RelativePath=JIT\Methodical\casts\coverage\_relisinst_newobj\_relisinst_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relisinst_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_call.cmd_4628] +RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_call\_il_relcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise2_cs_r.cmd_4629] +RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_r\xprecise2_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_And_Op_cs_do.cmd_4630] +RelativePath=JIT\Directed\cmov\Float_And_Op_cs_do\Float_And_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface07.cmd_4631] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface07\NestedInterface07.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally02.cmd_4632] +RelativePath=baseservices\exceptions\generics\try-catch-finally02\try-catch-finally02.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated942.cmd_4633] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest942\Generated942\Generated942.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest942\Generated942 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated430.cmd_4634] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest430\Generated430\Generated430.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest430\Generated430 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08944a.cmd_4635] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a\b08944a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated644.cmd_4636] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest644\Generated644\Generated644.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest644\Generated644 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadoponerror_d.cmd_4637] +RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_d\deadoponerror_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_30_do.cmd_4638] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do\throwinfinallynestedintry_30_do.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91021.cmd_4639] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021\b91021.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEnumeratorMoveNext.cmd_4640] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext\DictionaryEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase0_Nested_J_Nested_I.cmd_4641] +RelativePath=Loader\classloader\InterfaceFolding\TestCase0_Nested_J_Nested_I\TestCase0_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase0_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_4642] +RelativePath=JIT\Directed\PREFIX\unaligned\2\cpblk\cpblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread28.cmd_4643] +RelativePath=baseservices\threading\generics\WaitCallback\thread28\thread28.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated462.cmd_4644] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest462\Generated462\Generated462.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest462\Generated462 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcatchfinally.cmd_4645] +RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally\_relcatchfinally.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated182.cmd_4646] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest182\Generated182\Generated182.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest182\Generated182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[not_u8.cmd_4647] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u8\not_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldc_div.cmd_4648] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div\_speed_dbgs_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8div_cs_d.cmd_4649] +RelativePath=JIT\Methodical\divrem\div\i8div_cs_d\i8div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\i8div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct3_4.cmd_4650] +RelativePath=JIT\jit64\gc\misc\struct3_4\struct3_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct3_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-05_cs_d.cmd_4651] +RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_d\5w1d-05_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_396.cmd_4652] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_396\GCSimulator_396.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_396 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellocalloc.cmd_4653] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc\_il_rellocalloc.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsizeof.cmd_4654] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof\_il_relsizeof.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated767.cmd_4655] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest767\Generated767\Generated767.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest767\Generated767 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_376412.cmd_4656] +RelativePath=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412\DevDiv_376412.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread07.cmd_4657] +RelativePath=baseservices\threading\generics\TimerCallback\thread07\thread07.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i35.cmd_4658] +RelativePath=JIT\jit64\mcc\interop\mcc_i35\mcc_i35.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i35 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated331.cmd_4659] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest331\Generated331\Generated331.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest331\Generated331 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumerableGetEnumerator.cmd_4660] +RelativePath=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator\IEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b126221.cmd_4661] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221\b126221.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgbox.cmd_4662] +RelativePath=JIT\Methodical\int64\misc\_il_dbgbox\_il_dbgbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_il_dbgbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated218.cmd_4663] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest218\Generated218\Generated218.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest218\Generated218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesStatic.cmd_4664] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic\MethodAttributesStatic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleIsInfinity.cmd_4665] +RelativePath=CoreMangLib\cti\system\single\SingleIsInfinity\SingleIsInfinity.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleIsInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_223.cmd_4666] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_223\GCSimulator_223.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadExceptionCtor3.cmd_4667] +RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3\TypeLoadExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_710121.cmd_4668] +RelativePath=Loader\classloader\regressions\dev10_710121\dev10_710121\dev10_710121.cmd +WorkingDir=Loader\classloader\regressions\dev10_710121\dev10_710121 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[value_d.cmd_4669] +RelativePath=JIT\Directed\nullabletypes\value_d\value_d.cmd +WorkingDir=JIT\Directed\nullabletypes\value_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated587.cmd_4670] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest587\Generated587\Generated587.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest587\Generated587 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10780.cmd_4671] +RelativePath=JIT\Regression\JitBlue\GitHub_10780\GitHub_10780\GitHub_10780.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10780\GitHub_10780 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ShowLocallocAlignment.cmd_4672] +RelativePath=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment\ShowLocallocAlignment.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGeDbl.cmd_4673] +RelativePath=JIT\CodeGenBringUpTests\JTrueGeDbl\JTrueGeDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGeDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread03.cmd_4674] +RelativePath=baseservices\threading\generics\threadstart\GThread03\GThread03.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfpseh6_1.cmd_4675] +RelativePath=JIT\jit64\gc\misc\structfpseh6_1\structfpseh6_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfpseh6_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringTrim3.cmd_4676] +RelativePath=CoreMangLib\cti\system\string\StringTrim3\StringTrim3.cmd +WorkingDir=CoreMangLib\cti\system\string\StringTrim3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[8Queens.cmd_4677] +RelativePath=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens\8Queens.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated481.cmd_4678] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest481\Generated481\Generated481.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest481\Generated481 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_byte.cmd_4679] +RelativePath=JIT\Directed\zeroinit\init_byte\init_byte.cmd +WorkingDir=JIT\Directed\zeroinit\init_byte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_HndIndex_10_Reordered.cmd_4680] +RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered\Test_HndIndex_10_Reordered.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14077.cmd_4681] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077\b14077.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_4682] +RelativePath=JIT\Directed\PREFIX\volatile\1\Desktop\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\Desktop\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct16args.cmd_4683] +RelativePath=JIT\CodeGenBringUpTests\struct16args\struct16args.cmd +WorkingDir=JIT\CodeGenBringUpTests\struct16args +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Peer_2.cmd_4684] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2\Generic_Test_CSharp_Peer_2.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackCount.cmd_4685] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCount\StackCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MulticastDelegateCombineImpl.cmd_4686] +RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl\MulticastDelegateCombineImpl.cmd +WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_129.cmd_4687] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_129\GCSimulator_129.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldsfld_mulovf.cmd_4688] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf\_speed_dbgs_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_r4.cmd_4689] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r4\mul_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryexcept_d.cmd_4690] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d\nestedtryexcept_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_simpleoddpower_il_r.cmd_4691] +RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_r\_simpleoddpower_il_r.cmd +WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated684.cmd_4692] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest684\Generated684\Generated684.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest684\Generated684 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToSingle.cmd_4693] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle\BooleanIConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbginitializearray_enum.cmd_4694] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum\_il_dbginitializearray_enum.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedexceptnofin_d.cmd_4695] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d\throwincascadedexceptnofin_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgarrays.cmd_4696] +RelativePath=JIT\Methodical\casts\array\_il_dbgarrays\_il_dbgarrays.cmd +WorkingDir=JIT\Methodical\casts\array\_il_dbgarrays +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initobj.cmd_4697] +RelativePath=JIT\Directed\PREFIX\unaligned\1\initobj\initobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\initobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null015.cmd_4698] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015\castclass-null015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCGetTotalMemory.cmd_4699] +RelativePath=CoreMangLib\cti\system\gc\GCGetTotalMemory\GCGetTotalMemory.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCGetTotalMemory +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fgtest1.cmd_4700] +RelativePath=JIT\jit64\gc\misc\fgtest1\fgtest1.cmd +WorkingDir=JIT\jit64\gc\misc\fgtest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1493.cmd_4701] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1493\Generated1493\Generated1493.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1493\Generated1493 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_No_Op_cs_r.cmd_4702] +RelativePath=JIT\Directed\cmov\Double_No_Op_cs_r\Double_No_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault-struct03.cmd_4703] +RelativePath=baseservices\exceptions\generics\try-fault-struct03\try-fault-struct03.cmd +WorkingDir=baseservices\exceptions\generics\try-fault-struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathE.cmd_4704] +RelativePath=CoreMangLib\cti\system\math\MathE\MathE.cmd +WorkingDir=CoreMangLib\cti\system\math\MathE +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNrem_cs_do.cmd_4705] +RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_do\r4NaNrem_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit8.cmd_4706] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit8\_relexplicit8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyKeyFileAttributeKeyFile.cmd_4707] +RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile\AssemblyKeyFileAttributeKeyFile.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt324.cmd_4708] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt324\ConvertToUInt324.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt324 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg2.cmd_4709] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg2\semaphoreopenneg2.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40174.cmd_4710] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174\b40174.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27873.cmd_4711] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873\b27873.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1205.cmd_4712] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1205\Generated1205\Generated1205.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1205\Generated1205 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass014.cmd_4713] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014\castclass014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeaftertry_r.cmd_4714] +RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_r\badcodeaftertry_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Swap.cmd_4715] +RelativePath=JIT\CodeGenBringUpTests\Swap\Swap.cmd +WorkingDir=JIT\CodeGenBringUpTests\Swap +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs_ulong.cmd_4716] +RelativePath=JIT\Methodical\int64\arrays\_dbglcs_ulong\_dbglcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_7907.cmd_4717] +RelativePath=JIT\Regression\JitBlue\GitHub_7907\GitHub_7907\GitHub_7907.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_7907\GitHub_7907 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relisinst_ldloc.cmd_4718] +RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldloc\_relisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44861.cmd_4719] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861\b44861.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimaldiv_cs_ro.cmd_4720] +RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_ro\decimaldiv_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteEquals1.cmd_4721] +RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals1\SByteEquals1.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated580.cmd_4722] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest580\Generated580\Generated580.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest580\Generated580 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeTClass_1.cmd_4723] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_1\CompareExchangeTClass_1.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldc_mul.cmd_4724] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mul\_speed_relldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarray.cmd_4725] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relarray\_il_relarray.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop4_cs_d.cmd_4726] +RelativePath=JIT\Directed\UnrollLoop\loop4_cs_d\loop4_cs_d.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ulong_cs_do.cmd_4727] +RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_do\ulong_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovflrem2_il_r.cmd_4728] +RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_r\ovflrem2_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SeekOriginBegin.cmd_4729] +RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin\SeekOriginBegin.cmd +WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null011.cmd_4730] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011\box-unbox-null011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8flat_cs_ro.cmd_4731] +RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_ro\r8flat_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivideByZeroExceptionCtor.cmd_4732] +RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor\DivideByZeroExceptionCtor.cmd +WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrotarg_double.cmd_4733] +RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_double\_opt_relrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reversedhandlers_r.cmd_4734] +RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_r\reversedhandlers_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringToCharArray.cmd_4735] +RelativePath=CoreMangLib\cti\system\string\StringToCharArray\StringToCharArray.cmd +WorkingDir=CoreMangLib\cti\system\string\StringToCharArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldfld_mul.cmd_4736] +RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mul\_rels_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overldrem_cs_r.cmd_4737] +RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_r\overldrem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_cs_do.cmd_4738] +RelativePath=JIT\Directed\shift\uint16_cs_do\uint16_cs_do.cmd +WorkingDir=JIT\Directed\shift\uint16_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1150.cmd_4739] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1150\Generated1150\Generated1150.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1150\Generated1150 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated167.cmd_4740] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest167\Generated167\Generated167.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest167\Generated167 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InstrCnt1.cmd_4741] +RelativePath=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1\InstrCnt1.cmd +WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1488.cmd_4742] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1488\Generated1488\Generated1488.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1488\Generated1488 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg4.cmd_4743] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg4\openmutexneg4.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32303.cmd_4744] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303\b32303.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstenum_ro.cmd_4745] +RelativePath=JIT\Directed\nullabletypes\isinstenum_ro\isinstenum_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstenum_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated981.cmd_4746] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest981\Generated981\Generated981.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest981\Generated981 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated128.cmd_4747] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest128\Generated128\Generated128.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest128\Generated128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int_cs_ro.cmd_4748] +RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_ro\int_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryContainsKey.cmd_4749] +RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey\IDictionaryContainsKey.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56154.cmd_4750] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154\b56154.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgcall.cmd_4751] +RelativePath=JIT\Methodical\VT\callconv\_dbgcall\_dbgcall.cmd +WorkingDir=JIT\Methodical\VT\callconv\_dbgcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44018.cmd_4752] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018\b44018.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-6.cmd_4753] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6\_speed_dbgunsafe-6.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticValueField.cmd_4754] +RelativePath=JIT\CodeGenBringUpTests\StaticValueField\StaticValueField.cmd +WorkingDir=JIT\CodeGenBringUpTests\StaticValueField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcastclass_newobj.cmd_4755] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj\_speed_dbgcastclass_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated322.cmd_4756] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest322\Generated322\Generated322.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest322\Generated322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox011.cmd_4757] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011\box-unbox011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cond32_il_r.cmd_4758] +RelativePath=JIT\Methodical\NaN\cond32_il_r\cond32_il_r.cmd +WorkingDir=JIT\Methodical\NaN\cond32_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads1_cs_do.cmd_4759] +RelativePath=JIT\Methodical\cctor\misc\threads1_cs_do\threads1_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-1.cmd_4760] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1\_speed_dbgunsafe-1.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4_cs_do.cmd_4761] +RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_do\r4_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcall.cmd_4762] +RelativePath=JIT\Methodical\VT\callconv\_speed_relcall\_speed_relcall.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_relcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b138117.cmd_4763] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117\b138117.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1312.cmd_4764] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1312\Generated1312\Generated1312.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1312\Generated1312 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_51.cmd_4765] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_51\GCSimulator_51.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_51 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8div_cs_do.cmd_4766] +RelativePath=JIT\Methodical\divrem\div\i8div_cs_do\i8div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\i8div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated827.cmd_4767] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest827\Generated827\Generated827.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest827\Generated827 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated780.cmd_4768] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest780\Generated780\Generated780.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest780\Generated780 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated862.cmd_4769] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest862\Generated862\Generated862.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest862\Generated862 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ifelse.cmd_4770] +RelativePath=JIT\opt\Inline\tests\ifelse\ifelse.cmd +WorkingDir=JIT\opt\Inline\tests\ifelse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics005.cmd_4771] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005\box-unbox-generics005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[assemname_cs_d.cmd_4772] +RelativePath=JIT\Methodical\cctor\misc\assemname_cs_d\assemname_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12668.cmd_4773] +RelativePath=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668\b12668.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static-object.cmd_4774] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object\static-object.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1426.cmd_4775] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1426\Generated1426\Generated1426.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1426\Generated1426 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToByte.cmd_4776] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToByte\ByteIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-01_cs_ro.cmd_4777] +RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_ro\5w1d-01_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekSaturday.cmd_4778] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday\DayOfWeekSaturday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_I1.cmd_4779] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1\OpCodesLdelem_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value011.cmd_4780] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011\box-unbox-value011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated257.cmd_4781] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest257\Generated257\Generated257.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest257\Generated257 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret5_2.cmd_4782] +RelativePath=JIT\jit64\gc\misc\structret5_2\structret5_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret5_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi.cmd_4783] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi\StackBehaviourPopi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc_1.cmd_4784] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1\OpCodesLdloc_1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OOMException01.cmd_4785] +RelativePath=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01\OOMException01.cmd +WorkingDir=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep2.cmd_4786] +RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep2\_il_dbgdeep2.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToDateTime.cmd_4787] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime\BooleanIConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29727.cmd_4788] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727\b29727.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0C_r.cmd_4789] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_r\hfa_sd0C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_f8.cmd_4790] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f8\_opt_relrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CheckProjects.cmd_4791] +RelativePath=JIT\CheckProjects\CheckProjects\CheckProjects.cmd +WorkingDir=JIT\CheckProjects\CheckProjects +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;10635;EXCLUDED;REQUIRES_SOURCES +HostStyle=0 + +[FieldAttributesFamANDAssem.cmd_4792] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem\FieldAttributesFamANDAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null022.cmd_4793] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022\box-unbox-null022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt.cmd_4794] +RelativePath=JIT\IL_Conformance\Old\Base\blt\blt.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\blt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitfromnestedcatch_do.cmd_4795] +RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do\nonlocalexitfromnestedcatch_do.cmd +WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_4796] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01\class01.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-7-3.cmd_4797] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-7-3\L-1-7-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-7-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgreference_i.cmd_4798] +RelativePath=JIT\Methodical\tailcall\_il_dbgreference_i\_il_dbgreference_i.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgreference_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Recursion.cmd_4799] +RelativePath=JIT\Directed\forceinlining\Recursion\Recursion.cmd +WorkingDir=JIT\Directed\forceinlining\Recursion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally01.cmd_4800] +RelativePath=baseservices\exceptions\generics\try-catch-finally01\try-catch-finally01.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilefield.cmd_4801] +RelativePath=JIT\jit64\opt\cse\volatilefield\volatilefield.cmd +WorkingDir=JIT\jit64\opt\cse\volatilefield +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[426480.cmd_4802] +RelativePath=GC\Regressions\v2.0-beta2\426480\426480\426480.cmd +WorkingDir=GC\Regressions\v2.0-beta2\426480\426480 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1468.cmd_4803] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1468\Generated1468\Generated1468.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1468\Generated1468 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_cs_d.cmd_4804] +RelativePath=JIT\Directed\shift\uint16_cs_d\uint16_cs_d.cmd +WorkingDir=JIT\Directed\shift\uint16_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I2_Un.cmd_4805] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un\OpCodesConv_Ovf_I2_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_r4_r8_inl.cmd_4806] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl\_il_relcompat_r4_r8_inl.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_class01.cmd_4807] +RelativePath=JIT\Generics\Fields\static_equalnull_class01\static_equalnull_class01.cmd +WorkingDir=JIT\Generics\Fields\static_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor3.cmd_4808] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3\MemoryStreamCtor3.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegates002.cmd_4809] +RelativePath=Loader\classloader\generics\Variance\Delegates\Delegates002\Delegates002.cmd +WorkingDir=Loader\classloader\generics\Variance\Delegates\Delegates002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-03_cs_ro.cmd_4810] +RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_ro\5w1d-03_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mathRound1.cmd_4811] +RelativePath=CoreMangLib\cti\system\math\mathRound1\mathRound1.cmd +WorkingDir=CoreMangLib\cti\system\math\mathRound1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_call.cmd_4812] +RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_call\_il_relisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToString2.cmd_4813] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToString2\DecimalToString2.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass021.cmd_4814] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021\castclass021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param02.cmd_4815] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param02\param02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TotalMemory2.cmd_4816] +RelativePath=GC\API\GC\TotalMemory2\TotalMemory2.cmd +WorkingDir=GC\API\GC\TotalMemory2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_r4.cmd_4817] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4\stloc_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relnested.cmd_4818] +RelativePath=JIT\Methodical\VT\etc\_relnested\_relnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_relnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated941.cmd_4819] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest941\Generated941\Generated941.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest941\Generated941 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPRoots.cmd_4820] +RelativePath=JIT\CodeGenBringUpTests\FPRoots\FPRoots.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPRoots +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated523.cmd_4821] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest523\Generated523\Generated523.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest523\Generated523 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_int_1_r.cmd_4822] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_r\expl_gc_int_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectToString.cmd_4823] +RelativePath=CoreMangLib\cti\system\object\ObjectToString\ObjectToString.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemberAccessExceptionCtor2.cmd_4824] +RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2\MemberAccessExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_c.cmd_4825] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_c\_opt_relrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToDateTime.cmd_4826] +RelativePath=CoreMangLib\cti\system\single\SingleToDateTime\SingleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1215.cmd_4827] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1215\Generated1215\Generated1215.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1215\Generated1215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_mutual_rec.cmd_4828] +RelativePath=JIT\Methodical\tailcall\_il_reltest_mutual_rec\_il_reltest_mutual_rec.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_mutual_rec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftncalli_il_d.cmd_4829] +RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d\ldvirtftncalli_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh13_small.cmd_4830] +RelativePath=JIT\jit64\localloc\ehverify\eh13_small\eh13_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh13_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_class01.cmd_4831] +RelativePath=JIT\Generics\Fields\static_assignment_class01\static_assignment_class01.cmd +WorkingDir=JIT\Generics\Fields\static_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testExplicitOverride.cmd_4832] +RelativePath=Loader\classloader\generics\regressions\395780\testExplicitOverride\testExplicitOverride.cmd +WorkingDir=Loader\classloader\generics\regressions\395780\testExplicitOverride +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesDup.cmd_4833] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup\OpCodesDup.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToByte.cmd_4834] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte\UInt16IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_double.cmd_4835] +RelativePath=Regressions\expl_double\expl_double\expl_double.cmd +WorkingDir=Regressions\expl_double\expl_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-6b-two.cmd_4836] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-6b-two\RMV-2-13-6b-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-6b-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[default_struct01.cmd_4837] +RelativePath=JIT\Generics\TypeParameters\default_struct01\default_struct01.cmd +WorkingDir=JIT\Generics\TypeParameters\default_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relsizeof64.cmd_4838] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64\_speed_relsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4flat_cs_d.cmd_4839] +RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_d\r4flat_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reliface1.cmd_4840] +RelativePath=JIT\Methodical\casts\iface\_reliface1\_reliface1.cmd +WorkingDir=JIT\Methodical\casts\iface\_reliface1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte2.cmd_4841] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte2\ConvertToSByte2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfault_jmp.cmd_4842] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp\_il_dbgcatchfault_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30630.cmd_4843] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630\b30630.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null020.cmd_4844] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020\castclass-null020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackGetEnumerator.cmd_4845] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator\StackGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated890.cmd_4846] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest890\Generated890\Generated890.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest890\Generated890 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg5.cmd_4847] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg5\openmutexneg5.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDelegate_2.cmd_4848] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate_2\ThreadStartDelegate_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_348.cmd_4849] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_348\GCSimulator_348.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_348 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedcatch_r.cmd_4850] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r\cascadedcatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relmuldiv.cmd_4851] +RelativePath=JIT\Methodical\int64\unsigned\_il_relmuldiv\_il_relmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleTypeNormal.cmd_4852] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal\GCHandleTypeNormal.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array2.cmd_4853] +RelativePath=JIT\Methodical\refany\array2\array2.cmd +WorkingDir=JIT\Methodical\refany\array2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structref1_1.cmd_4854] +RelativePath=JIT\jit64\gc\misc\structref1_1\structref1_1.cmd +WorkingDir=JIT\jit64\gc\misc\structref1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw531159.cmd_4855] +RelativePath=Loader\classloader\regressions\vsw531159\vsw531159\vsw531159.cmd +WorkingDir=Loader\classloader\regressions\vsw531159\vsw531159 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b333008.cmd_4856] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008\b333008.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorAbs_ro.cmd_4857] +RelativePath=JIT\SIMD\VectorAbs_ro\VectorAbs_ro.cmd +WorkingDir=JIT\SIMD\VectorAbs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedAssembly.cmd_4858] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly\TypeAttributesNestedAssembly.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bestfit.cmd_4859] +RelativePath=GC\Features\HeapExpansion\bestfit\bestfit.cmd +WorkingDir=GC\Features\HeapExpansion\bestfit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_4860] +RelativePath=JIT\Directed\PREFIX\unaligned\1\initblk\initblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call_instance01.cmd_4861] +RelativePath=JIT\Generics\Constraints\call_instance01\call_instance01.cmd +WorkingDir=JIT\Generics\Constraints\call_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_201.cmd_4862] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_201\GCSimulator_201.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_201 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToByte.cmd_4863] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToByte\Int16IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null008.cmd_4864] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008\castclass-null008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplOptionsPreserveSig.cmd_4865] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig\MethodImplOptionsPreserveSig.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch6.cmd_4866] +RelativePath=JIT\Methodical\switch\switch6\switch6.cmd +WorkingDir=JIT\Methodical\switch\switch6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_r.cmd_4867] +RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_r\classarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relarrres.cmd_4868] +RelativePath=JIT\Methodical\Arrays\misc\_relarrres\_relarrres.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_relarrres +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_ep.cmd_4869] +RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep\_il_dbgrecurse_ep.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test5.cmd_4870] +RelativePath=Loader\classloader\regressions\181424\test5\test5.cmd +WorkingDir=Loader\classloader\regressions\181424\test5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated368.cmd_4871] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest368\Generated368\Generated368.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest368\Generated368 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated829.cmd_4872] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest829\Generated829\Generated829.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest829\Generated829 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated85.cmd_4873] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest85\Generated85\Generated85.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest85\Generated85 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_ro.cmd_4874] +RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro\classarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilstind_il_d.cmd_4875] +RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d\volatilstind_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToInt16.cmd_4876] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16\BooleanIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_0_5a.cmd_4877] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5a\_il_relint32_0_5a.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1359.cmd_4878] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1359\Generated1359\Generated1359.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1359\Generated1359 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor6.cmd_4879] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6\MemoryStreamCtor6.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i31.cmd_4880] +RelativePath=JIT\jit64\mcc\interop\mcc_i31\mcc_i31.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i31 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[dev10_531793.cmd_4881] +RelativePath=Loader\classloader\generics\regressions\dev10_531793\dev10_531793\dev10_531793.cmd +WorkingDir=Loader\classloader\generics\regressions\dev10_531793\dev10_531793 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics028.cmd_4882] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028\castclass-generics028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructLayoutAttributeCtor.cmd_4883] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor\StructLayoutAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated348.cmd_4884] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest348\Generated348\Generated348.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest348\Generated348 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_int_1_d.cmd_4885] +RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_d\seq_int_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteObject.cmd_4886] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteObject\ReadWriteObject.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_i4.cmd_4887] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4\bgt_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString29.cmd_4888] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString29\ConvertToString29.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayMD1.cmd_4889] +RelativePath=JIT\CodeGenBringUpTests\ArrayMD1\ArrayMD1.cmd +WorkingDir=JIT\CodeGenBringUpTests\ArrayMD1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread08.cmd_4890] +RelativePath=baseservices\threading\generics\threadstart\GThread08\GThread08.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated190.cmd_4891] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest190\Generated190\Generated190.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest190\Generated190 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_6.cmd_4892] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_6\GCSimulator_6.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanEquals2.cmd_4893] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals2\TimeSpanEquals2.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6416.cmd_4894] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6416\ConvertToUInt6416.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6416 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77950.cmd_4895] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950\b77950.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_92.cmd_4896] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_92\GCSimulator_92.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_92 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToInt16.cmd_4897] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16\Int16IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_269.cmd_4898] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_269\GCSimulator_269.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_269 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[emptyfinally_r.cmd_4899] +RelativePath=JIT\Methodical\eh\basics\emptyfinally_r\emptyfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\emptyfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc_0.cmd_4900] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0\OpCodesLdloc_0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeFlowControl.cmd_4901] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl\OpCodeFlowControl.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFLog10.cmd_4902] +RelativePath=CoreMangLib\cti\system\mathf\MathFLog10\MathFLog10.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFLog10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_715437.cmd_4903] +RelativePath=Loader\classloader\regressions\dev10_715437\dev10_715437\dev10_715437.cmd +WorkingDir=Loader\classloader\regressions\dev10_715437\dev10_715437 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arglist_pos.cmd_4904] +RelativePath=JIT\Methodical\Coverage\arglist_pos\arglist_pos.cmd +WorkingDir=JIT\Methodical\Coverage\arglist_pos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_speed_rellcs.cmd_4905] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs\_speed_rellcs.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_ref.cmd_4906] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_ref\ret_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02b_seq.cmd_4907] +RelativePath=Loader\classloader\generics\Layout\General\Base02b_seq\Base02b_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02b_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics040.cmd_4908] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040\castclass-generics040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_r4.cmd_4909] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r4\beq_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[or_u8.cmd_4910] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u8\or_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoutofnestedtryfinally_r.cmd_4911] +RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r\branchoutofnestedtryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b487364.cmd_4912] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364\b487364.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42009.cmd_4913] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009\b42009.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ldind_r.cmd_4914] +RelativePath=JIT\SIMD\Ldind_r\Ldind_r.cmd +WorkingDir=JIT\SIMD\Ldind_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface010.cmd_4915] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010\box-unbox-interface010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_i8.cmd_4916] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8\bgt_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4div_cs_do.cmd_4917] +RelativePath=JIT\Methodical\divrem\div\i4div_cs_do\i4div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\i4div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfinally_jmp.cmd_4918] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp\_il_dbgcatchfinally_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclflddiv_cs_ro.cmd_4919] +RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro\lclflddiv_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AsgAdd1.cmd_4920] +RelativePath=JIT\CodeGenBringUpTests\AsgAdd1\AsgAdd1.cmd +WorkingDir=JIT\CodeGenBringUpTests\AsgAdd1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1351.cmd_4921] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1351\Generated1351\Generated1351.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1351\Generated1351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated417.cmd_4922] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest417\Generated417\Generated417.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest417\Generated417 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox010.cmd_4923] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010\box-unbox010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_355.cmd_4924] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_355\GCSimulator_355.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_355 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadCulture.cmd_4925] +RelativePath=Regressions\common\ThreadCulture\ThreadCulture.cmd +WorkingDir=Regressions\common\ThreadCulture +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59822.cmd_4926] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822\b59822.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToInt32.cmd_4927] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt32\CharIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated5.cmd_4928] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest5\Generated5\Generated5.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest5\Generated5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesCompressed.cmd_4929] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed\FileAttributesCompressed.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyByteArray.cmd_4930] +RelativePath=Interop\MarshalAPI\Copy\CopyByteArray\CopyByteArray.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyByteArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_146.cmd_4931] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_146\GCSimulator_146.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_146 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated925.cmd_4932] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest925\Generated925\Generated925.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest925\Generated925 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_class_instance02.cmd_4933] +RelativePath=JIT\Generics\Exceptions\specific_class_instance02\specific_class_instance02.cmd +WorkingDir=JIT\Generics\Exceptions\specific_class_instance02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated857.cmd_4934] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest857\Generated857\Generated857.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest857\Generated857 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AsgAnd1.cmd_4935] +RelativePath=JIT\CodeGenBringUpTests\AsgAnd1\AsgAnd1.cmd +WorkingDir=JIT\CodeGenBringUpTests\AsgAnd1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf1.cmd_4936] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1\ArrayIndexOf1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1_cs_d.cmd_4937] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_d\xprecise1_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_4938] +RelativePath=JIT\Directed\PREFIX\volatile\1\cpblk\cpblk.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsField.cmd_4939] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsField\AttributeTargetsField.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase3.cmd_4940] +RelativePath=Loader\classloader\InterfaceFolding\TestCase3\TestCase3.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsmixed.cmd_4941] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed\_speed_dbglcsmixed.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_127.cmd_4942] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_127\GCSimulator_127.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_127 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_starg.cmd_4943] +RelativePath=JIT\IL_Conformance\Old\Base\ldarg_starg\ldarg_starg.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_starg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteInt32.cmd_4944] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteInt32\ReadWriteInt32.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-02_cs_do.cmd_4945] +RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_do\5w1d-02_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_r.cmd_4946] +RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_r\structarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Forced_3.cmd_4947] +RelativePath=GC\API\GC\Collect_Forced_3\Collect_Forced_3.cmd +WorkingDir=GC\API\GC\Collect_Forced_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting31.cmd_4948] +RelativePath=Loader\classloader\nesting\coreclr\nesting31\nesting31.cmd +WorkingDir=Loader\classloader\nesting\coreclr\nesting31 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcalli.cmd_4949] +RelativePath=JIT\Methodical\VT\callconv\_il_relcalli\_il_relcalli.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_relcalli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchbeforetrybody_d.cmd_4950] +RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_d\catchbeforetrybody_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated979.cmd_4951] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest979\Generated979\Generated979.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest979\Generated979 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BestFitMapping.cmd_4952] +RelativePath=Interop\BestFitMapping\BestFitMapping\BestFitMapping.cmd +WorkingDir=Interop\BestFitMapping\BestFitMapping +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Mul_r.cmd_4953] +RelativePath=JIT\SIMD\Mul_r\Mul_r.cmd +WorkingDir=JIT\SIMD\Mul_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10939.cmd_4954] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939\b10939.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CultureChangeSecurity.cmd_4955] +RelativePath=baseservices\threading\currentculture\CultureChangeSecurity\CultureChangeSecurity.cmd +WorkingDir=baseservices\threading\currentculture\CultureChangeSecurity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit1.cmd_4956] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit1\_relexplicit1.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated807.cmd_4957] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest807\Generated807\Generated807.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest807\Generated807 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_large.cmd_4958] +RelativePath=JIT\Methodical\localloc\verify\verify01_large\verify01_large.cmd +WorkingDir=JIT\Methodical\localloc\verify\verify01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesMkrefany.cmd_4959] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany\OpCodesMkrefany.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex2a.cmd_4960] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex2a\waitoneex2a.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor3.cmd_4961] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor3\DecimalCtor3.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated280.cmd_4962] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest280\Generated280\Generated280.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest280\Generated280 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_r8.cmd_4963] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r8\_il_dbghuge_r8.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs.cmd_4964] +RelativePath=JIT\Methodical\VT\port\_rellcs\_rellcs.cmd +WorkingDir=JIT\Methodical\VT\port\_rellcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartNull.cmd_4965] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull\ThreadStartNull.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Sums_ro.cmd_4966] +RelativePath=JIT\SIMD\Sums_ro\Sums_ro.cmd +WorkingDir=JIT\SIMD\Sums_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfaulttrycatchfn_r.cmd_4967] +RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r\tryfaulttrycatchfn_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExceptionCtor2.cmd_4968] +RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor2\ExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61515.cmd_4969] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515\b61515.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_r_try.cmd_4970] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_try\simpleexpr4_r_try.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray1_cs_do.cmd_4971] +RelativePath=JIT\Methodical\doublearray\dblarray1_cs_do\dblarray1_cs_do.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45259.cmd_4972] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259\b45259.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1433.cmd_4973] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1433\Generated1433\Generated1433.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1433\Generated1433 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[newobj.cmd_4974] +RelativePath=JIT\IL_Conformance\Old\objectmodel\newobj\newobj.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfault_d.cmd_4975] +RelativePath=JIT\Methodical\eh\basics\tryfault_d\tryfault_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfault_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox020.cmd_4976] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020\box-unbox020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox016.cmd_4977] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016\box-unbox016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_181.cmd_4978] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_181\GCSimulator_181.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_181 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b405223.cmd_4979] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223\b405223.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_327.cmd_4980] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_327\GCSimulator_327.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_327 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte4.cmd_4981] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte4\ConvertToByte4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_U1.cmd_4982] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1\OpCodesLdind_U1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relval_ctor.cmd_4983] +RelativePath=JIT\Methodical\Invoke\ctor\_relval_ctor\_relval_ctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_relval_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_42.cmd_4984] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_42\GCSimulator_42.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_42 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter003.cmd_4985] +RelativePath=baseservices\exceptions\generics\TypeParameter003\TypeParameter003.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated157.cmd_4986] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest157\Generated157\Generated157.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest157\Generated157 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalTruncate.cmd_4987] +RelativePath=CoreMangLib\cti\system\decimal\DecimalTruncate\DecimalTruncate.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalTruncate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryKeyCollectionEnumeratorCurrent.cmd_4988] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent\DictionaryKeyCollectionEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-6.cmd_4989] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-6\_dbgunsafe-6.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToDouble.cmd_4990] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble\DoubleIConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_33.cmd_4991] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_33\GCSimulator_33.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_33 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12008.cmd_4992] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008\b12008.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_o.cmd_4993] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o\_il_dbgrefloc_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Shift.cmd_4994] +RelativePath=JIT\CodeGenBringUpTests\Shift\Shift.cmd +WorkingDir=JIT\CodeGenBringUpTests\Shift +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc_2.cmd_4995] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2\OpCodesLdloc_2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BinaryWriterOutStream_PSC.cmd_4996] +RelativePath=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC\BinaryWriterOutStream_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b38403.cmd_4997] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403\b38403.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49809.cmd_4998] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809\b49809.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface012.cmd_4999] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012\castclass-interface012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated656.cmd_5000] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest656\Generated656\Generated656.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest656\Generated656 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-6-3.cmd_5001] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-6-3\L-1-6-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-6-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStatic02.cmd_5002] +RelativePath=baseservices\threading\threadstatic\ThreadStatic02\ThreadStatic02.cmd +WorkingDir=baseservices\threading\threadstatic\ThreadStatic02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[variantlinklist.cmd_5003] +RelativePath=GC\Scenarios\Boxing\variantlinklist\variantlinklist.cmd +WorkingDir=GC\Scenarios\Boxing\variantlinklist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct06.cmd_5004] +RelativePath=baseservices\exceptions\generics\try-catch-struct06\try-catch-struct06.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value009.cmd_5005] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009\box-unbox-value009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59899.cmd_5006] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899\b59899.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50042.cmd_5007] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042\b50042.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15617.cmd_5008] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617\b15617.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[identity3_il_r.cmd_5009] +RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_r\identity3_il_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value004.cmd_5010] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004\box-unbox-value004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02.cmd_5011] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02\class02.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedInt.cmd_5012] +RelativePath=GC\Features\Pinning\PinningOther\PinnedInt\PinnedInt.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFSign.cmd_5013] +RelativePath=CoreMangLib\cti\system\mathf\MathFSign\MathFSign.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFSign +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleTypeWeakTrackResurrection.cmd_5014] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection\GCHandleTypeWeakTrackResurrection.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn_ret.cmd_5015] +RelativePath=JIT\jit64\opt\cg\il\ldftn_ret\ldftn_ret.cmd +WorkingDir=JIT\jit64\opt\cg\il\ldftn_ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-1-3.cmd_5016] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-1-3\L-1-1-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-1-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bigvtbl_cs_r.cmd_5017] +RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r\bigvtbl_cs_r.cmd +WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RayTracer.cmd_5018] +RelativePath=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer\RayTracer.cmd +WorkingDir=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_r4.cmd_5019] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r4\ldloc_s_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetMaxCharCount.cmd_5020] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount\EncodingGetMaxCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_double_1_d.cmd_5021] +RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_d\seq_double_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetBytes2.cmd_5022] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2\EncodingGetBytes2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_r_loop.cmd_5023] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop\arrayexpr2_r_loop.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect0.cmd_5024] +RelativePath=GC\API\GC\Collect0\Collect0.cmd +WorkingDir=GC\API\GC\Collect0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated477.cmd_5025] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest477\Generated477\Generated477.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest477\Generated477 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldsub_cs_r.cmd_5026] +RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_r\lclfldsub_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCCollect.cmd_5027] +RelativePath=CoreMangLib\cti\system\gc\GCCollect\GCCollect.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCCollect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionCopyTo.cmd_5028] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo\DictionaryValueCollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRefanyval.cmd_5029] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval\OpCodesRefanyval.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reljumper.cmd_5030] +RelativePath=JIT\Methodical\VT\callconv\_reljumper\_reljumper.cmd +WorkingDir=JIT\Methodical\VT\callconv\_reljumper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b602004.cmd_5031] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004\b602004.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsizeof32.cmd_5032] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof32\_il_relsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNadd_cs_ro.cmd_5033] +RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_ro\r4NaNadd_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i4_u4.cmd_5034] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4\conv_ovf_i4_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorFourThreads.cmd_5035] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorFourThreads\CircularCctorFourThreads.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorFourThreads +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads01BFI.cmd_5036] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads01BFI\CircularCctorThreeThreads01BFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads01BFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesPublic.cmd_5037] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic\TypeAttributesPublic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_s.cmd_5038] +RelativePath=JIT\IL_Conformance\Old\Base\bne_s\bne_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bne_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCpblk.cmd_5039] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk\OpCodesCpblk.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_u2.cmd_5040] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2\ldc_add_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated881.cmd_5041] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest881\Generated881\Generated881.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest881\Generated881 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsvalbox.cmd_5042] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsvalbox\_rellcsvalbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsvalbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46569.cmd_5043] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569\b46569.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructInClass.cmd_5044] +RelativePath=JIT\opt\Inline\tests\StructInClass\StructInClass.cmd +WorkingDir=JIT\opt\Inline\tests\StructInClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1049.cmd_5045] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1049\Generated1049\Generated1049.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1049\Generated1049 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated73.cmd_5046] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest73\Generated73\Generated73.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest73\Generated73 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tail.cmd_5047] +RelativePath=JIT\Directed\zeroinit\tail\tail.cmd +WorkingDir=JIT\Directed\zeroinit\tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1062.cmd_5048] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1062\Generated1062\Generated1062.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1062\Generated1062 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToByte.cmd_5049] +RelativePath=CoreMangLib\cti\system\single\SingleToByte\SingleToByte.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_R4.cmd_5050] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4\OpCodesStind_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar11.cmd_5051] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar11\ConvertToChar11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_5052] +RelativePath=Loader\classloader\TSAmbiguities\CollapsedMethods\InterfaceImplementation\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\CollapsedMethods\InterfaceImplementation\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartByte_1.cmd_5053] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte_1\ThreadStartByte_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callvirt.cmd_5054] +RelativePath=JIT\IL_Conformance\Old\objectmodel\callvirt\callvirt.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\callvirt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rvastatic3.cmd_5055] +RelativePath=JIT\Directed\rvastatics\rvastatic3\rvastatic3.cmd +WorkingDir=JIT\Directed\rvastatics\rvastatic3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[CallingConventionsExplicitThis.cmd_5056] +RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis\CallingConventionsExplicitThis.cmd +WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow01_sub.cmd_5057] +RelativePath=JIT\jit64\rtchecks\overflow\overflow01_sub\overflow01_sub.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoutofnestedtryfinally_d.cmd_5058] +RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d\branchoutofnestedtryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_124.cmd_5059] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_124\GCSimulator_124.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_124 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringPadRight.cmd_5060] +RelativePath=CoreMangLib\cti\system\string\StringPadRight\StringPadRight.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadRight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1268.cmd_5061] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1268\Generated1268\Generated1268.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1268\Generated1268 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret1_3.cmd_5062] +RelativePath=JIT\jit64\gc\misc\structret1_3\structret1_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret1_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionEnumeratorIEnumeratorReset.cmd_5063] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset\KeyCollectionEnumeratorIEnumeratorReset.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_232.cmd_5064] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_232\GCSimulator_232.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_232 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex10a.cmd_5065] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex10a\waitanyex10a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex10a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated248.cmd_5066] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest248\Generated248\Generated248.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest248\Generated248 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_391.cmd_5067] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_391\GCSimulator_391.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_391 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated503.cmd_5068] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest503\Generated503\Generated503.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest503\Generated503 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array2.cmd_5069] +RelativePath=JIT\CodeGenBringUpTests\Array2\Array2.cmd +WorkingDir=JIT\CodeGenBringUpTests\Array2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1273.cmd_5070] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1273\Generated1273\Generated1273.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1273\Generated1273 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_77.cmd_5071] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_77\GCSimulator_77.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_77 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_374.cmd_5072] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_374\GCSimulator_374.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_374 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_d.cmd_5073] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d\catchrettoinnertry_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated381.cmd_5074] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest381\Generated381\Generated381.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest381\Generated381 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05740.cmd_5075] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740\b05740.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32551a.cmd_5076] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a\b32551a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method001.cmd_5077] +RelativePath=Loader\classloader\generics\Variance\CoreCLR\Method001\Method001.cmd +WorkingDir=Loader\classloader\generics\Variance\CoreCLR\Method001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_16.cmd_5078] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_16\ConvertToInt16_16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor2.cmd_5079] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor2\DecimalCtor2.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Xor_Op_cs_r.cmd_5080] +RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_r\Int_Xor_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_5081] +RelativePath=JIT\Generics\Typeof\class01\class01.cmd +WorkingDir=JIT\Generics\Typeof\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-20-one.cmd_5082] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-20-one\RMV-2-8-20-one.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-20-one +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartOperations_2.cmd_5083] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations_2\ThreadStartOperations_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueTypeEquals2.cmd_5084] +RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals2\ValueTypeEquals2.cmd +WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalStructure.cmd_5085] +RelativePath=Interop\MarshalAPI\MarshalStructure\MarshalStructure\MarshalStructure.cmd +WorkingDir=Interop\MarshalAPI\MarshalStructure\MarshalStructure +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_s.cmd_5086] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_s\_opt_relrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldd.cmd_5087] +RelativePath=JIT\Methodical\VT\callconv\_il_reldd\_il_reldd.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reldd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int_cs_r.cmd_5088] +RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_r\int_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct05.cmd_5089] +RelativePath=baseservices\exceptions\generics\try-catch-struct05\try-catch-struct05.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedTryRegionsWithSameOffset3_o.cmd_5090] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o\nestedTryRegionsWithSameOffset3_o.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_opt.cmd_5091] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_opt\div_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_cs.cmd_5092] +RelativePath=JIT\Methodical\Boxing\functional\_orelsin_cs\_orelsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_orelsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeSize32.cmd_5093] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32\PackingSizeSize32.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate026.cmd_5094] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate026\Delegate026.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress3_ro.cmd_5095] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_ro\CgStress3_ro.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToInt64.cmd_5096] +RelativePath=CoreMangLib\cti\system\single\SingleToInt64\SingleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48350.cmd_5097] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350\b48350.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_struct_instance02.cmd_5098] +RelativePath=JIT\Generics\Exceptions\specific_struct_instance02\specific_struct_instance02.cmd +WorkingDir=JIT\Generics\Exceptions\specific_struct_instance02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToUInt64.cmd_5099] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64\SByteIConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Call_instance01_do.cmd_5100] +RelativePath=JIT\Generics\Constraints\Call_instance01_do\Call_instance01_do.cmd +WorkingDir=JIT\Generics\Constraints\Call_instance01_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1081.cmd_5101] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1081\Generated1081\Generated1081.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1081\Generated1081 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_863995.cmd_5102] +RelativePath=JIT\Directed\zeroinit\Dev10_863995\Dev10_863995.cmd +WorkingDir=JIT\Directed\zeroinit\Dev10_863995 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[regexdna.cmd_5103] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\regexdna\regexdna\regexdna.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\regexdna\regexdna +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_box_f8.cmd_5104] +RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8\_il_relrefarg_box_f8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_cs.cmd_5105] +RelativePath=JIT\Methodical\Boxing\morph\_relsin_cs\_relsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\morph\_relsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated504.cmd_5106] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest504\Generated504\Generated504.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest504\Generated504 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102729.cmd_5107] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729\b102729.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_flow.cmd_5108] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow\_il_dbgi_flow.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mathfunc.cmd_5109] +RelativePath=JIT\opt\Inline\tests\mathfunc\mathfunc.cmd +WorkingDir=JIT\opt\Inline\tests\mathfunc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackContains.cmd_5110] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackContains\StackContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b20217.cmd_5111] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217\b20217.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesMul.cmd_5112] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul\OpCodesMul.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEnumeratorCurrent.cmd_5113] +RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent\CharEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1260.cmd_5114] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1260\Generated1260\Generated1260.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1260\Generated1260 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25813.cmd_5115] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813\b25813.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_double_1_r.cmd_5116] +RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_r\seq_double_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface002.cmd_5117] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002\box-unbox-interface002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1618.cmd_5118] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1618\ConvertToUInt1618.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1618 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fact.cmd_5119] +RelativePath=JIT\opt\Inline\tests\fact\fact.cmd +WorkingDir=JIT\opt\Inline\tests\fact +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_R8.cmd_5120] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8\OpCodesStind_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedcatchnofin_d.cmd_5121] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d\throwincascadedcatchnofin_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated456.cmd_5122] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest456\Generated456\Generated456.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest456\Generated456 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt16.cmd_5123] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt16\ConvertToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_u4.cmd_5124] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u4\div_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayWithThread_o.cmd_5125] +RelativePath=JIT\jit64\opt\rngchk\ArrayWithThread_o\ArrayWithThread_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\ArrayWithThread_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_215.cmd_5126] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_215\GCSimulator_215.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_303.cmd_5127] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_303\GCSimulator_303.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_303 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToType.cmd_5128] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToType\EnumIConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated313.cmd_5129] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest313\Generated313\Generated313.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest313\Generated313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_prop.cmd_5130] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop\_il_dbgu_prop.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reliu4.cmd_5131] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu4\_il_reliu4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b20249.cmd_5132] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249\b20249.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_400.cmd_5133] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_400\GCSimulator_400.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_400 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28080.cmd_5134] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080\b28080.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_cs_do.cmd_5135] +RelativePath=JIT\Generics\ConstrainedCall\class1_cs_do\class1_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badtailcall_il_r.cmd_5136] +RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r\badtailcall_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit01.cmd_5137] +RelativePath=baseservices\threading\generics\Monitor\EnterExit01\EnterExit01.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated682.cmd_5138] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest682\Generated682\Generated682.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest682\Generated682 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class03.cmd_5139] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03\class03.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pointerexpr1_1.cmd_5140] +RelativePath=JIT\jit64\opt\cse\pointerexpr1_1\pointerexpr1_1.cmd +WorkingDir=JIT\jit64\opt\cse\pointerexpr1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass04.cmd_5141] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass04\NestedBaseClass04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNadd_cs_do.cmd_5142] +RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_do\r4NaNadd_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg_1.cmd_5143] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1\OpCodesLdarg_1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathIEEERemainder.cmd_5144] +RelativePath=CoreMangLib\cti\system\math\MathIEEERemainder\MathIEEERemainder.cmd +WorkingDir=CoreMangLib\cti\system\math\MathIEEERemainder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalMaxValue.cmd_5145] +RelativePath=CoreMangLib\cti\system\decimal\DecimalMaxValue\DecimalMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhan3.cmd_5146] +RelativePath=JIT\Methodical\VT\etc\_il_relhan3\_il_relhan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relhan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartInt_2.cmd_5147] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt_2\ThreadStartInt_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Handles.cmd_5148] +RelativePath=GC\Features\HeapExpansion\Handles\Handles.cmd +WorkingDir=GC\Features\HeapExpansion\Handles +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated800.cmd_5149] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest800\Generated800\Generated800.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest800\Generated800 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[innerFinally_r.cmd_5150] +RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r\innerFinally_r.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsizeof32.cmd_5151] +RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof32\_relsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThrowInFinally.cmd_5152] +RelativePath=baseservices\exceptions\unittests\ThrowInFinally\ThrowInFinally.cmd +WorkingDir=baseservices\exceptions\unittests\ThrowInFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse1_cs_ro.cmd_5153] +RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_ro\cse1_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_125.cmd_5154] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_125\GCSimulator_125.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_125 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr3.cmd_5155] +RelativePath=JIT\jit64\opt\cse\simpleexpr3\simpleexpr3.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_73.cmd_5156] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_73\GCSimulator_73.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_73 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldobj.cmd_5157] +RelativePath=JIT\Directed\PREFIX\unaligned\2\ldobj\ldobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\ldobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1046.cmd_5158] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1046\Generated1046\Generated1046.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1046\Generated1046 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDelaySignAttributeCtor.cmd_5159] +RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor\AssemblyDelaySignAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_And_Op_cs_r.cmd_5160] +RelativePath=JIT\Directed\cmov\Double_And_Op_cs_r\Double_And_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46629.cmd_5161] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629\b46629.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fgtest2.cmd_5162] +RelativePath=JIT\jit64\gc\misc\fgtest2\fgtest2.cmd +WorkingDir=JIT\jit64\gc\misc\fgtest2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[assemname_cs_r.cmd_5163] +RelativePath=JIT\Methodical\cctor\misc\assemname_cs_r\assemname_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_opt.cmd_5164] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt\conv_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1499.cmd_5165] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1499\Generated1499\Generated1499.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1499\Generated1499 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox027.cmd_5166] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027\box-unbox027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_popi_popi.cmd_5167] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi\StackBehaviourPopi_popi_popi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToUInt16.cmd_5168] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16\UInt64IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class_instance01.cmd_5169] +RelativePath=JIT\Generics\MemberAccess\class_instance01\class_instance01.cmd +WorkingDir=JIT\Generics\MemberAccess\class_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Sub1.cmd_5170] +RelativePath=JIT\CodeGenBringUpTests\Sub1\Sub1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Sub1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null003.cmd_5171] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003\castclass-null003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayICollectionget_Count.cmd_5172] +RelativePath=CoreMangLib\cti\system\array\ArrayICollectionget_Count\ArrayICollectionget_Count.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayICollectionget_Count +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi4u2.cmd_5173] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u2\_il_dbgi4u2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ckfinite_r4.cmd_5174] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4\ckfinite_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToDateTime.cmd_5175] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToDateTime\DecimalToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43958.cmd_5176] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958\b43958.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1265.cmd_5177] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1265\Generated1265\Generated1265.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1265\Generated1265 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-filter-finally02.cmd_5178] +RelativePath=baseservices\exceptions\generics\try-filter-finally02\try-filter-finally02.cmd +WorkingDir=baseservices\exceptions\generics\try-filter-finally02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_24.cmd_5179] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_24\GCSimulator_24.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetExceptionForHR.cmd_5180] +RelativePath=Interop\MarshalAPI\GetExceptionForHR\GetExceptionForHR\GetExceptionForHR.cmd +WorkingDir=Interop\MarshalAPI\GetExceptionForHR\GetExceptionForHR +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringPadLeft2.cmd_5181] +RelativePath=CoreMangLib\cti\system\string\StringPadLeft2\StringPadLeft2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadLeft2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface02.cmd_5182] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface02\NestedInterface02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32.cmd_5183] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32\ConvertToInt32.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghanoi.cmd_5184] +RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi\_il_dbghanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotSupportedExceptionCtor3.cmd_5185] +RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3\NotSupportedExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Xor_Op_cs_d.cmd_5186] +RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_d\Float_Xor_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVRefCnt1.cmd_5187] +RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1\LVRefCnt1.cmd +WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallemptyarray.cmd_5188] +RelativePath=baseservices\threading\waithandle\waitall\waitallemptyarray\waitallemptyarray.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallemptyarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_And_Op_cs_ro.cmd_5189] +RelativePath=JIT\Directed\cmov\Int_And_Op_cs_ro\Int_And_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FactorialRec.cmd_5190] +RelativePath=JIT\CodeGenBringUpTests\FactorialRec\FactorialRec.cmd +WorkingDir=JIT\CodeGenBringUpTests\FactorialRec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semtest.cmd_5191] +RelativePath=baseservices\threading\semaphore\unit\semtest\semtest.cmd +WorkingDir=baseservices\threading\semaphore\unit\semtest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1170.cmd_5192] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1170\Generated1170\Generated1170.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1170\Generated1170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString14.cmd_5193] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString14\ConvertToString14.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch11.cmd_5194] +RelativePath=JIT\Methodical\switch\switch11\switch11.cmd +WorkingDir=JIT\Methodical\switch\switch11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[twoEndFinallys.cmd_5195] +RelativePath=JIT\Methodical\flowgraph\bug619534\twoEndFinallys\twoEndFinallys.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\twoEndFinallys +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinObj_neg.cmd_5196] +RelativePath=GC\API\GCHandle\PinObj_neg\PinObj_neg.cmd +WorkingDir=GC\API\GCHandle\PinObj_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_432.cmd_5197] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_432\GCSimulator_432.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_432 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret1_1.cmd_5198] +RelativePath=JIT\jit64\gc\misc\structret1_1\structret1_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DefaultStackCommit.cmd_5199] +RelativePath=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit\DefaultStackCommit.cmd +WorkingDir=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated437.cmd_5200] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest437\Generated437\Generated437.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest437\Generated437 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit14.cmd_5201] +RelativePath=baseservices\threading\generics\Monitor\EnterExit14\EnterExit14.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos65204782cs_o.cmd_5202] +RelativePath=JIT\Generics\Coverage\chaos65204782cs_o\chaos65204782cs_o.cmd +WorkingDir=JIT\Generics\Coverage\chaos65204782cs_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_And_Op_cs_r.cmd_5203] +RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_r\Bool_And_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1b_cs_do.cmd_5204] +RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_do\precise1b_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructorInfoTypeConstructorName.cmd_5205] +RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName\ConstructorInfoTypeConstructorName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44657.cmd_5206] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657\b44657.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyaftercatch_ro.cmd_5207] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro\rethrowinfinallyaftercatch_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_0.cmd_5208] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0\OpCodesLdc_I4_0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10215.cmd_5209] +RelativePath=JIT\Regression\JitBlue\GitHub_10215\GitHub_10215\GitHub_10215.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10215\GitHub_10215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92614.cmd_5210] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614\b92614.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FromNativePaths.cmd_5211] +RelativePath=Loader\NativeLibs\FromNativePaths\FromNativePaths.cmd +WorkingDir=Loader\NativeLibs\FromNativePaths +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorCast_r.cmd_5212] +RelativePath=JIT\SIMD\VectorCast_r\VectorCast_r.cmd +WorkingDir=JIT\SIMD\VectorCast_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_49.cmd_5213] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_49\GCSimulator_49.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_49 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated415.cmd_5214] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest415\Generated415\Generated415.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest415\Generated415 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_cs_r.cmd_5215] +RelativePath=JIT\Generics\ConstrainedCall\class1_cs_r\class1_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_d.cmd_5216] +RelativePath=JIT\Methodical\eh\basics\throwinfinally_d\throwinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null001.cmd_5217] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001\box-unbox-null001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43693.cmd_5218] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693\b43693.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowStaticFieldBFI.cmd_5219] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowStaticFieldBFI\CctorThrowStaticFieldBFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowStaticFieldBFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_ro.cmd_5220] +RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro\stringarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMethodExceptionCtor1.cmd_5221] +RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1\MissingMethodExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex11a.cmd_5222] +RelativePath=baseservices\threading\waithandle\waitall\waitallex11a\waitallex11a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex11a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit3.cmd_5223] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit3\_relexplicit3.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgptr.cmd_5224] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr\_il_dbgptr.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated958.cmd_5225] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest958\Generated958\Generated958.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest958\Generated958 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox018.cmd_5226] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018\box-unbox018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_5227] +RelativePath=JIT\jit64\regress\vsw\153682\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\153682\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftnsideeffect_il_r.cmd_5228] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r\ldvirtftnsideeffect_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b608066.cmd_5229] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066\b608066.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated267.cmd_5230] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest267\Generated267\Generated267.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest267\Generated267 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1133.cmd_5231] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1133\Generated1133\Generated1133.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1133\Generated1133 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_i4_u.cmd_5232] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_u\_il_dbgcompat_i4_u.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3216.cmd_5233] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3216\ConvertToUInt3216.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated692.cmd_5234] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest692\Generated692\Generated692.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest692\Generated692 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[valueTypeBoxing.cmd_5235] +RelativePath=JIT\Generics\Typeof\valueTypeBoxing\valueTypeBoxing.cmd +WorkingDir=JIT\Generics\Typeof\valueTypeBoxing +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0B_d.cmd_5236] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_d\hfa_sf0B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001f.cmd_5237] +RelativePath=Loader\classloader\generics\GenericMethods\method001f\method001f.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001f +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics.cmd_5238] +RelativePath=JIT\Methodical\nonvirtualcall\generics\generics.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brtrue.cmd_5239] +RelativePath=JIT\IL_Conformance\Old\Base\brtrue\brtrue.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\brtrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25739.cmd_5240] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739\b25739.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_dynamic.cmd_5241] +RelativePath=JIT\Methodical\localloc\verify\verify01_dynamic\verify01_dynamic.cmd +WorkingDir=JIT\Methodical\localloc\verify\verify01_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadCheckedAdd1.cmd_5242] +RelativePath=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1\BadCheckedAdd1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_295.cmd_5243] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_295\GCSimulator_295.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_295 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16122.cmd_5244] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122\b16122.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b425314.cmd_5245] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314\b425314.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1248.cmd_5246] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1248\Generated1248\Generated1248.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1248\Generated1248 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-filter02.cmd_5247] +RelativePath=baseservices\exceptions\generics\try-filter02\try-filter02.cmd +WorkingDir=baseservices\exceptions\generics\try-filter02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cond32_il_d.cmd_5248] +RelativePath=JIT\Methodical\NaN\cond32_il_d\cond32_il_d.cmd +WorkingDir=JIT\Methodical\NaN\cond32_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToUInt16.cmd_5249] +RelativePath=CoreMangLib\cti\system\single\SingleToUInt16\SingleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated595.cmd_5250] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest595\Generated595\Generated595.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest595\Generated595 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegatetail.cmd_5251] +RelativePath=JIT\Methodical\tailcall_v4\delegatetail\delegatetail.cmd +WorkingDir=JIT\Methodical\tailcall_v4\delegatetail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-01_cs_d.cmd_5252] +RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_d\200w1d-01_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cond64_il_d.cmd_5253] +RelativePath=JIT\Methodical\NaN\cond64_il_d\cond64_il_d.cmd +WorkingDir=JIT\Methodical\NaN\cond64_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33388.cmd_5254] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388\b33388.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread27.cmd_5255] +RelativePath=baseservices\threading\generics\TimerCallback\thread27\thread27.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread27 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test1534.cmd_5256] +RelativePath=Regressions\coreclr\1534\Test1534\Test1534.cmd +WorkingDir=Regressions\coreclr\1534\Test1534 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test147911.cmd_5257] +RelativePath=baseservices\exceptions\regressions\Dev11\147911\test147911\test147911.cmd +WorkingDir=baseservices\exceptions\regressions\Dev11\147911\test147911 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Generated1334.cmd_5258] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1334\Generated1334\Generated1334.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1334\Generated1334 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b34952.cmd_5259] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952\b34952.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated414.cmd_5260] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest414\Generated414\Generated414.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest414\Generated414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_235.cmd_5261] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_235\GCSimulator_235.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_235 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads2_cs_do.cmd_5262] +RelativePath=JIT\Methodical\cctor\misc\threads2_cs_do\threads2_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListInsert.cmd_5263] +RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListInsert\IListInsert.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01b_seq_ser.cmd_5264] +RelativePath=Loader\classloader\generics\Layout\General\Base01b_seq_ser\Base01b_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01b_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_cs_r.cmd_5265] +RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_r\vt2_cs_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul.cmd_5266] +RelativePath=JIT\IL_Conformance\Old\Base\mul\mul.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_do.cmd_5267] +RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_do\doublearr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DebuggingModesEnableEditAndContinue.cmd_5268] +RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue\DebuggingModesEnableEditAndContinue.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructAsParam_Method.cmd_5269] +RelativePath=JIT\opt\Inline\tests\StructAsParam_Method\StructAsParam_Method.cmd +WorkingDir=JIT\opt\Inline\tests\StructAsParam_Method +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstrainedMethods.cmd_5270] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\ConstrainedMethods\ConstrainedMethods.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\ConstrainedMethods +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46897.cmd_5271] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897\b46897.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated194.cmd_5272] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest194\Generated194\Generated194.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest194\Generated194 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated702.cmd_5273] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest702\Generated702\Generated702.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest702\Generated702 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackPop.cmd_5274] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPop\StackPop.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51565.cmd_5275] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565\b51565.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b113286.cmd_5276] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286\b113286.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i4_i2.cmd_5277] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2\conv_ovf_i4_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated293.cmd_5278] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest293\Generated293\Generated293.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest293\Generated293 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_U1.cmd_5279] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1\OpCodesLdelem_U1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_5280] +RelativePath=Loader\classloader\TSAmbiguities\SameMethodImpl\CollapsedInterfaces\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\SameMethodImpl\CollapsedInterfaces\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli4i2.cmd_5281] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i2\_il_reli4i2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b431098.cmd_5282] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098\b431098.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59297.cmd_5283] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297\b59297.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh11_dynamic.cmd_5284] +RelativePath=JIT\jit64\localloc\ehverify\eh11_dynamic\eh11_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh11_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetHashCode.cmd_5285] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode\GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85317.cmd_5286] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317\b85317.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_ref.cmd_5287] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref\_il_dbgu_ref.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b518440.cmd_5288] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440\b518440.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToUInt32.cmd_5289] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32\ByteIConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trybodyinbetweencatchhandlers_d.cmd_5290] +RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d\trybodyinbetweencatchhandlers_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AsgXor1.cmd_5291] +RelativePath=JIT\CodeGenBringUpTests\AsgXor1\AsgXor1.cmd +WorkingDir=JIT\CodeGenBringUpTests\AsgXor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtrycatch_r.cmd_5292] +RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_r\deadtrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relpointer.cmd_5293] +RelativePath=JIT\Methodical\tailcall\_il_relpointer\_il_relpointer.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relpointer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Inline_RecursiveMethod21.cmd_5294] +RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod21\Inline_RecursiveMethod21.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PredicateBeginInvoke.cmd_5295] +RelativePath=CoreMangLib\cti\system\predicate\PredicateBeginInvoke\PredicateBeginInvoke.cmd +WorkingDir=CoreMangLib\cti\system\predicate\PredicateBeginInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion2.cmd_5296] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion2\NullCheckAssertion2.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_calli.cmd_5297] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli\_il_dbgrecurse_calli.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_306.cmd_5298] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_306\GCSimulator_306.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_306 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstenum_r.cmd_5299] +RelativePath=JIT\Directed\nullabletypes\isinstenum_r\isinstenum_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstenum_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldsfld_mulovf.cmd_5300] +RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mulovf\_relldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value039.cmd_5301] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039\box-unbox-value039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread07.cmd_5302] +RelativePath=baseservices\threading\generics\syncdelegate\GThread07\GThread07.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructTrue.cmd_5303] +RelativePath=baseservices\threading\events\AutoResetEvent\ConstructTrue\ConstructTrue.cmd +WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructTrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldfld_mulovf.cmd_5304] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf\_il_dbgs_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExceptionGetBaseException.cmd_5305] +RelativePath=CoreMangLib\cti\system\exception\ExceptionGetBaseException\ExceptionGetBaseException.cmd +WorkingDir=CoreMangLib\cti\system\exception\ExceptionGetBaseException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92726.cmd_5306] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726\b92726.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin8.cmd_5307] +RelativePath=CoreMangLib\cti\system\math\MathMin8\MathMin8.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_seq.cmd_5308] +RelativePath=Loader\classloader\generics\Layout\General\struct01_seq\struct01_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct01_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex10a.cmd_5309] +RelativePath=baseservices\threading\waithandle\waitall\waitallex10a\waitallex10a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex10a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subovfun1_il_r.cmd_5310] +RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r\subovfun1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated47.cmd_5311] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest47\Generated47\Generated47.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest47\Generated47 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1472.cmd_5312] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1472\Generated1472\Generated1472.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1472\Generated1472 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow01_div.cmd_5313] +RelativePath=JIT\jit64\rtchecks\overflow\overflow01_div\overflow01_div.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions08.cmd_5314] +RelativePath=baseservices\exceptions\generics\GenericExceptions08\GenericExceptions08.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70335.cmd_5315] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335\b70335.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46576.cmd_5316] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576\b46576.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass004.cmd_5317] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004\castclass004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_struct01.cmd_5318] +RelativePath=JIT\Generics\Locals\instance_passing_struct01\instance_passing_struct01.cmd +WorkingDir=JIT\Generics\Locals\instance_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_And_Op_cs_do.cmd_5319] +RelativePath=JIT\Directed\cmov\Int_And_Op_cs_do\Int_And_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgobjref.cmd_5320] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgobjref\_il_dbgobjref.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgobjref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated386.cmd_5321] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest386\Generated386\Generated386.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest386\Generated386 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIndexOf10.cmd_5322] +RelativePath=CoreMangLib\cti\system\string\StringIndexOf10\StringIndexOf10.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIndexOf10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Target.cmd_5323] +RelativePath=GC\API\GCHandle\Target\Target.cmd +WorkingDir=GC\API\GCHandle\Target +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41621.cmd_5324] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621\b41621.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1287.cmd_5325] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1287\Generated1287\Generated1287.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1287\Generated1287 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i14.cmd_5326] +RelativePath=JIT\jit64\mcc\interop\mcc_i14\mcc_i14.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass025.cmd_5327] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025\castclass025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84957.cmd_5328] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957\b84957.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor1.cmd_5329] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor1\DecimalCtor1.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated162.cmd_5330] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest162\Generated162\Generated162.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest162\Generated162 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblAvg2.cmd_5331] +RelativePath=JIT\CodeGenBringUpTests\DblAvg2\DblAvg2.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblAvg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[oponerror_ro.cmd_5332] +RelativePath=JIT\Methodical\eh\leaves\oponerror_ro\oponerror_ro.cmd +WorkingDir=JIT\Methodical\eh\leaves\oponerror_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_20929_d.cmd_5333] +RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_d\dev11_20929_d.cmd +WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass008.cmd_5334] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008\castclass008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case10.cmd_5335] +RelativePath=Loader\classloader\explicitlayout\misc\case10\case10.cmd +WorkingDir=Loader\classloader\explicitlayout\misc\case10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_muldiv.cmd_5336] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_muldiv\_il_dbgs_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated32.cmd_5337] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest32\Generated32\Generated32.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest32\Generated32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToInt64.cmd_5338] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64\UInt16IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-26-two.cmd_5339] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-26-two\RMV-2-13-26-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-26-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finallytryintryfinally_d.cmd_5340] +RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_d\finallytryintryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow04_mul.cmd_5341] +RelativePath=JIT\jit64\rtchecks\overflow\overflow04_mul\overflow04_mul.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblCall2.cmd_5342] +RelativePath=JIT\CodeGenBringUpTests\DblCall2\DblCall2.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblCall2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstenum_do.cmd_5343] +RelativePath=JIT\Directed\nullabletypes\isinstenum_do\isinstenum_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstenum_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow04_div.cmd_5344] +RelativePath=JIT\jit64\rtchecks\overflow\overflow04_div\overflow04_div.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConditionalAttributeConditionString.cmd_5345] +RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString\ConditionalAttributeConditionString.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null019.cmd_5346] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019\box-unbox-null019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_vfld.cmd_5347] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld\_il_relu_vfld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedfinally_r.cmd_5348] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_r\throwinnestedfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_184.cmd_5349] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_184\GCSimulator_184.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_184 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectMemberwiseClone.cmd_5350] +RelativePath=CoreMangLib\cti\system\object\ObjectMemberwiseClone\ObjectMemberwiseClone.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectMemberwiseClone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread17.cmd_5351] +RelativePath=baseservices\threading\generics\syncdelegate\GThread17\GThread17.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_397.cmd_5352] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_397\GCSimulator_397.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_397 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relobj.cmd_5353] +RelativePath=JIT\Methodical\Invoke\implicit\_speed_relobj\_speed_relobj.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_speed_relobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finally.cmd_5354] +RelativePath=baseservices\exceptions\simple\finally\finally.cmd +WorkingDir=baseservices\exceptions\simple\finally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryfinally_r.cmd_5355] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r\throwinnestedtryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface015.cmd_5356] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015\castclass-interface015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex2a.cmd_5357] +RelativePath=baseservices\threading\waithandle\waitall\waitallex2a\waitallex2a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13522.cmd_5358] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522\b13522.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw529206ModuleCctor.cmd_5359] +RelativePath=Loader\classloader\regressions\vsw529206\vsw529206ModuleCctor\vsw529206ModuleCctor.cmd +WorkingDir=Loader\classloader\regressions\vsw529206\vsw529206ModuleCctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated729.cmd_5360] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest729\Generated729\Generated729.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest729\Generated729 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_366.cmd_5361] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_366\GCSimulator_366.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeBoolean.cmd_5362] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeBoolean\TypeCodeBoolean.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingUTF8.cmd_5363] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUTF8\EncodingUTF8.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUTF8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Alloc.cmd_5364] +RelativePath=GC\API\GCHandle\Alloc\Alloc.cmd +WorkingDir=GC\API\GCHandle\Alloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderReplace3.cmd_5365] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3\StringBuilderReplace3.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated776.cmd_5366] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest776\Generated776\Generated776.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest776\Generated776 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Whetsto.cmd_5367] +RelativePath=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto\Whetsto.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompEx.cmd_5368] +RelativePath=Regressions\common\CompEx\CompEx.cmd +WorkingDir=Regressions\common\CompEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CSieve.cmd_5369] +RelativePath=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve\CSieve.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStatic05.cmd_5370] +RelativePath=baseservices\threading\threadstatic\ThreadStatic05\ThreadStatic05.cmd +WorkingDir=baseservices\threading\threadstatic\ThreadStatic05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0B_r.cmd_5371] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_r\hfa_nf0B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetEncoding2.cmd_5372] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2\EncodingGetEncoding2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter012.cmd_5373] +RelativePath=baseservices\exceptions\generics\TypeParameter012\TypeParameter012.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated212.cmd_5374] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest212\Generated212\Generated212.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest212\Generated212 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_30.cmd_5375] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_30\GCSimulator_30.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefconvert_il_d.cmd_5376] +RelativePath=JIT\Directed\refbyref\byrefconvert_il_d\byrefconvert_il_d.cmd +WorkingDir=JIT\Directed\refbyref\byrefconvert_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84836.cmd_5377] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836\b84836.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_cs_d.cmd_5378] +RelativePath=JIT\Directed\shift\uint8_cs_d\uint8_cs_d.cmd +WorkingDir=JIT\Directed\shift\uint8_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null004.cmd_5379] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004\box-unbox-null004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_i8.cmd_5380] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8\cgt_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convx_il_d.cmd_5381] +RelativePath=JIT\Methodical\FPtrunc\convx_il_d\convx_il_d.cmd +WorkingDir=JIT\Methodical\FPtrunc\convx_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b449827.cmd_5382] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827\b449827.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNsub_cs_do.cmd_5383] +RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_do\r4NaNsub_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_3.cmd_5384] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_3\ConvertToInt16_3.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04583.cmd_5385] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583\b04583.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value029.cmd_5386] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029\box-unbox-value029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated93.cmd_5387] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest93\Generated93\Generated93.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest93\Generated93 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated878.cmd_5388] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest878\Generated878\Generated878.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest878\Generated878 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToSByte.cmd_5389] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte\UInt16IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28806.cmd_5390] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806\b28806.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoInit.cmd_5391] +RelativePath=JIT\IL_Conformance\Old\directed\AutoInit\AutoInit.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\AutoInit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest2.cmd_5392] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest2\_il_dbgtest2.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayDim.cmd_5393] +RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim\arrayDim.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegateRemoveImpl.cmd_5394] +RelativePath=CoreMangLib\cti\system\delegate\delegateRemoveImpl\delegateRemoveImpl.cmd +WorkingDir=CoreMangLib\cti\system\delegate\delegateRemoveImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated242.cmd_5395] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest242\Generated242\Generated242.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest242\Generated242 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorConvert_ro.cmd_5396] +RelativePath=JIT\SIMD\VectorConvert_ro\VectorConvert_ro.cmd +WorkingDir=JIT\SIMD\VectorConvert_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53650.cmd_5397] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650\b53650.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend17.cmd_5398] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17\StringBuilderAppend17.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07704.cmd_5399] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704\b07704.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstinterface_r.cmd_5400] +RelativePath=JIT\Directed\nullabletypes\isinstinterface_r\isinstinterface_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstinterface_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread26.cmd_5401] +RelativePath=baseservices\threading\generics\syncdelegate\GThread26\GThread26.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread11.cmd_5402] +RelativePath=baseservices\threading\generics\TimerCallback\thread11\thread11.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39455.cmd_5403] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455\b39455.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCpobj.cmd_5404] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj\OpCodesCpobj.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_R8.cmd_5405] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8\OpCodesLdind_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayWithFunc_o.cmd_5406] +RelativePath=JIT\jit64\opt\rngchk\ArrayWithFunc_o\ArrayWithFunc_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\ArrayWithFunc_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02_auto.cmd_5407] +RelativePath=Loader\classloader\generics\Layout\General\struct02_auto\struct02_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct02_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null040.cmd_5408] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040\box-unbox-null040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListContains.cmd_5409] +RelativePath=CoreMangLib\cti\system\array\ArrayIListContains\ArrayIListContains.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_float_1_r.cmd_5410] +RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_r\seq_float_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_d.cmd_5411] +RelativePath=JIT\Directed\shift\uint32_d\uint32_d.cmd +WorkingDir=JIT\Directed\shift\uint32_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrotarg_valref.cmd_5412] +RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref\_opt_dbgrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated361.cmd_5413] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest361\Generated361\Generated361.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest361\Generated361 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8rem_cs_d.cmd_5414] +RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_d\u8rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-3-1.cmd_5415] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-3-1\L-1-3-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-3-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidProgramExceptionctor3.cmd_5416] +RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3\InvalidProgramExceptionctor3.cmd +WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_Many.cmd_5417] +RelativePath=JIT\opt\Inline\tests\Inline_Many\Inline_Many.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_Many +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b399444a.cmd_5418] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a\b399444a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed1_cs_ro.cmd_5419] +RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_ro\mixed1_cs_ro.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated198.cmd_5420] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest198\Generated198\Generated198.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest198\Generated198 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated710.cmd_5421] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest710\Generated710\Generated710.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest710\Generated710 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated603.cmd_5422] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest603\Generated603\Generated603.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest603\Generated603 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_430.cmd_5423] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_430\GCSimulator_430.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_430 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1182.cmd_5424] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1182\Generated1182\Generated1182.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1182\Generated1182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated393.cmd_5425] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest393\Generated393\Generated393.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest393\Generated393 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b173313.cmd_5426] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313\b173313.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated487.cmd_5427] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest487\Generated487\Generated487.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest487\Generated487 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct8.cmd_5428] +RelativePath=JIT\jit64\gc\misc\struct8\struct8.cmd +WorkingDir=JIT\jit64\gc\misc\struct8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1289.cmd_5429] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1289\Generated1289\Generated1289.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1289\Generated1289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-2.cmd_5430] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-2\_relunsafe-2.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNrem_cs_ro.cmd_5431] +RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_ro\r4NaNrem_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LargeObjectAlloc2.cmd_5432] +RelativePath=GC\Coverage\LargeObjectAlloc2\LargeObjectAlloc2.cmd +WorkingDir=GC\Coverage\LargeObjectAlloc2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[DelegStaticFtn.cmd_5433] +RelativePath=JIT\opt\Inline\tests\DelegStaticFtn\DelegStaticFtn.cmd +WorkingDir=JIT\opt\Inline\tests\DelegStaticFtn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct5_5.cmd_5434] +RelativePath=JIT\jit64\gc\misc\struct5_5\struct5_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct5_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45439.cmd_5435] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439\b45439.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_un_r4.cmd_5436] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4\blt_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca.cmd_5437] +RelativePath=JIT\IL_Conformance\Old\Base\ldloca\ldloca.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter1_d.cmd_5438] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d\throwinfinallyintryfilter1_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated913.cmd_5439] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest913\Generated913\Generated913.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest913\Generated913 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface02.cmd_5440] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface02\MultipleInterface02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleIsNegativeInfinity.cmd_5441] +RelativePath=CoreMangLib\cti\system\single\SingleIsNegativeInfinity\SingleIsNegativeInfinity.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleIsNegativeInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated502.cmd_5442] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest502\Generated502\Generated502.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest502\Generated502 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15222.cmd_5443] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222\b15222.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct03.cmd_5444] +RelativePath=JIT\Generics\Typeof\struct03\struct03.cmd +WorkingDir=JIT\Generics\Typeof\struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathPow.cmd_5445] +RelativePath=CoreMangLib\cti\system\math\MathPow\MathPow.cmd +WorkingDir=CoreMangLib\cti\system\math\MathPow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_i8.cmd_5446] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i8\ldloc_s_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359736_d.cmd_5447] +RelativePath=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_d\DevDiv_359736_d.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate015.cmd_5448] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate015\Delegate015.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value023.cmd_5449] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023\box-unbox-value023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotImplementedExceptionCtor3.cmd_5450] +RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3\NotImplementedExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgbox.cmd_5451] +RelativePath=JIT\Methodical\int64\misc\_dbgbox\_dbgbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_dbgbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileShareWrite.cmd_5452] +RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareWrite\FileShareWrite.cmd +WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareWrite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56149.cmd_5453] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149\b56149.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddUsageTest.cmd_5454] +RelativePath=GC\API\GC\AddUsageTest\AddUsageTest.cmd +WorkingDir=GC\API\GC\AddUsageTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullsdarr_il_r.cmd_5455] +RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r\nullsdarr_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrow.cmd_5456] +RelativePath=baseservices\exceptions\regressions\V1\SEH\COOL\rethrow\rethrow.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\COOL\rethrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated817.cmd_5457] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest817\Generated817\Generated817.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest817\Generated817 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListICollectionIsReadOnly.cmd_5458] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly\ListICollectionIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest1.cmd_5459] +RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest1\_il_dbgtest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltailjump_il.cmd_5460] +RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_il\_reltailjump_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct4_4.cmd_5461] +RelativePath=JIT\jit64\gc\misc\struct4_4\struct4_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct4_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_ldarg.cmd_5462] +RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldarg\_il_relisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test4-xassem.cmd_5463] +RelativePath=JIT\Methodical\stringintern\test4-xassem\test4-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\test4-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b81764.cmd_5464] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764\b81764.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplFinal.cmd_5465] +RelativePath=Loader\classloader\regressions\163172\MethodImplFinal\MethodImplFinal.cmd +WorkingDir=Loader\classloader\regressions\163172\MethodImplFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleEquals2.cmd_5466] +RelativePath=CoreMangLib\cti\system\double\DoubleEquals2\DoubleEquals2.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HugeArray1.cmd_5467] +RelativePath=JIT\jit64\opt\cse\HugeArray1\HugeArray1.cmd +WorkingDir=JIT\jit64\opt\cse\HugeArray1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread14.cmd_5468] +RelativePath=baseservices\threading\generics\WaitCallback\thread14\thread14.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg7.cmd_5469] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg7\openmutexneg7.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[comp64_il_d.cmd_5470] +RelativePath=JIT\Methodical\NaN\comp64_il_d\comp64_il_d.cmd +WorkingDir=JIT\Methodical\NaN\comp64_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchincatch_d.cmd_5471] +RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_d\switchincatch_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartOperations_1.cmd_5472] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations_1\ThreadStartOperations_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UntrustedCodeBFI.cmd_5473] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\UntrustedCodeBFI\UntrustedCodeBFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\UntrustedCodeBFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp2_3.cmd_5474] +RelativePath=JIT\jit64\gc\misc\structfp2_3\structfp2_3.cmd +WorkingDir=JIT\jit64\gc\misc\structfp2_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[identity3_il_d.cmd_5475] +RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_d\identity3_il_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_5476] +RelativePath=Loader\classloader\TSAmbiguities\CollapsedInterfaces\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\CollapsedInterfaces\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated512.cmd_5477] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest512\Generated512\Generated512.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest512\Generated512 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBle_Un_S.cmd_5478] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S\OpCodesBle_Un_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated124.cmd_5479] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest124\Generated124\Generated124.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest124\Generated124 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1199.cmd_5480] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1199\Generated1199\Generated1199.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1199\Generated1199 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I1_Un.cmd_5481] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un\OpCodesConv_Ovf_I1_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics004.cmd_5482] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004\box-unbox-generics004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFCeiling.cmd_5483] +RelativePath=CoreMangLib\cti\system\mathf\MathFCeiling\MathFCeiling.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFCeiling +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanZero.cmd_5484] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanZero\TimeSpanZero.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanZero +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalClassTests.cmd_5485] +RelativePath=Interop\MarshalAPI\Miscellaneous\MarshalClassTests\MarshalClassTests.cmd +WorkingDir=Interop\MarshalAPI\Miscellaneous\MarshalClassTests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2E_d.cmd_5486] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_d\hfa_sf2E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally01.cmd_5487] +RelativePath=baseservices\exceptions\generics\try-finally01\try-finally01.cmd +WorkingDir=baseservices\exceptions\generics\try-finally01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_7.cmd_5488] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_7\ConvertToInt64_7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit1_il_r.cmd_5489] +RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_r\prefldinit1_il_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15797.cmd_5490] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797\b15797.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedMany.cmd_5491] +RelativePath=GC\Features\Pinning\PinningOther\PinnedMany\PinnedMany.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedMany +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated543.cmd_5492] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest543\Generated543\Generated543.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest543\Generated543 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgisinst_call.cmd_5493] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_call\_speed_dbgisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[general_class_instance01.cmd_5494] +RelativePath=JIT\Generics\Exceptions\general_class_instance01\general_class_instance01.cmd +WorkingDir=JIT\Generics\Exceptions\general_class_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesNot.cmd_5495] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot\OpCodesNot.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06440b.cmd_5496] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b\b06440b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nstructtun.cmd_5497] +RelativePath=GC\Scenarios\FinalNStruct\nstructtun\nstructtun.cmd +WorkingDir=GC\Scenarios\FinalNStruct\nstructtun +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i01.cmd_5498] +RelativePath=JIT\jit64\mcc\interop\mcc_i01\mcc_i01.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_dbgrefarg_o.cmd_5499] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_o\_dbgrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldsfld_mulovf.cmd_5500] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf\_il_rels_ldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateCombineImpl.cmd_5501] +RelativePath=CoreMangLib\cti\system\delegate\DelegateCombineImpl\DelegateCombineImpl.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombineImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_i2.cmd_5502] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i2\ldloca_s_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1017.cmd_5503] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1017\Generated1017\Generated1017.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1017\Generated1017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b140298.cmd_5504] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298\b140298.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesIn.cmd_5505] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn\ParameterAttributesIn.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16Equals2.cmd_5506] +RelativePath=CoreMangLib\cti\system\int16\Int16Equals2\Int16Equals2.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16Equals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1226.cmd_5507] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1226\Generated1226\Generated1226.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1226\Generated1226 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case7.cmd_5508] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7\case7.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated967.cmd_5509] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest967\Generated967\Generated967.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest967\Generated967 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToSByte.cmd_5510] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSByte\Int32IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43719.cmd_5511] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719\b43719.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32560.cmd_5512] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560\b32560.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32ToString3.cmd_5513] +RelativePath=CoreMangLib\cti\system\int\Int32ToString3\Int32ToString3.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32ToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwtest.cmd_5514] +RelativePath=JIT\opt\Inline\tests\throwtest\throwtest.cmd +WorkingDir=JIT\opt\Inline\tests\throwtest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbggc_nested.cmd_5515] +RelativePath=JIT\Methodical\VT\etc\_dbggc_nested\_dbggc_nested.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbggc_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_5516] +RelativePath=JIT\jit64\regress\vsw\333007\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\333007\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated598.cmd_5517] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest598\Generated598\Generated598.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest598\Generated598 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value014.cmd_5518] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014\box-unbox-value014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint_cs_do.cmd_5519] +RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_do\uint_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictEnumIDictEnumget_Value.cmd_5520] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value\DictEnumIDictEnumget_Value.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_pop1.cmd_5521] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1\StackBehaviourPopref_popi_pop1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall.cmd_5522] +RelativePath=JIT\Directed\tailcall\tailcall\tailcall.cmd +WorkingDir=JIT\Directed\tailcall\tailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47093.cmd_5523] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093\b47093.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB1.cmd_5524] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB1\LocallocCnstB1.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotRMW.cmd_5525] +RelativePath=JIT\CodeGenBringUpTests\NotRMW\NotRMW.cmd +WorkingDir=JIT\CodeGenBringUpTests\NotRMW +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtrycatch_d.cmd_5526] +RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_d\deadtrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleException.cmd_5527] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\MultipleException\MultipleException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\MultipleException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1448.cmd_5528] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1448\Generated1448\Generated1448.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1448\Generated1448 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated260.cmd_5529] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest260\Generated260\Generated260.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest260\Generated260 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch01.cmd_5530] +RelativePath=baseservices\exceptions\generics\try-catch01\try-catch01.cmd +WorkingDir=baseservices\exceptions\generics\try-catch01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated836.cmd_5531] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest836\Generated836\Generated836.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest836\Generated836 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callipinvoke_il_d.cmd_5532] +RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d\callipinvoke_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1_cs_d.cmd_5533] +RelativePath=JIT\Methodical\cctor\simple\precise1_cs_d\precise1_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jmp_impl.cmd_5534] +RelativePath=JIT\jit64\opt\cg\il\jmp_impl\jmp_impl.cmd +WorkingDir=JIT\jit64\opt\cg\il\jmp_impl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[servermodel.cmd_5535] +RelativePath=GC\Scenarios\ServerModel\servermodel\servermodel.cmd +WorkingDir=GC\Scenarios\ServerModel\servermodel +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassenum_do.cmd_5536] +RelativePath=JIT\Directed\nullabletypes\castclassenum_do\castclassenum_do.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassenum_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameFlagsNone.cmd_5537] +RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone\AssemblyNameFlagsNone.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case12.cmd_5538] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12\case12.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_stind.cmd_5539] +RelativePath=JIT\Directed\PREFIX\unaligned\4\ldind_stind\ldind_stind.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\ldind_stind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0C_d.cmd_5540] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_d\hfa_nd0C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_long_1_d.cmd_5541] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_d\expl_gc_long_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1038.cmd_5542] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1038\Generated1038\Generated1038.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1038\Generated1038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test72162.cmd_5543] +RelativePath=Regressions\coreclr\72162\Test72162\Test72162.cmd +WorkingDir=Regressions\coreclr\72162\Test72162 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_6239.cmd_5544] +RelativePath=JIT\Regression\JitBlue\GitHub_6239\GitHub_6239\GitHub_6239.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_6239\GitHub_6239 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox005.cmd_5545] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox005\Unbox005.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldfld_mulovf.cmd_5546] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf\_speed_relldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldunboxedvt.cmd_5547] +RelativePath=JIT\Directed\coverage\importer\ldfldunboxedvt\ldfldunboxedvt.cmd +WorkingDir=JIT\Directed\coverage\importer\ldfldunboxedvt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated151.cmd_5548] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest151\Generated151\Generated151.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest151\Generated151 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102962a.cmd_5549] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a\b102962a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2G_r.cmd_5550] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_r\hfa_nd2G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_u8.cmd_5551] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8\mul_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex8a.cmd_5552] +RelativePath=baseservices\threading\waithandle\waitall\waitallex8a\waitallex8a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex8a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_u.cmd_5553] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u\cgt_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_335.cmd_5554] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_335\GCSimulator_335.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b73207.cmd_5555] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207\b73207.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartObject_1.cmd_5556] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_1\ThreadStartObject_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalMinusOne.cmd_5557] +RelativePath=CoreMangLib\cti\system\decimal\DecimalMinusOne\DecimalMinusOne.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinusOne +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6410.cmd_5558] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6410\ConvertToUInt6410.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_142976.cmd_5559] +RelativePath=JIT\Regression\JitBlue\DevDiv_142976\DevDiv_142976\DevDiv_142976.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_142976\DevDiv_142976 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_No_Op_cs_r.cmd_5560] +RelativePath=JIT\Directed\cmov\Int_No_Op_cs_r\Int_No_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1271.cmd_5561] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1271\Generated1271\Generated1271.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1271\Generated1271 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittobeginningoftry_d.cmd_5562] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d\nonlocalexittobeginningoftry_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_5563] +RelativePath=JIT\Directed\PREFIX\unaligned\4\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Or_Op_cs_ro.cmd_5564] +RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_ro\Double_Or_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_s.cmd_5565] +RelativePath=JIT\IL_Conformance\Old\Base\beq_s\beq_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\beq_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroInit01_large.cmd_5566] +RelativePath=JIT\Methodical\localloc\zeroinit\zeroInit01_large\zeroInit01_large.cmd +WorkingDir=JIT\Methodical\localloc\zeroinit\zeroInit01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sbyte_cs_r.cmd_5567] +RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r\sbyte_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchintryfinally_r.cmd_5568] +RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_r\trycatchintryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waithandledispose2.cmd_5569] +RelativePath=baseservices\threading\waithandle\misc\waithandledispose2\waithandledispose2.cmd +WorkingDir=baseservices\threading\waithandle\misc\waithandledispose2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b423721.cmd_5570] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721\b423721.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10311.cmd_5571] +RelativePath=JIT\opt\Devirtualization\GitHub_10311\GitHub_10311.cmd +WorkingDir=JIT\opt\Devirtualization\GitHub_10311 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_r8.cmd_5572] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8\ldc_ret_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated693.cmd_5573] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest693\Generated693\Generated693.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest693\Generated693 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_ro.cmd_5574] +RelativePath=JIT\Methodical\NaN\arithm32_ro\arithm32_ro.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b601838.cmd_5575] +RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838\b601838.cmd +WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-2.cmd_5576] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2\_speed_dbgunsafe-2.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45679.cmd_5577] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679\b45679.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_5578] +RelativePath=Loader\binding\assemblies\assemblybugs\102140\test\test.cmd +WorkingDir=Loader\binding\assemblies\assemblybugs\102140\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null045.cmd_5579] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045\box-unbox-null045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalStructAsLayoutSeq.cmd_5580] +RelativePath=Interop\StructMarshalling\PInvoke\MarshalStructAsLayoutSeq\MarshalStructAsLayoutSeq.cmd +WorkingDir=Interop\StructMarshalling\PInvoke\MarshalStructAsLayoutSeq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gc_base1.cmd_5581] +RelativePath=GC\Scenarios\GCBase1\gc_base1\gc_base1.cmd +WorkingDir=GC\Scenarios\GCBase1\gc_base1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_2a.cmd_5582] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2a\_il_dbgtest_2a.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAcos.cmd_5583] +RelativePath=CoreMangLib\cti\system\math\MathAcos\MathAcos.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAcos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetUpperBound.cmd_5584] +RelativePath=CoreMangLib\cti\system\array\ArrayGetUpperBound\ArrayGetUpperBound.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetUpperBound +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchretnonlocalexitinfunclet_r.cmd_5585] +RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r\catchretnonlocalexitinfunclet_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox.cmd_5586] +RelativePath=JIT\CodeGenBringUpTests\Unbox\Unbox.cmd +WorkingDir=JIT\CodeGenBringUpTests\Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCtor1_cti.cmd_5587] +RelativePath=CoreMangLib\cti\system\guid\GuidCtor1_cti\GuidCtor1_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated278.cmd_5588] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest278\Generated278\Generated278.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest278\Generated278 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2G_r.cmd_5589] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_r\hfa_nf2G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_200492.cmd_5590] +RelativePath=JIT\Regression\JitBlue\DevDiv_200492\DevDiv_200492\DevDiv_200492.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_200492\DevDiv_200492 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1013.cmd_5591] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1013\Generated1013\Generated1013.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1013\Generated1013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated34.cmd_5592] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest34\Generated34\Generated34.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest34\Generated34 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MatrixMul_o.cmd_5593] +RelativePath=JIT\jit64\opt\rngchk\MatrixMul_o\MatrixMul_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\MatrixMul_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i16.cmd_5594] +RelativePath=JIT\jit64\mcc\interop\mcc_i16\mcc_i16.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgconcurgc_il.cmd_5595] +RelativePath=JIT\Methodical\Boxing\misc\_dbgconcurgc_il\_dbgconcurgc_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgconcurgc_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1220.cmd_5596] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1220\Generated1220\Generated1220.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1220\Generated1220 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_static.cmd_5597] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static\class01_static.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64TryParse.cmd_5598] +RelativePath=CoreMangLib\cti\system\int64\Int64TryParse\Int64TryParse.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i70.cmd_5599] +RelativePath=JIT\jit64\mcc\interop\mcc_i70\mcc_i70.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i70 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[invocation_d.cmd_5600] +RelativePath=JIT\Directed\nullabletypes\invocation_d\invocation_d.cmd +WorkingDir=JIT\Directed\nullabletypes\invocation_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thdtreegrowingobj.cmd_5601] +RelativePath=GC\Scenarios\BinTree\thdtreegrowingobj\thdtreegrowingobj.cmd +WorkingDir=GC\Scenarios\BinTree\thdtreegrowingobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[_speed_dbgselfref.cmd_5602] +RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgselfref\_speed_dbgselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_6.cmd_5603] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_6\ConvertToInt32_6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvalftn.cmd_5604] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn\_il_dbgvalftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated335.cmd_5605] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest335\Generated335\Generated335.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest335\Generated335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1340.cmd_5606] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1340\Generated1340\Generated1340.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1340\Generated1340 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_U2.cmd_5607] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2\OpCodesLdind_U2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1392.cmd_5608] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1392\Generated1392\Generated1392.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1392\Generated1392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryexcept_r.cmd_5609] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r\nestedtryexcept_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_283795.cmd_5610] +RelativePath=JIT\Regression\JitBlue\DevDiv_283795\DevDiv_283795\DevDiv_283795.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_283795\DevDiv_283795 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2G_r.cmd_5611] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_r\hfa_sf2G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToInt16.cmd_5612] +RelativePath=CoreMangLib\cti\system\single\SingleToInt16\SingleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31452.cmd_5613] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452\b31452.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryContainsValue.cmd_5614] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue\DictionaryContainsValue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated720.cmd_5615] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest720\Generated720\Generated720.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest720\Generated720 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1274.cmd_5616] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1274\Generated1274\Generated1274.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1274\Generated1274 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemberAccessExceptionCtor1.cmd_5617] +RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1\MemberAccessExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated552.cmd_5618] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest552\Generated552\Generated552.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest552\Generated552 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_64.cmd_5619] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_64\GCSimulator_64.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call04_dynamic.cmd_5620] +RelativePath=JIT\jit64\localloc\call\call04_dynamic\call04_dynamic.cmd +WorkingDir=JIT\jit64\localloc\call\call04_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Arrayssimple3.cmd_5621] +RelativePath=JIT\Directed\array-il\_Arrayssimple3\_Arrayssimple3.cmd +WorkingDir=JIT\Directed\array-il\_Arrayssimple3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jmp_dbg.cmd_5622] +RelativePath=JIT\jit64\opt\cg\il\jmp_dbg\jmp_dbg.cmd +WorkingDir=JIT\jit64\opt\cg\il\jmp_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05619.cmd_5623] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619\b05619.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf1b.cmd_5624] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1b\ArrayLastIndexOf1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli4u1.cmd_5625] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u1\_il_reli4u1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_55.cmd_5626] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_55\GCSimulator_55.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_55 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80045.cmd_5627] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045\b80045.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchinfinally_ro.cmd_5628] +RelativePath=JIT\Methodical\eh\interactions\switchinfinally_ro\switchinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToUInt32.cmd_5629] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32\UInt16IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeShortInlineR.cmd_5630] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR\OperandTypeShortInlineR.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated20.cmd_5631] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest20\Generated20\Generated20.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest20\Generated20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[oponerror_do.cmd_5632] +RelativePath=JIT\Methodical\eh\leaves\oponerror_do\oponerror_do.cmd +WorkingDir=JIT\Methodical\eh\leaves\oponerror_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch08.cmd_5633] +RelativePath=baseservices\exceptions\generics\nested-try-catch08\nested-try-catch08.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgaddsub.cmd_5634] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgaddsub\_speed_dbgaddsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgaddsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated81.cmd_5635] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest81\Generated81\Generated81.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest81\Generated81 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfr4.cmd_5636] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr4\_il_relfr4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorAdd_ro.cmd_5637] +RelativePath=JIT\SIMD\VectorAdd_ro\VectorAdd_ro.cmd +WorkingDir=JIT\SIMD\VectorAdd_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02_auto.cmd_5638] +RelativePath=Loader\classloader\generics\Layout\General\class02_auto\class02_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class02_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Positive009.cmd_5639] +RelativePath=Loader\classloader\generics\Layout\Specific\Positive009\Positive009.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Positive009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1485.cmd_5640] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1485\Generated1485\Generated1485.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1485\Generated1485 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingFieldExceptionCtor3.cmd_5641] +RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3\MissingFieldExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47080.cmd_5642] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080\b47080.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_5.cmd_5643] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5\OpCodesLdc_I4_5.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_i4.cmd_5644] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4\_opt_dbgrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilldind_il_r.cmd_5645] +RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r\volatilldind_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initobj.cmd_5646] +RelativePath=JIT\Directed\PREFIX\unaligned\4\initobj\initobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\initobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt644.cmd_5647] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt644\ConvertToUInt644.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt644 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated480.cmd_5648] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest480\Generated480\Generated480.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest480\Generated480 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_array_merge.cmd_5649] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge\_il_dbgu_array_merge.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatInfinitiesToInt_d.cmd_5650] +RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_d\FloatInfinitiesToInt_d.cmd +WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated773.cmd_5651] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest773\Generated773\Generated773.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest773\Generated773 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryAdd.cmd_5652] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd\DictionaryIDictionaryAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedcatch_r.cmd_5653] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_r\throwinnestedcatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_334.cmd_5654] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_334\GCSimulator_334.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_334 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value005.cmd_5655] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005\box-unbox-value005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1361.cmd_5656] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1361\Generated1361\Generated1361.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1361\Generated1361 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadImageFormatExceptionMessage.cmd_5657] +RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage\BadImageFormatExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblAdd.cmd_5658] +RelativePath=JIT\CodeGenBringUpTests\DblAdd\DblAdd.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic2_il_d.cmd_5659] +RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_d\stfldstatic2_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param04.cmd_5660] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param04\param04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_200.cmd_5661] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_200\GCSimulator_200.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_200 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47047.cmd_5662] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047\b47047.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10666.cmd_5663] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666\b10666.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test584.cmd_5664] +RelativePath=Regressions\coreclr\0584\Test584\Test584.cmd +WorkingDir=Regressions\coreclr\0584\Test584 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_o2.cmd_5665] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o2\_il_relrefloc_o2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind03_large.cmd_5666] +RelativePath=JIT\jit64\localloc\unwind\unwind03_large\unwind03_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind03_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryContains.cmd_5667] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains\DictionaryIDictionaryContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-5-1.cmd_5668] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-5-1\L-1-5-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-5-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated806.cmd_5669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest806\Generated806\Generated806.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest806\Generated806 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[longdeccheckreturn.cmd_5670] +RelativePath=baseservices\threading\interlocked\checkreturn\longdeccheckreturn\longdeccheckreturn.cmd +WorkingDir=baseservices\threading\interlocked\checkreturn\longdeccheckreturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsvalbox.cmd_5671] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox\_speed_rellcsvalbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0G_d.cmd_5672] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_d\hfa_nd0G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToInt64.cmd_5673] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt64\Int32IConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekWednesday.cmd_5674] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday\DayOfWeekWednesday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[assemname_cs_ro.cmd_5675] +RelativePath=JIT\Methodical\cctor\misc\assemname_cs_ro\assemname_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte16.cmd_5676] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte16\ConvertToSByte16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated37.cmd_5677] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest37\Generated37\Generated37.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest37\Generated37 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_u1.cmd_5678] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1\mul_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39224.cmd_5679] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224\b39224.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTicksPerMinute.cmd_5680] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute\TimeSpanTicksPerMinute.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_mod.cmd_5681] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mod\VolatileTest_op_mod.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectGetHashCode.cmd_5682] +RelativePath=CoreMangLib\cti\system\object\ObjectGetHashCode\ObjectGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0C_r.cmd_5683] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_r\hfa_sf0C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldsub_cs_d.cmd_5684] +RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_d\lclfldsub_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_264.cmd_5685] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_264\GCSimulator_264.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_264 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71999.cmd_5686] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999\b71999.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics021.cmd_5687] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021\box-unbox-generics021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2B_d.cmd_5688] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_d\hfa_sd2B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualConstructTrue.cmd_5689] +RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue\ManualConstructTrue.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyDoubleArray.cmd_5690] +RelativePath=Interop\MarshalAPI\Copy\CopyDoubleArray\CopyDoubleArray.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyDoubleArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_173.cmd_5691] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_173\GCSimulator_173.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_173 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1457.cmd_5692] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1457\Generated1457\Generated1457.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1457\Generated1457 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NegativeGenerics.cmd_5693] +RelativePath=CoreMangLib\system\delegate\generics\NegativeGenerics\NegativeGenerics.cmd +WorkingDir=CoreMangLib\system\delegate\generics\NegativeGenerics +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64Parse3.cmd_5694] +RelativePath=CoreMangLib\cti\system\int64\Int64Parse3\Int64Parse3.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_296.cmd_5695] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_296\GCSimulator_296.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_296 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trybodyinbetweencatchhandlers_r.cmd_5696] +RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r\trybodyinbetweencatchhandlers_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase07.cmd_5697] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase07\AbstractBase07.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0C_d.cmd_5698] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_d\hfa_sf0C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1373.cmd_5699] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1373\Generated1373\Generated1373.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1373\Generated1373 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method013.cmd_5700] +RelativePath=Loader\classloader\generics\GenericMethods\method013\method013.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exceptions.cmd_5701] +RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\exceptions\exceptions.cmd +WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\exceptions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1402.cmd_5702] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1402\Generated1402\Generated1402.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1402\Generated1402 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated395.cmd_5703] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest395\Generated395\Generated395.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest395\Generated395 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated622.cmd_5704] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest622\Generated622\Generated622.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest622\Generated622 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static-ref.cmd_5705] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref\static-ref.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated873.cmd_5706] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest873\Generated873\Generated873.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest873\Generated873 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexpos4.cmd_5707] +RelativePath=baseservices\threading\mutex\openexisting\openmutexpos4\openmutexpos4.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexpos4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hasvalue_d.cmd_5708] +RelativePath=JIT\Directed\nullabletypes\hasvalue_d\hasvalue_d.cmd +WorkingDir=JIT\Directed\nullabletypes\hasvalue_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VSW491577.cmd_5709] +RelativePath=Loader\classloader\nesting\coreclr\VSW491577\VSW491577.cmd +WorkingDir=Loader\classloader\nesting\coreclr\VSW491577 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated891.cmd_5710] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest891\Generated891\Generated891.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest891\Generated891 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort2b.cmd_5711] +RelativePath=CoreMangLib\cti\system\array\ArraySort2b\ArraySort2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListIndexOf.cmd_5712] +RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf\IListIndexOf.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1280.cmd_5713] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1280\Generated1280\Generated1280.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1280\Generated1280 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02d_seq_ser.cmd_5714] +RelativePath=Loader\classloader\generics\Layout\General\Base02d_seq_ser\Base02d_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02d_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_418.cmd_5715] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_418\GCSimulator_418.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_418 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1420.cmd_5716] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1420\Generated1420\Generated1420.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1420\Generated1420 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex8.cmd_5717] +RelativePath=baseservices\threading\waithandle\waitall\waitallex8\waitallex8.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated705.cmd_5718] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest705\Generated705\Generated705.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest705\Generated705 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36304.cmd_5719] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304\b36304.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyKeyNameAttributeKeyName.cmd_5720] +RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName\AssemblyKeyNameAttributeKeyName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct03.cmd_5721] +RelativePath=JIT\Generics\Instantiation\Structs\struct03\struct03.cmd +WorkingDir=JIT\Generics\Instantiation\Structs\struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualConstructFalse.cmd_5722] +RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse\ManualConstructFalse.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TotalMemory.cmd_5723] +RelativePath=GC\API\GC\TotalMemory\TotalMemory.cmd +WorkingDir=GC\API\GC\TotalMemory +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Pending.cmd_5724] +RelativePath=baseservices\exceptions\unittests\Pending\Pending.cmd +WorkingDir=baseservices\exceptions\unittests\Pending +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[osr015.cmd_5725] +RelativePath=JIT\jit64\opt\osr\osr015\osr015.cmd +WorkingDir=JIT\jit64\opt\osr\osr015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw529206ModuleCctor.cmd_5726] +RelativePath=Loader\classloader\regressions\529206\vsw529206ModuleCctor\vsw529206ModuleCctor.cmd +WorkingDir=Loader\classloader\regressions\529206\vsw529206ModuleCctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16473.cmd_5727] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473\b16473.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated315.cmd_5728] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest315\Generated315\Generated315.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest315\Generated315 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate008.cmd_5729] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate008\Delegate008.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated117.cmd_5730] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest117\Generated117\Generated117.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest117\Generated117 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeShortInlineVar.cmd_5731] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar\OperandTypeShortInlineVar.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated639.cmd_5732] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest639\Generated639\Generated639.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest639\Generated639 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise4_cs_do.cmd_5733] +RelativePath=JIT\Methodical\cctor\simple\precise4_cs_do\precise4_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul1_opt.cmd_5734] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt\mul1_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACC_d.cmd_5735] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d\CGRecurseACC_d.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrCtor_UInt64.cmd_5736] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64\UIntPtrCtor_UInt64.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated912.cmd_5737] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest912\Generated912\Generated912.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest912\Generated912 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumeratorMoveNext.cmd_5738] +RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext\IEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_d.cmd_5739] +RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_d\structarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relii1.cmd_5740] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relii1\_il_relii1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_401.cmd_5741] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_401\GCSimulator_401.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_401 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b334376.cmd_5742] +RelativePath=Loader\classloader\generics\regressions\334376\b334376\b334376.cmd +WorkingDir=Loader\classloader\generics\regressions\334376\b334376 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsWhiteSpace2.cmd_5743] +RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace2\CharIsWhiteSpace2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltailcall.cmd_5744] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltailcall\_il_reltailcall.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Recurse.cmd_5745] +RelativePath=baseservices\exceptions\unittests\Recurse\Recurse.cmd +WorkingDir=baseservices\exceptions\unittests\Recurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value034.cmd_5746] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034\box-unbox-value034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[late.cmd_5747] +RelativePath=JIT\opt\Devirtualization\late\late.cmd +WorkingDir=JIT\opt\Devirtualization\late +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1014.cmd_5748] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1014\Generated1014\Generated1014.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1014\Generated1014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated25.cmd_5749] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest25\Generated25\Generated25.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest25\Generated25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated909.cmd_5750] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest909\Generated909\Generated909.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest909\Generated909 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowStaticField.cmd_5751] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowStaticField\CctorThrowStaticField.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowStaticField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli4u2.cmd_5752] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u2\_il_reli4u2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8rem_cs_do.cmd_5753] +RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_do\i8rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex2.cmd_5754] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex2\waitanyex2.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_i.cmd_5755] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i\stloc_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface002.cmd_5756] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002\castclass-interface002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null041.cmd_5757] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041\castclass-null041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeValue.cmd_5758] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue\MarshalAsAttributeValue.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics031.cmd_5759] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031\box-unbox-generics031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sehhandlerbeforetry_r.cmd_5760] +RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r\sehhandlerbeforetry_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf1b.cmd_5761] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1b\ArrayIndexOf1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRethrow.cmd_5762] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow\OpCodesRethrow.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b141062.cmd_5763] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062\b141062.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter008.cmd_5764] +RelativePath=baseservices\exceptions\generics\TypeParameter008\TypeParameter008.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_90.cmd_5765] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_90\GCSimulator_90.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_90 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GoryManagedPresent.cmd_5766] +RelativePath=baseservices\exceptions\unittests\GoryManagedPresent\GoryManagedPresent.cmd +WorkingDir=baseservices\exceptions\unittests\GoryManagedPresent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_816617_do.cmd_5767] +RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do\DevDiv_816617_do.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_inst.cmd_5768] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_inst\_il_dbgdeep_inst.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_inst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalConstantAttributeCtor.cmd_5769] +RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor\DecimalConstantAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated522.cmd_5770] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest522\Generated522\Generated522.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest522\Generated522 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass037.cmd_5771] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037\castclass037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14396.cmd_5772] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396\b14396.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0B_d.cmd_5773] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_d\hfa_nf0B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh01_small.cmd_5774] +RelativePath=JIT\jit64\localloc\eh\eh01_small\eh01_small.cmd +WorkingDir=JIT\jit64\localloc\eh\eh01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchnestedtype_ro.cmd_5775] +RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_ro\trycatchnestedtype_ro.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_struct.cmd_5776] +RelativePath=JIT\Directed\zeroinit\init_struct\init_struct.cmd +WorkingDir=JIT\Directed\zeroinit\init_struct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Co6031GetHashCode.cmd_5777] +RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode\Co6031GetHashCode.cmd +WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PropertyAttributesRTSpecialName.cmd_5778] +RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName\PropertyAttributesRTSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDefaultAliasAttribute.cmd_5779] +RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttribute\AssemblyDefaultAliasAttribute.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttribute +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress1_ro.cmd_5780] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_ro\CgStress1_ro.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42732.cmd_5781] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732\b42732.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualResetCast1.cmd_5782] +RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1\ManualResetCast1.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-5-8-two.cmd_5783] +RelativePath=Loader\classloader\rmv\il\RMV-2-5-8-two\RMV-2-5-8-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-5-8-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OutOfMemoryExceptionCtor2.cmd_5784] +RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2\OutOfMemoryExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldelema.cmd_5785] +RelativePath=JIT\Methodical\xxobj\operand\_il_relldelema\_il_relldelema.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_relldelema +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null015.cmd_5786] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015\box-unbox-null015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayReverse1.cmd_5787] +RelativePath=CoreMangLib\cti\system\array\ArrayReverse1\ArrayReverse1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayReverse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[br_s.cmd_5788] +RelativePath=JIT\IL_Conformance\Old\Base\br_s\br_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\br_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ActionInvoke.cmd_5789] +RelativePath=CoreMangLib\cti\system\action\ActionInvoke\ActionInvoke.cmd +WorkingDir=CoreMangLib\cti\system\action\ActionInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16935.cmd_5790] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935\b16935.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_4.cmd_5791] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_4\ConvertToInt32_4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1118.cmd_5792] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1118\Generated1118\Generated1118.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1118\Generated1118 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorInit_ro.cmd_5793] +RelativePath=JIT\SIMD\VectorInit_ro\VectorInit_ro.cmd +WorkingDir=JIT\SIMD\VectorInit_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[qMarkColon.cmd_5794] +RelativePath=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon\qMarkColon.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_ro.cmd_5795] +RelativePath=JIT\Directed\shift\int16_ro\int16_ro.cmd +WorkingDir=JIT\Directed\shift\int16_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNadd_cs_ro.cmd_5796] +RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_ro\r8NaNadd_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeTypePrimitive.cmd_5797] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive\OpCodeTypePrimitive.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesClt.cmd_5798] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt\OpCodesClt.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_17.cmd_5799] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_17\GCSimulator_17.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b140902.cmd_5800] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902\b140902.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bigvtbl_cs_d.cmd_5801] +RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d\bigvtbl_cs_d.cmd +WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40347.cmd_5802] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347\b40347.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baduwinfo.cmd_5803] +RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo\baduwinfo.cmd +WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2A_d.cmd_5804] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_d\hfa_sf2A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatInfinitiesToInt_ro.cmd_5805] +RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro\FloatInfinitiesToInt_ro.cmd +WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_ldloc.cmd_5806] +RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldloc\_il_relisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct9_2.cmd_5807] +RelativePath=JIT\jit64\gc\misc\struct9_2\struct9_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct9_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsmax.cmd_5808] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmax\_dbglcsmax.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmax +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value024.cmd_5809] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024\box-unbox-value024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1056.cmd_5810] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1056\Generated1056\Generated1056.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1056\Generated1056 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdtoken.cmd_5811] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken\OpCodesLdtoken.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testInterface.cmd_5812] +RelativePath=Regressions\common\testInterface\testInterface.cmd +WorkingDir=Regressions\common\testInterface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToDecimal.cmd_5813] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal\SByteIConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30905.cmd_5814] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905\b30905.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddLongWithSubtract.cmd_5815] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract\InterlockedAddLongWithSubtract.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test968.cmd_5816] +RelativePath=Regressions\coreclr\0968\Test968\Test968.cmd +WorkingDir=Regressions\coreclr\0968\Test968 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCopy.cmd_5817] +RelativePath=Regressions\coreclr\0018\ArrayCopy\ArrayCopy.cmd +WorkingDir=Regressions\coreclr\0018\ArrayCopy +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2A_d.cmd_5818] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_d\hfa_nf2A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref.cmd_5819] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref\StackBehaviourPopref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1054.cmd_5820] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1054\Generated1054\Generated1054.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1054\Generated1054 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1052.cmd_5821] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1052\Generated1052\Generated1052.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1052\Generated1052 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class2_ImplicitOverrideVirtualNewslot.cmd_5822] +RelativePath=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtualNewslot\Class2_ImplicitOverrideVirtualNewslot.cmd +WorkingDir=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtualNewslot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToInt16.cmd_5823] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16\IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowincatchnestedinfinally_ro.cmd_5824] +RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro\rethrowincatchnestedinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ddb87766.cmd_5825] +RelativePath=JIT\jit64\regress\ddb\87766\ddb87766\ddb87766.cmd +WorkingDir=JIT\jit64\regress\ddb\87766\ddb87766 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_116.cmd_5826] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_116\GCSimulator_116.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_116 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278526.cmd_5827] +RelativePath=JIT\Regression\JitBlue\DevDiv_278526\DevDiv_278526\DevDiv_278526.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278526\DevDiv_278526 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsEnum.cmd_5828] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum\AttributeTargetsEnum.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString11.cmd_5829] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString11\ConvertToString11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToDateTime.cmd_5830] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime\DoubleIConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToInt32.cmd_5831] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32\UInt64IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16382.cmd_5832] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382\b16382.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgaddsub.cmd_5833] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgaddsub\_il_dbgaddsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgaddsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics025.cmd_5834] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025\box-unbox-generics025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[R3Contention.cmd_5835] +RelativePath=JIT\Regression\Dev11\External\dev11_28763\R3Contention\R3Contention.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_28763\R3Contention +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_171.cmd_5836] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_171\GCSimulator_171.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_171 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_un_r4.cmd_5837] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4\cgt_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_i4.cmd_5838] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i4\bge_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated936.cmd_5839] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest936\Generated936\Generated936.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest936\Generated936 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToInt32.cmd_5840] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32\IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1445.cmd_5841] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1445\Generated1445\Generated1445.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1445\Generated1445 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstgenerics_d.cmd_5842] +RelativePath=JIT\Directed\nullabletypes\isinstgenerics_d\isinstgenerics_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated633.cmd_5843] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest633\Generated633\Generated633.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest633\Generated633 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b64560.cmd_5844] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560\b64560.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relinstftn.cmd_5845] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn\_il_relinstftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_calli.cmd_5846] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli\_il_dbgcastclass_calli.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor2.cmd_5847] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2\StringBuilderctor2.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated432.cmd_5848] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest432\Generated432\Generated432.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest432\Generated432 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b608198.cmd_5849] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198\b608198.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteTryParse.cmd_5850] +RelativePath=CoreMangLib\cti\system\sbyte\SByteTryParse\SByteTryParse.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test.cmd_5851] +RelativePath=Loader\classloader\regressions\421439\Test\Test.cmd +WorkingDir=Loader\classloader\regressions\421439\Test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16881b.cmd_5852] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b\b16881b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_I4.cmd_5853] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4\OpCodesLdelem_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null002.cmd_5854] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002\castclass-null002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated447.cmd_5855] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest447\Generated447\Generated447.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest447\Generated447 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_360.cmd_5856] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_360\GCSimulator_360.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_360 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Add1.cmd_5857] +RelativePath=JIT\CodeGenBringUpTests\Add1\Add1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Add1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated446.cmd_5858] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest446\Generated446\Generated446.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest446\Generated446 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated319.cmd_5859] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest319\Generated319\Generated319.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest319\Generated319 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_fld.cmd_5860] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld\_il_dbgu_fld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeLong_1.cmd_5861] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1\CompareExchangeLong_1.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06595.cmd_5862] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595\b06595.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_or.cmd_5863] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_or\VolatileTest_op_or.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_or +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated791.cmd_5864] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest791\Generated791\Generated791.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest791\Generated791 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fielda_tests.cmd_5865] +RelativePath=JIT\Directed\PREFIX\volatile\1\fielda_tests\fielda_tests.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\fielda_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relsizeof.cmd_5866] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof\_speed_relsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte9.cmd_5867] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte9\ConvertToSByte9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31289.cmd_5868] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289\b31289.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldrem_cs_ro.cmd_5869] +RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro\lclfldrem_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated863.cmd_5870] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest863\Generated863\Generated863.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest863\Generated863 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToUInt16.cmd_5871] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt16\DecimalToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001g.cmd_5872] +RelativePath=Loader\classloader\generics\GenericMethods\method001g\method001g.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001g +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldc_div.cmd_5873] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_div\_il_rels_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchangeobject.cmd_5874] +RelativePath=baseservices\threading\interlocked\exchange\exchangeobject\exchangeobject.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchangeobject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[endofstreamexceptionctor2_PSC.cmd_5875] +RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC\endofstreamexceptionctor2_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case2.cmd_5876] +RelativePath=Loader\classloader\v1\M10\Acceptance\Case2\Case2.cmd +WorkingDir=Loader\classloader\v1\M10\Acceptance\Case2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeTypeMacro.cmd_5877] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro\OpCodeTypeMacro.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ldind_ro.cmd_5878] +RelativePath=JIT\SIMD\Ldind_ro\Ldind_ro.cmd +WorkingDir=JIT\SIMD\Ldind_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4div_cs_ro.cmd_5879] +RelativePath=JIT\Methodical\divrem\div\i4div_cs_ro\i4div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\i4div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nongentogen02.cmd_5880] +RelativePath=JIT\Generics\Conversions\Reference\nongentogen02\nongentogen02.cmd +WorkingDir=JIT\Generics\Conversions\Reference\nongentogen02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated438.cmd_5881] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest438\Generated438\Generated438.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest438\Generated438 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca.cmd_5882] +RelativePath=JIT\Directed\PREFIX\unaligned\1\ldloca\ldloca.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\ldloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-1.cmd_5883] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-1\_relunsafe-1.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrCtor_UInt32.cmd_5884] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32\UIntPtrCtor_UInt32.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault-struct01.cmd_5885] +RelativePath=baseservices\exceptions\generics\try-fault-struct01\try-fault-struct01.cmd +WorkingDir=baseservices\exceptions\generics\try-fault-struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBne_Un_S.cmd_5886] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S\OpCodesBne_Un_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated350.cmd_5887] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest350\Generated350\Generated350.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest350\Generated350 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1301.cmd_5888] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1301\Generated1301\Generated1301.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1301\Generated1301 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finallybeforetrybody_r.cmd_5889] +RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_r\finallybeforetrybody_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass027.cmd_5890] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027\castclass027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16MinValue.cmd_5891] +RelativePath=CoreMangLib\cti\system\int16\Int16MinValue\Int16MinValue.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16MinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass038.cmd_5892] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038\castclass038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Default_1.cmd_5893] +RelativePath=GC\API\GC\Collect_Default_1\Collect_Default_1.cmd +WorkingDir=GC\API\GC\Collect_Default_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt643.cmd_5894] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt643\ConvertToUInt643.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt643 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsLetterOrDigit1.cmd_5895] +RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit1\CharIsLetterOrDigit1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[preemptive_cooperative.cmd_5896] +RelativePath=JIT\Directed\pinvoke\preemptive_cooperative\preemptive_cooperative.cmd +WorkingDir=JIT\Directed\pinvoke\preemptive_cooperative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS;NEW;R2R_FAIL;EXCLUDED;2434;KERNEL_32_DEPENDENCY +HostStyle=0 + +[b448208.cmd_5897] +RelativePath=Loader\classloader\generics\regressions\448208\b448208\b448208.cmd +WorkingDir=Loader\classloader\generics\regressions\448208\b448208 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sin3double.cmd_5898] +RelativePath=JIT\Methodical\Boxing\morph\sin3double\sin3double.cmd +WorkingDir=JIT\Methodical\Boxing\morph\sin3double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics027.cmd_5899] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027\box-unbox-generics027.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated629.cmd_5900] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest629\Generated629\Generated629.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest629\Generated629 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-02_cs_ro.cmd_5901] +RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_ro\5w1d-02_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwwithhandlerscatchingbase_r.cmd_5902] +RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r\throwwithhandlerscatchingbase_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localvarincatch_d.cmd_5903] +RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_d\localvarincatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-3-two.cmd_5904] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-3-two\RMV-2-8-3-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-3-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_And_Op_cs_d.cmd_5905] +RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_d\Bool_And_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread19.cmd_5906] +RelativePath=baseservices\threading\generics\TimerCallback\thread19\thread19.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MutualThdRecur-fptr.cmd_5907] +RelativePath=JIT\Directed\Misc\function_pointer\MutualThdRecur-fptr\MutualThdRecur-fptr.cmd +WorkingDir=JIT\Directed\Misc\function_pointer\MutualThdRecur-fptr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesRetval.cmd_5908] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval\ParameterAttributesRetval.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated178.cmd_5909] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest178\Generated178\Generated178.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest178\Generated178 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_call.cmd_5910] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_call\_il_dbgisinst_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_102.cmd_5911] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_102\GCSimulator_102.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_102 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_406160.cmd_5912] +RelativePath=JIT\Regression\JitBlue\DevDiv_406160\DevDiv_406160\DevDiv_406160.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_406160\DevDiv_406160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_r8.cmd_5913] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r8\div_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch09.cmd_5914] +RelativePath=baseservices\exceptions\generics\nested-try-catch09\nested-try-catch09.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit12.cmd_5915] +RelativePath=baseservices\threading\generics\Monitor\EnterExit12\EnterExit12.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b223862.cmd_5916] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862\b223862.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated775.cmd_5917] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest775\Generated775\Generated775.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest775\Generated775 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_pop1.cmd_5918] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1\StackBehaviourPopi_pop1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated798.cmd_5919] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest798\Generated798\Generated798.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest798\Generated798 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4div_cs_r.cmd_5920] +RelativePath=JIT\Methodical\divrem\div\i4div_cs_r\i4div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\i4div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-02_cs_d.cmd_5921] +RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_d\3w1d-02_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b151497.cmd_5922] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497\b151497.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated236.cmd_5923] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest236\Generated236\Generated236.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest236\Generated236 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[objmonhelper.cmd_5924] +RelativePath=baseservices\threading\regressions\269336\objmonhelper\objmonhelper.cmd +WorkingDir=baseservices\threading\regressions\269336\objmonhelper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte1.cmd_5925] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte1\ConvertToByte1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToBoolean.cmd_5926] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean\UInt32IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxinterface_r.cmd_5927] +RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_r\boxunboxinterface_r.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSqrt_ro.cmd_5928] +RelativePath=JIT\SIMD\VectorSqrt_ro\VectorSqrt_ro.cmd +WorkingDir=JIT\SIMD\VectorSqrt_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shl_u8.cmd_5929] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u8\shl_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14640.cmd_5930] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640\b14640.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test24.cmd_5931] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test24\test24.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated625.cmd_5932] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest625\Generated625\Generated625.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest625\Generated625 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b90129.cmd_5933] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129\b90129.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVNumCnt1.cmd_5934] +RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt1\LVNumCnt1.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox013.cmd_5935] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013\box-unbox013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_u.cmd_5936] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u\bgt_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[float_cs_do.cmd_5937] +RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_do\float_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToDecimal.cmd_5938] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal\UInt64IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relhan3.cmd_5939] +RelativePath=JIT\Methodical\VT\etc\_relhan3\_relhan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_relhan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UDivConst.cmd_5940] +RelativePath=JIT\CodeGenBringUpTests\UDivConst\UDivConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\UDivConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorector5.cmd_5941] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorector5\semaphorector5.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorector5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fieldexpr2.cmd_5942] +RelativePath=JIT\jit64\opt\cse\fieldexpr2\fieldexpr2.cmd +WorkingDir=JIT\jit64\opt\cse\fieldexpr2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4div_cs_r.cmd_5943] +RelativePath=JIT\Methodical\divrem\div\u4div_cs_r\u4div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\u4div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToUInt16.cmd_5944] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16\Int16IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[regression_749068.cmd_5945] +RelativePath=baseservices\threading\threadpool\unregister\regression_749068\regression_749068.cmd +WorkingDir=baseservices\threading\threadpool\unregister\regression_749068 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1070.cmd_5946] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1070\Generated1070\Generated1070.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1070\Generated1070 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1110.cmd_5947] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1110\Generated1110\Generated1110.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1110\Generated1110 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated370.cmd_5948] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest370\Generated370\Generated370.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest370\Generated370 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated605.cmd_5949] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest605\Generated605\Generated605.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest605\Generated605 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPDiv.cmd_5950] +RelativePath=JIT\CodeGenBringUpTests\FPDiv\FPDiv.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPDiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated687.cmd_5951] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest687\Generated687\Generated687.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest687\Generated687 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestOverrides.cmd_5952] +RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestOverrides\TestOverrides.cmd +WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestOverrides +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_M1.cmd_5953] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1\OpCodesLdc_I4_M1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro369794.cmd_5954] +RelativePath=Loader\classloader\explicitlayout\Regressions\369794\repro369794\repro369794.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\369794\repro369794 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToType.cmd_5955] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToType\Int64IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics005.cmd_5956] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005\castclass-generics005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_qsort2.cmd_5957] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2\_il_relu_qsort2.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_325.cmd_5958] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_325\GCSimulator_325.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_325 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50145a.cmd_5959] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a\b50145a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37214.cmd_5960] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214\b37214.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString17.cmd_5961] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString17\ConvertToString17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2a_cs_d.cmd_5962] +RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_d\25param2a_cs_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivideByZeroExceptionCtor2.cmd_5963] +RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2\DivideByZeroExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classic_d.cmd_5964] +RelativePath=JIT\Methodical\nonvirtualcall\classic_d\classic_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\classic_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1456.cmd_5965] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1456\Generated1456\Generated1456.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1456\Generated1456 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean8.cmd_5966] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean8\ConvertToBoolean8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b130333.cmd_5967] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333\b130333.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor8.cmd_5968] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor8\DecimalCtor8.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BoxUnbox_r.cmd_5969] +RelativePath=JIT\SIMD\BoxUnbox_r\BoxUnbox_r.cmd +WorkingDir=JIT\SIMD\BoxUnbox_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrGetHashCode.cmd_5970] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrGetHashCode\IntPtrGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-3.cmd_5971] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-3\_dbgunsafe-3.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefconvert_il_r.cmd_5972] +RelativePath=JIT\Directed\refbyref\byrefconvert_il_r\byrefconvert_il_r.cmd +WorkingDir=JIT\Directed\refbyref\byrefconvert_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeShortInlineI.cmd_5973] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI\OperandTypeShortInlineI.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest1_cs_do.cmd_5974] +RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do\ctest1_cs_do.cmd +WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call.cmd_5975] +RelativePath=JIT\IL_Conformance\Old\Base\call\call.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated392.cmd_5976] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest392\Generated392\Generated392.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest392\Generated392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U1_Un.cmd_5977] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un\OpCodesConv_Ovf_U1_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[longtimeout.cmd_5978] +RelativePath=baseservices\threading\monitor\tryenter\longtimeout\longtimeout.cmd +WorkingDir=baseservices\threading\monitor\tryenter\longtimeout +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitnull.cmd_5979] +RelativePath=baseservices\threading\monitor\wait\waitnull\waitnull.cmd +WorkingDir=baseservices\threading\monitor\wait\waitnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8599.cmd_5980] +RelativePath=JIT\Regression\JitBlue\GitHub_8599\GitHub_8599\GitHub_8599.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8599\GitHub_8599 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_140.cmd_5981] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_140\GCSimulator_140.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_140 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16928.cmd_5982] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928\b16928.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interlockedread.cmd_5983] +RelativePath=baseservices\threading\interlocked\read\interlockedread\interlockedread.cmd +WorkingDir=baseservices\threading\interlocked\read\interlockedread +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_240.cmd_5984] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_240\GCSimulator_240.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_240 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBge_Un_S.cmd_5985] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S\OpCodesBge_Un_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PreserveSigAttributeCtor.cmd_5986] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor\PreserveSigAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1275.cmd_5987] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1275\Generated1275\Generated1275.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1275\Generated1275 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-2-3.cmd_5988] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-2-3\L-1-2-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-2-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relsizeof32.cmd_5989] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32\_speed_relsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEntryCtor.cmd_5990] +RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor\DictionaryEntryCtor.cmd +WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadrgninfunclet_d.cmd_5991] +RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_d\deadrgninfunclet_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NoMetaData.cmd_5992] +RelativePath=JIT\Directed\forceinlining\NoMetaData\NoMetaData.cmd +WorkingDir=JIT\Directed\forceinlining\NoMetaData +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1071.cmd_5993] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1071\Generated1071\Generated1071.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1071\Generated1071 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[long_cs_do.cmd_5994] +RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_do\long_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtry_cs.cmd_5995] +RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_cs\_dbgtry_cs.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumper2.cmd_5996] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumper2\_il_reljumper2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldunboxedvt_il_r.cmd_5997] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r\ldfldunboxedvt_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_f4.cmd_5998] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4\_il_dbgrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1146.cmd_5999] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1146\Generated1146\Generated1146.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1146\Generated1146 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1145.cmd_6000] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1145\Generated1145\Generated1145.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1145\Generated1145 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_u4.cmd_6001] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u4\bne_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca.cmd_6002] +RelativePath=JIT\Directed\PREFIX\unaligned\4\ldloca\ldloca.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\ldloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallythrow_nonlocalexit_do.cmd_6003] +RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do\tryfinallythrow_nonlocalexit_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineI.cmd_6004] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI\OperandTypeInlineI.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeHasElementTypeImpl.cmd_6005] +RelativePath=CoreMangLib\cti\system\type\TypeHasElementTypeImpl\TypeHasElementTypeImpl.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeHasElementTypeImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LeftShift.cmd_6006] +RelativePath=JIT\CodeGenBringUpTests\LeftShift\LeftShift.cmd +WorkingDir=JIT\CodeGenBringUpTests\LeftShift +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldelem_get.cmd_6007] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbgldelem_get\_il_dbgldelem_get.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgldelem_get +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77713.cmd_6008] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713\b77713.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[invocation_do.cmd_6009] +RelativePath=JIT\Directed\nullabletypes\invocation_do\invocation_do.cmd +WorkingDir=JIT\Directed\nullabletypes\invocation_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated55.cmd_6010] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest55\Generated55\Generated55.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest55\Generated55 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_d.cmd_6011] +RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_d\doublearr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_274.cmd_6012] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_274\GCSimulator_274.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_274 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexit_r.cmd_6013] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r\simplenonlocalexit_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesClass.cmd_6014] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass\TypeAttributesClass.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[objectusedonlyinhandler.cmd_6015] +RelativePath=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler\objectusedonlyinhandler.cmd +WorkingDir=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[newarray.cmd_6016] +RelativePath=readytorun\tests\newarray\newarray.cmd +WorkingDir=readytorun\tests\newarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_214.cmd_6017] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_214\GCSimulator_214.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_214 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45015.cmd_6018] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015\b45015.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListLastIndexOf1.cmd_6019] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1\ListLastIndexOf1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass033.cmd_6020] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033\castclass033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassvaluetype_do.cmd_6021] +RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_do\castclassvaluetype_do.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchretnonlocalexitinfunclet_d.cmd_6022] +RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d\catchretnonlocalexitinfunclet_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30862.cmd_6023] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862\b30862.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads2_cs_ro.cmd_6024] +RelativePath=JIT\Methodical\cctor\misc\threads2_cs_ro\threads2_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_I8.cmd_6025] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8\OpCodesStind_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61028.cmd_6026] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028\b61028.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryEnter04.cmd_6027] +RelativePath=baseservices\threading\generics\Monitor\TryEnter04\TryEnter04.cmd +WorkingDir=baseservices\threading\generics\Monitor\TryEnter04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b99969.cmd_6028] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969\b99969.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_s.cmd_6029] +RelativePath=JIT\IL_Conformance\Old\Base\bgt_s\bgt_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bgt_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionEquals1.cmd_6030] +RelativePath=CoreMangLib\cti\system\version\VersionEquals1\VersionEquals1.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72996.cmd_6031] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996\b72996.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalNegate.cmd_6032] +RelativePath=CoreMangLib\cti\system\decimal\DecimalNegate\DecimalNegate.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalNegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated965.cmd_6033] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest965\Generated965\Generated965.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest965\Generated965 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relhan3.cmd_6034] +RelativePath=JIT\Methodical\VT\etc\_speed_relhan3\_speed_relhan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgfilter.cmd_6035] +RelativePath=JIT\Methodical\Boxing\seh\_dbgfilter\_dbgfilter.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_dbgfilter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b78694.cmd_6036] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694\b78694.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b67351.cmd_6037] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351\b67351.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble16.cmd_6038] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble16\ConvertToDouble16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12053.cmd_6039] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053\b12053.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsimple.cmd_6040] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relsimple\_il_relsimple.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relsimple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_468712.cmd_6041] +RelativePath=Loader\classloader\generics\Variance\Regressions\dev10_468712\dev10_468712\dev10_468712.cmd +WorkingDir=Loader\classloader\generics\Variance\Regressions\dev10_468712\dev10_468712 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesAdd_Ovf.cmd_6042] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf\OpCodesAdd_Ovf.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test583.cmd_6043] +RelativePath=Regressions\coreclr\0583\Test583\Test583.cmd +WorkingDir=Regressions\coreclr\0583\Test583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_stloc.cmd_6044] +RelativePath=JIT\IL_Conformance\Old\Base\ldloc_stloc\ldloc_stloc.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldloc_stloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_val_1_d.cmd_6045] +RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_d\seq_val_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface007.cmd_6046] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007\castclass-interface007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated130.cmd_6047] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest130\Generated130\Generated130.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest130\Generated130 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitone1.cmd_6048] +RelativePath=baseservices\threading\mutex\misc\waitone1\waitone1.cmd +WorkingDir=baseservices\threading\mutex\misc\waitone1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv2_8863.cmd_6049] +RelativePath=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863\DevDiv2_8863.cmd +WorkingDir=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_3b.cmd_6050] +RelativePath=JIT\Methodical\tailcall\_il_reltest_3b\_il_reltest_3b.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldsfld_mul.cmd_6051] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul\_speed_dbgs_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv2_11321.cmd_6052] +RelativePath=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321\DevDiv2_11321.cmd +WorkingDir=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_126.cmd_6053] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_126\GCSimulator_126.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_126 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_cs_do.cmd_6054] +RelativePath=JIT\Directed\shift\int16_cs_do\int16_cs_do.cmd +WorkingDir=JIT\Directed\shift\int16_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_6055] +RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\class01\class01.cmd +WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatch_r.cmd_6056] +RelativePath=JIT\Methodical\eh\basics\trythrowcatch_r\trythrowcatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ddb3422.cmd_6057] +RelativePath=Loader\classloader\generics\regressions\ddb3422\ddb3422\ddb3422.cmd +WorkingDir=Loader\classloader\generics\regressions\ddb3422\ddb3422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_387.cmd_6058] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_387\GCSimulator_387.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_387 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_v.cmd_6059] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_v\_il_dbgcompat_v.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_v +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_seq.cmd_6060] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq\_il_dbgu_seq.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46847.cmd_6061] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847\b46847.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartByte_2.cmd_6062] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte_2\ThreadStartByte_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass06.cmd_6063] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass06\NestedBaseClass06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sin.cmd_6064] +RelativePath=JIT\Directed\pinvoke\sin\sin.cmd +WorkingDir=JIT\Directed\pinvoke\sin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated217.cmd_6065] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest217\Generated217\Generated217.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest217\Generated217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekFriday.cmd_6066] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday\DayOfWeekFriday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleFree_PSC.cmd_6067] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC\GCHandleFree_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDisposableDispose.cmd_6068] +RelativePath=CoreMangLib\cti\system\idisposable\IDisposableDispose\IDisposableDispose.cmd +WorkingDir=CoreMangLib\cti\system\idisposable\IDisposableDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesCodeTypeMask.cmd_6069] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask\MethodImplAttributesCodeTypeMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35348.cmd_6070] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348\b35348.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated774.cmd_6071] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest774\Generated774\Generated774.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest774\Generated774 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgnestval_il.cmd_6072] +RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_il\_dbgnestval_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated164.cmd_6073] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest164\Generated164\Generated164.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest164\Generated164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relthisnull.cmd_6074] +RelativePath=JIT\Methodical\Invoke\thiscall\_relthisnull\_relthisnull.cmd +WorkingDir=JIT\Methodical\Invoke\thiscall\_relthisnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_cs_r.cmd_6075] +RelativePath=JIT\Methodical\NaN\arithm32_cs_r\arithm32_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[varargsupport_r.cmd_6076] +RelativePath=baseservices\varargs\varargsupport_r\varargsupport_r.cmd +WorkingDir=baseservices\varargs\varargsupport_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfault_tail.cmd_6077] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail\_il_relcatchfault_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_71.cmd_6078] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_71\GCSimulator_71.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_71 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEquals2.cmd_6079] +RelativePath=CoreMangLib\cti\system\guid\GuidEquals2\GuidEquals2.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2b_il_d.cmd_6080] +RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_d\25param2b_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finalizer.cmd_6081] +RelativePath=Exceptions\Finalization\Finalizer\Finalizer.cmd +WorkingDir=Exceptions\Finalization\Finalizer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestObjectGetTypeVirtual.cmd_6082] +RelativePath=Loader\classloader\regressions\14610\TestObjectGetTypeVirtual\TestObjectGetTypeVirtual.cmd +WorkingDir=Loader\classloader\regressions\14610\TestObjectGetTypeVirtual +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch1b.cmd_6083] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1b\ArrayBinarySearch1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_6084] +RelativePath=JIT\Directed\PREFIX\volatile\1\initblk\initblk.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAC_do.cmd_6085] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do\CGRecurseAAC_do.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53226b.cmd_6086] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b\b53226b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeDateTime.cmd_6087] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDateTime\TypeCodeDateTime.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_17.cmd_6088] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_17\ConvertToInt64_17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08109.cmd_6089] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109\b08109.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglength0.cmd_6090] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbglength0\_il_dbglength0.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglength0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1451.cmd_6091] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1451\Generated1451\Generated1451.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1451\Generated1451 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated982.cmd_6092] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest982\Generated982\Generated982.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest982\Generated982 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1037.cmd_6093] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1037\Generated1037\Generated1037.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1037\Generated1037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_r8.cmd_6094] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8\bgt_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread29.cmd_6095] +RelativePath=baseservices\threading\generics\syncdelegate\GThread29\GThread29.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsbas.cmd_6096] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbas\_dbglcsbas.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbas +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated797.cmd_6097] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest797\Generated797\Generated797.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest797\Generated797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_i2.cmd_6098] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2\_opt_dbgrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_No_Op_cs_do.cmd_6099] +RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_do\Bool_No_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1181.cmd_6100] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1181\Generated1181\Generated1181.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1181\Generated1181 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ndpinfinal.cmd_6101] +RelativePath=GC\Scenarios\NDPin\ndpinfinal\ndpinfinal.cmd +WorkingDir=GC\Scenarios\NDPin\ndpinfinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XAssemblytest1-xassem.cmd_6102] +RelativePath=JIT\Methodical\stringintern\_XAssemblytest1-xassem\_XAssemblytest1-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\_XAssemblytest1-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPop0.cmd_6103] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0\StackBehaviourPop0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_il_r.cmd_6104] +RelativePath=JIT\Generics\ConstrainedCall\class2_il_r\class2_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1390.cmd_6105] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1390\Generated1390\Generated1390.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1390\Generated1390 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1617.cmd_6106] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1617\ConvertToUInt1617.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorOpenFile.cmd_6107] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorOpenFile\CctorOpenFile.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorOpenFile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64GetHashCode.cmd_6108] +RelativePath=CoreMangLib\cti\system\uint64\UInt64GetHashCode\UInt64GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedTryRegionsWithSameOffset3.cmd_6109] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3\nestedTryRegionsWithSameOffset3.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex4a.cmd_6110] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex4a\waitanyex4a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex4a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics030.cmd_6111] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030\box-unbox-generics030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal17.cmd_6112] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal17\ConvertToDecimal17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrCtor_Void.cmd_6113] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Void\IntPtrCtor_Void.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Void +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try1_r.cmd_6114] +RelativePath=JIT\Directed\leave\try1_r\try1_r.cmd +WorkingDir=JIT\Directed\leave\try1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_conv.cmd_6115] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv\_il_relu_conv.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FixedAddressValueType.cmd_6116] +RelativePath=baseservices\compilerservices\FixedAddressValueType\FixedAddressValueType\FixedAddressValueType.cmd +WorkingDir=baseservices\compilerservices\FixedAddressValueType\FixedAddressValueType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchincatch_ro.cmd_6117] +RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_ro\switchincatch_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39946.cmd_6118] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946\b39946.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit2_il_d.cmd_6119] +RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_d\prefldinit2_il_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionAdd.cmd_6120] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd\ICollectionAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[genrecur.cmd_6121] +RelativePath=Loader\classloader\generics\Instantiation\Recursion\genrecur\genrecur.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Recursion\genrecur +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumps2.cmd_6122] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps2\_il_dbgjumps2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfieldparam_r.cmd_6123] +RelativePath=JIT\Directed\StructABI\structfieldparam_r\structfieldparam_r.cmd +WorkingDir=JIT\Directed\StructABI\structfieldparam_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated970.cmd_6124] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest970\Generated970\Generated970.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest970\Generated970 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44984.cmd_6125] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984\b44984.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[inlinedevirt.cmd_6126] +RelativePath=JIT\opt\Devirtualization\inlinedevirt\inlinedevirt.cmd +WorkingDir=JIT\opt\Devirtualization\inlinedevirt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollGenICollIsReadOnly.cmd_6127] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly\SystemCollGenICollIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumeratorReset.cmd_6128] +RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset\IEnumeratorReset.cmd +WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericICollectionRemove.cmd_6129] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove\GenericICollectionRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1006.cmd_6130] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1006\Generated1006\Generated1006.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1006\Generated1006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test14.cmd_6131] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test14\test14.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[460373.cmd_6132] +RelativePath=GC\Regressions\v2.0-beta2\460373\460373\460373.cmd +WorkingDir=GC\Regressions\v2.0-beta2\460373\460373 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[waitanyex3.cmd_6133] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex3\waitanyex3.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddArray.cmd_6134] +RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray\AddArray.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch2b.cmd_6135] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2b\ArrayBinarySearch2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_1.cmd_6136] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_1\staticFieldExpr1_1.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b118260.cmd_6137] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260\b118260.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value020.cmd_6138] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020\box-unbox-value020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1328.cmd_6139] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1328\Generated1328\Generated1328.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1328\Generated1328 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[349379.cmd_6140] +RelativePath=baseservices\exceptions\regressions\whidbeybeta2\349379\349379\349379.cmd +WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\349379\349379 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_6141] +RelativePath=JIT\Generics\Instantiation\Classes\class01\class01.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-11-1.cmd_6142] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-11-1\L-1-11-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-11-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_Ref.cmd_6143] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref\OpCodesStind_Ref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConditionalAttributeCtor.cmd_6144] +RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor\ConditionalAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test9.cmd_6145] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test9\test9.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CoreFX_15913.cmd_6146] +RelativePath=JIT\Regression\JitBlue\CoreFX_15913\CoreFX_15913\CoreFX_15913.cmd +WorkingDir=JIT\Regression\JitBlue\CoreFX_15913\CoreFX_15913 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated56.cmd_6147] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest56\Generated56\Generated56.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest56\Generated56 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableGetValueOrDefault2.cmd_6148] +RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2\NullableGetValueOrDefault2.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumps3.cmd_6149] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumps3\_il_reljumps3.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_void.cmd_6150] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_void\_il_dbgtest_void.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_void +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated585.cmd_6151] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest585\Generated585\Generated585.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest585\Generated585 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_u1.cmd_6152] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1\ldc_mul_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_virt.cmd_6153] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_virt\_il_reldeep_virt.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_virt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-10-1.cmd_6154] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-10-1\L-1-10-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-10-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Midpoint.cmd_6155] +RelativePath=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint\Midpoint.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_6156] +RelativePath=Loader\classloader\TSAmbiguities\Variance\Covariant_InherittedCollision\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\Variance\Covariant_InherittedCollision\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowincatchnestedinfinally_d.cmd_6157] +RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d\rethrowincatchnestedinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc.cmd_6158] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc\OpCodesLdloc.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1034.cmd_6159] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1034\Generated1034\Generated1034.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1034\Generated1034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated596.cmd_6160] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest596\Generated596\Generated596.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest596\Generated596 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dup_r.cmd_6161] +RelativePath=JIT\SIMD\Dup_r\Dup_r.cmd +WorkingDir=JIT\SIMD\Dup_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch.cmd_6162] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\switch\switch.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexitnestedintrycatch_d.cmd_6163] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d\simplenonlocalexitnestedintrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1024.cmd_6164] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1024\Generated1024\Generated1024.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1024\Generated1024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nativeuint_il_d.cmd_6165] +RelativePath=JIT\Directed\shift\nativeuint_il_d\nativeuint_il_d.cmd +WorkingDir=JIT\Directed\shift\nativeuint_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relstress1.cmd_6166] +RelativePath=JIT\Methodical\refany\_speed_relstress1\_speed_relstress1.cmd +WorkingDir=JIT\Methodical\refany\_speed_relstress1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_6167] +RelativePath=JIT\Directed\PREFIX\unaligned\1\Desktop\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\Desktop\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_176.cmd_6168] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_176\GCSimulator_176.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_176 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-0.cmd_6169] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-0\_speed_relunsafe-0.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0B_d.cmd_6170] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_d\hfa_nd0B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_6171] +RelativePath=Loader\classloader\TSAmbiguities\Variance\Covariant_CollapsedInterfaces\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\Variance\Covariant_CollapsedInterfaces\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetCast2.cmd_6172] +RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2\AutoResetCast2.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitinhandler.cmd_6173] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler\nonlocalexitinhandler.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleNegativeInfinity.cmd_6174] +RelativePath=CoreMangLib\cti\system\double\DoubleNegativeInfinity\DoubleNegativeInfinity.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleNegativeInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HugeArray.cmd_6175] +RelativePath=JIT\jit64\opt\cse\HugeArray\HugeArray.cmd +WorkingDir=JIT\jit64\opt\cse\HugeArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11762.cmd_6176] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762\b11762.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unboxnullable_do.cmd_6177] +RelativePath=JIT\Directed\nullabletypes\unboxnullable_do\unboxnullable_do.cmd +WorkingDir=JIT\Directed\nullabletypes\unboxnullable_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToDateTime.cmd_6178] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime\Int64IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_cs_do.cmd_6179] +RelativePath=JIT\Directed\shift\uint8_cs_do\uint8_cs_do.cmd +WorkingDir=JIT\Directed\shift\uint8_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AboveStackLimit.cmd_6180] +RelativePath=Regressions\coreclr\0099\AboveStackLimit\AboveStackLimit.cmd +WorkingDir=Regressions\coreclr\0099\AboveStackLimit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[neg_i8.cmd_6181] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i8\neg_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed1_cs_do.cmd_6182] +RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_do\mixed1_cs_do.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekTuesDay.cmd_6183] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay\DayOfWeekTuesDay.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Co6010DelegateEqualsTwo.cmd_6184] +RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo\Co6010DelegateEqualsTwo.cmd +WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveRethrow.cmd_6185] +RelativePath=baseservices\exceptions\unittests\RecursiveRethrow\RecursiveRethrow.cmd +WorkingDir=baseservices\exceptions\unittests\RecursiveRethrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringPadRight2.cmd_6186] +RelativePath=CoreMangLib\cti\system\string\StringPadRight2\StringPadRight2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadRight2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[calli2_il_r.cmd_6187] +RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_r\calli2_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeSize128.cmd_6188] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128\PackingSizeSize128.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method003.cmd_6189] +RelativePath=Loader\classloader\generics\GenericMethods\method003\method003.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated996.cmd_6190] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest996\Generated996\Generated996.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest996\Generated996 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null008.cmd_6191] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008\box-unbox-null008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_il_r.cmd_6192] +RelativePath=JIT\Generics\ConstrainedCall\vt1_il_r\vt1_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_69.cmd_6193] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_69\GCSimulator_69.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_69 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgii4.cmd_6194] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii4\_il_dbgii4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch1.cmd_6195] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1\ArrayBinarySearch1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case5.cmd_6196] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5\case5.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_val_1_r.cmd_6197] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_r\expl_gc_val_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase6_Nested_I_Nested_J.cmd_6198] +RelativePath=Loader\classloader\InterfaceFolding\TestCase6_Nested_I_Nested_J\TestCase6_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase6_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchnestedtype_r.cmd_6199] +RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_r\trycatchnestedtype_r.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExceptionCtor3.cmd_6200] +RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor3\ExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1495.cmd_6201] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1495\Generated1495\Generated1495.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1495\Generated1495 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49142.cmd_6202] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142\b49142.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsLower2.cmd_6203] +RelativePath=CoreMangLib\cti\system\char\CharIsLower2\CharIsLower2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLower2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch06.cmd_6204] +RelativePath=baseservices\exceptions\generics\try-catch06\try-catch06.cmd +WorkingDir=baseservices\exceptions\generics\try-catch06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeVersion.cmd_6205] +RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion\AttributeVersion.cmd +WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XModuletest1-xmod.cmd_6206] +RelativePath=JIT\Methodical\stringintern\_XModuletest1-xmod\_XModuletest1-xmod.cmd +WorkingDir=JIT\Methodical\stringintern\_XModuletest1-xmod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter1_d.cmd_6207] +RelativePath=JIT\Directed\leave\filter1_d\filter1_d.cmd +WorkingDir=JIT\Directed\leave\filter1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_i2.cmd_6208] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i2\_il_relrefloc_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress1_d.cmd_6209] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_d\CgStress1_d.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfaulttrycatch_d.cmd_6210] +RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_d\tryfaulttrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparisonEndInvoke.cmd_6211] +RelativePath=CoreMangLib\cti\system\comparison\ComparisonEndInvoke\ComparisonEndInvoke.cmd +WorkingDir=CoreMangLib\cti\system\comparison\ComparisonEndInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_324.cmd_6212] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_324\GCSimulator_324.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_324 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallywith2reachableendfinally_d.cmd_6213] +RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d\tryfinallywith2reachableendfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SqMtx.cmd_6214] +RelativePath=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx\SqMtx.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8_cs_do.cmd_6215] +RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_do\r8_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28595.cmd_6216] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595\b28595.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test0792.cmd_6217] +RelativePath=Regressions\coreclr\0792\Test0792\Test0792.cmd +WorkingDir=Regressions\coreclr\0792\Test0792 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated695.cmd_6218] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest695\Generated695\Generated695.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest695\Generated695 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated304.cmd_6219] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest304\Generated304\Generated304.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest304\Generated304 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b170362_il.cmd_6220] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362_il\b170362_il.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pressureoverflow.cmd_6221] +RelativePath=GC\LargeMemory\Regressions\pressureoverflow\pressureoverflow.cmd +WorkingDir=GC\LargeMemory\Regressions\pressureoverflow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cprop002.cmd_6222] +RelativePath=JIT\jit64\opt\cprop\cprop002\cprop002.cmd +WorkingDir=JIT\jit64\opt\cprop\cprop002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated30.cmd_6223] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest30\Generated30\Generated30.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest30\Generated30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_ldvirtftn.cmd_6224] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn\c_ldvirtftn.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated412.cmd_6225] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest412\Generated412\Generated412.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest412\Generated412 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxvaluetype_r.cmd_6226] +RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r\boxunboxvaluetype_r.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdobj.cmd_6227] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj\OpCodesLdobj.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated819.cmd_6228] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest819\Generated819\Generated819.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest819\Generated819 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleParse1.cmd_6229] +RelativePath=CoreMangLib\cti\system\single\SingleParse1\SingleParse1.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleParse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null039.cmd_6230] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039\box-unbox-null039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToChar.cmd_6231] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToChar\ByteIConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_i4.cmd_6232] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4\ldc_mul_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14326.cmd_6233] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326\b14326.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call_static01.cmd_6234] +RelativePath=JIT\Generics\Constraints\call_static01\call_static01.cmd +WorkingDir=JIT\Generics\Constraints\call_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblDiv.cmd_6235] +RelativePath=JIT\CodeGenBringUpTests\DblDiv\DblDiv.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblDiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated138.cmd_6236] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest138\Generated138\Generated138.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest138\Generated138 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface011.cmd_6237] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011\castclass-interface011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1042.cmd_6238] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1042\Generated1042\Generated1042.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1042\Generated1042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72160.cmd_6239] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160\b72160.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[double_cs_d.cmd_6240] +RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_d\double_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUInt_2.cmd_6241] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt_2\ThreadStartUInt_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_i8.cmd_6242] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8\ldind_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unboxnullable_d.cmd_6243] +RelativePath=JIT\Directed\nullabletypes\unboxnullable_d\unboxnullable_d.cmd +WorkingDir=JIT\Directed\nullabletypes\unboxnullable_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionRemove.cmd_6244] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove\ICollectionRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reliu1.cmd_6245] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu1\_il_reliu1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesOffline.cmd_6246] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline\FileAttributesOffline.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToBoolean.cmd_6247] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToBoolean\CharIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_ref.cmd_6248] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref\ldarga_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt167.cmd_6249] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt167\ConvertToUInt167.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt167 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListClear.cmd_6250] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListClear\ListClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomNextBytes.cmd_6251] +RelativePath=CoreMangLib\cti\system\random\RandomNextBytes\RandomNextBytes.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomNextBytes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgconv_i8_u.cmd_6252] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u\_il_dbgconv_i8_u.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread04.cmd_6253] +RelativePath=baseservices\threading\generics\TimerCallback\thread04\thread04.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_ro.cmd_6254] +RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_ro\stringarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06859.cmd_6255] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859\b06859.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Sums_r.cmd_6256] +RelativePath=JIT\SIMD\Sums_r\Sums_r.cmd +WorkingDir=JIT\SIMD\Sums_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructInstMethod.cmd_6257] +RelativePath=JIT\CodeGenBringUpTests\StructInstMethod\StructInstMethod.cmd +WorkingDir=JIT\CodeGenBringUpTests\StructInstMethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAC_r.cmd_6258] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r\CGRecurseAAC_r.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test640474.cmd_6259] +RelativePath=baseservices\exceptions\regressions\v4.0\640474\test640474\test640474.cmd +WorkingDir=baseservices\exceptions\regressions\v4.0\640474\test640474 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetObjectsForNativeVariants.cmd_6260] +RelativePath=Interop\MarshalAPI\GetObjectsForNativeVariants\GetObjectsForNativeVariants\GetObjectsForNativeVariants.cmd +WorkingDir=Interop\MarshalAPI\GetObjectsForNativeVariants\GetObjectsForNativeVariants +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49322.cmd_6261] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322\b49322.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex4a.cmd_6262] +RelativePath=baseservices\threading\waithandle\waitall\waitallex4a\waitallex4a.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex4a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionRemove.cmd_6263] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove\DictionaryICollectionRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsuperlong.cmd_6264] +RelativePath=JIT\Methodical\int64\superlong\_dbgsuperlong\_dbgsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_dbgsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_290.cmd_6265] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_290\GCSimulator_290.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_290 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread25.cmd_6266] +RelativePath=baseservices\threading\generics\WaitCallback\thread25\thread25.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Variance1.cmd_6267] +RelativePath=Loader\classloader\regressions\dev10_568786\4_Misc\Variance1\Variance1.cmd +WorkingDir=Loader\classloader\regressions\dev10_568786\4_Misc\Variance1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit7.cmd_6268] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit7\_relexplicit7.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg_S.cmd_6269] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S\OpCodesLdarg_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsizeof64.cmd_6270] +RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof64\_relsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorUnused_r.cmd_6271] +RelativePath=JIT\SIMD\VectorUnused_r\VectorUnused_r.cmd +WorkingDir=JIT\SIMD\VectorUnused_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b139895.cmd_6272] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895\b139895.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMethodExceptionCtor3.cmd_6273] +RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3\MissingMethodExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37598.cmd_6274] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598\b37598.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated647.cmd_6275] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest647\Generated647\Generated647.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest647\Generated647 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated521.cmd_6276] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest521\Generated521\Generated521.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest521\Generated521 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatOvfToInt2_d.cmd_6277] +RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_d\FloatOvfToInt2_d.cmd +WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivSignedUnsignedTest_r.cmd_6278] +RelativePath=JIT\SIMD\DivSignedUnsignedTest_r\DivSignedUnsignedTest_r.cmd +WorkingDir=JIT\SIMD\DivSignedUnsignedTest_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated581.cmd_6279] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest581\Generated581\Generated581.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest581\Generated581 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_ref.cmd_6280] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref\ldarg_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToUInt32.cmd_6281] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32\UInt32IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress3_r.cmd_6282] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_r\CgStress3_r.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_6283] +RelativePath=JIT\Directed\PREFIX\unaligned\4\Desktop\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\Desktop\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConstrained.cmd_6284] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained\OpCodesConstrained.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b359564.cmd_6285] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564\b359564.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetHashCode.cmd_6286] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode\UTF8EncodingGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox024.cmd_6287] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024\box-unbox024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConcatTest.cmd_6288] +RelativePath=JIT\Directed\Misc\Concat\ConcatTest\ConcatTest.cmd +WorkingDir=JIT\Directed\Misc\Concat\ConcatTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf4b.cmd_6289] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4b\ArrayIndexOf4b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_8.cmd_6290] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_8\ConvertToInt64_8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8rem_cs_do.cmd_6291] +RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_do\r8rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10790.cmd_6292] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790\b10790.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null009.cmd_6293] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009\box-unbox-null009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b65407.cmd_6294] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407\b65407.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated181.cmd_6295] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest181\Generated181\Generated181.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest181\Generated181 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_107.cmd_6296] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_107\GCSimulator_107.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_107 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interlockedaddintwithsubtract.cmd_6297] +RelativePath=baseservices\threading\interlocked\add\interlockedaddintwithsubtract\interlockedaddintwithsubtract.cmd +WorkingDir=baseservices\threading\interlocked\add\interlockedaddintwithsubtract +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-0.cmd_6298] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-0\_relunsafe-0.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface017.cmd_6299] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017\box-unbox-interface017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadBox1.cmd_6300] +RelativePath=JIT\Regression\Dev11\External\dev11_131317\BadBox1\BadBox1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_131317\BadBox1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b450688.cmd_6301] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688\b450688.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDescriptionAttributeDescription.cmd_6302] +RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription\AssemblyDescriptionAttributeDescription.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread12.cmd_6303] +RelativePath=baseservices\threading\generics\WaitCallback\thread12\thread12.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_un_r8.cmd_6304] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8\blt_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[13662-a.cmd_6305] +RelativePath=baseservices\threading\regressions\13662\13662-a\13662-a.cmd +WorkingDir=baseservices\threading\regressions\13662\13662-a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray1_cs_d.cmd_6306] +RelativePath=JIT\Methodical\doublearray\dblarray1_cs_d\dblarray1_cs_d.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1069.cmd_6307] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1069\Generated1069\Generated1069.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1069\Generated1069 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor.cmd_6308] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor\MemoryStreamCtor.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DefaultMemberAttributeMemberName.cmd_6309] +RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName\DefaultMemberAttributeMemberName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2C_r.cmd_6310] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_r\hfa_sd2C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_ro.cmd_6311] +RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_ro\callconv2_cs_ro.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToInt16.cmd_6312] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt16\DecimalToInt16.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_20929_do.cmd_6313] +RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_do\dev11_20929_do.cmd +WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeEmpty.cmd_6314] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeEmpty\TypeCodeEmpty.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeEmpty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlMeta.cmd_6315] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta\FlowControlMeta.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44297.cmd_6316] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297\b44297.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BinarySearch3.cmd_6317] +RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch3\BinarySearch3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsGenericParameter.cmd_6318] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter\AttributeTargetsGenericParameter.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1319.cmd_6319] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1319\Generated1319\Generated1319.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1319\Generated1319 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPDist.cmd_6320] +RelativePath=JIT\CodeGenBringUpTests\FPDist\FPDist.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPDist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102763.cmd_6321] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763\b102763.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_66.cmd_6322] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_66\GCSimulator_66.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_66 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionToString1.cmd_6323] +RelativePath=CoreMangLib\cti\system\version\VersionToString1\VersionToString1.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem5.cmd_6324] +RelativePath=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5\StaticsProblem5.cmd +WorkingDir=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics008.cmd_6325] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008\castclass-generics008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalSizeOf2_PSC.cmd_6326] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC\MarshalSizeOf2_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70354.cmd_6327] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354\b70354.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_m1.cmd_6328] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_m1\_il_relint32_m1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_m1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated70.cmd_6329] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest70\Generated70\Generated70.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest70\Generated70 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesMul_Ovf.cmd_6330] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf\OpCodesMul_Ovf.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToInt64.cmd_6331] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64\BooleanIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_funcptr_val_d.cmd_6332] +RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d\expl_funcptr_val_d.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relptr.cmd_6333] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr\_il_relptr.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetEncoder.cmd_6334] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder\EncodingGetEncoder.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit13.cmd_6335] +RelativePath=baseservices\threading\generics\Monitor\EnterExit13\EnterExit13.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread10.cmd_6336] +RelativePath=baseservices\threading\generics\threadstart\GThread10\GThread10.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_struct01.cmd_6337] +RelativePath=JIT\Generics\Parameters\static_equalnull_struct01\static_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Parameters\static_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting4.cmd_6338] +RelativePath=Loader\classloader\nesting\coreclr\nesting4\nesting4.cmd +WorkingDir=Loader\classloader\nesting\coreclr\nesting4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldsfld_mul.cmd_6339] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mul\_dbgldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase1_Nested_J.cmd_6340] +RelativePath=Loader\classloader\InterfaceFolding\TestCase1_Nested_J\TestCase1_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase1_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalEquals2.cmd_6341] +RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals2\DecimalEquals2.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_r.cmd_6342] +RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r\classarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghugedim.cmd_6343] +RelativePath=JIT\Methodical\int64\arrays\_il_dbghugedim\_il_dbghugedim.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_dbghugedim +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[caninline_d.cmd_6344] +RelativePath=JIT\jit64\opt\inl\caninline_d\caninline_d.cmd +WorkingDir=JIT\jit64\opt\inl\caninline_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26748.cmd_6345] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748\b26748.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_u8.cmd_6346] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8\ldc_add_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_8.cmd_6347] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_8\ConvertToInt16_8.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_r8.cmd_6348] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8\cgt_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat6.cmd_6349] +RelativePath=CoreMangLib\cti\system\string\StringConcat6\StringConcat6.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated914.cmd_6350] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest914\Generated914\Generated914.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest914\Generated914 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RunBenchmarks.cmd_6351] +RelativePath=JIT\Performance\RunBenchmarks\RunBenchmarks\RunBenchmarks.cmd +WorkingDir=JIT\Performance\RunBenchmarks\RunBenchmarks +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_popr4.cmd_6352] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4\StackBehaviourPopref_popi_popr4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryKeys4.cmd_6353] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4\DictionaryIDictionaryKeys4.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b81938.cmd_6354] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938\b81938.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgconvovf_i8_u.cmd_6355] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u\_il_dbgconvovf_i8_u.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relenum_cs.cmd_6356] +RelativePath=JIT\Methodical\Boxing\misc\_relenum_cs\_relenum_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_relenum_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-0.cmd_6357] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-0\_dbgunsafe-0.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_183.cmd_6358] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_183\GCSimulator_183.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_183 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_class01.cmd_6359] +RelativePath=JIT\Generics\Locals\instance_assignment_class01\instance_assignment_class01.cmd +WorkingDir=JIT\Generics\Locals\instance_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListRemoveRange.cmd_6360] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange\ListRemoveRange.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollectionsICollectionCopyTo.cmd_6361] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecoderReset.cmd_6362] +RelativePath=CoreMangLib\cti\system\text\decoder\DecoderReset\DecoderReset.cmd +WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bestfit_1.cmd_6363] +RelativePath=GC\Features\HeapExpansion\bestfit_1\bestfit_1.cmd +WorkingDir=GC\Features\HeapExpansion\bestfit_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_byte_1_d.cmd_6364] +RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_d\expl_byte_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_u1.cmd_6365] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1\ldind_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated789.cmd_6366] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest789\Generated789\Generated789.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest789\Generated789 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics039.cmd_6367] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039\castclass-generics039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartULong_2.cmd_6368] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_2\ThreadStartULong_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IndexOutOfRangeExceptionctor1.cmd_6369] +RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1\IndexOutOfRangeExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i71.cmd_6370] +RelativePath=JIT\jit64\mcc\interop\mcc_i71\mcc_i71.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i71 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_il_dbgu_vfld.cmd_6371] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld\_il_dbgu_vfld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_91.cmd_6372] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_91\GCSimulator_91.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_91 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested.cmd_6373] +RelativePath=JIT\Methodical\VT\etc\nested\nested.cmd +WorkingDir=JIT\Methodical\VT\etc\nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct2_2.cmd_6374] +RelativePath=JIT\jit64\gc\misc\struct2_2\struct2_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct2_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListIsReadOnly.cmd_6375] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly\ListIListIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_un_r8.cmd_6376] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8\ble_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPMath.cmd_6377] +RelativePath=JIT\CodeGenBringUpTests\FPMath\FPMath.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPMath +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread06.cmd_6378] +RelativePath=baseservices\threading\generics\TimerCallback\thread06\thread06.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw307137.cmd_6379] +RelativePath=Loader\regressions\classloader\vsw307137\vsw307137.cmd +WorkingDir=Loader\regressions\classloader\vsw307137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51575.cmd_6380] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575\b51575.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated790.cmd_6381] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest790\Generated790\Generated790.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest790\Generated790 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_obj_1_d.cmd_6382] +RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_d\expl_obj_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1180.cmd_6383] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1180\Generated1180\Generated1180.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1180\Generated1180 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CnsLng1.cmd_6384] +RelativePath=JIT\CodeGenBringUpTests\CnsLng1\CnsLng1.cmd +WorkingDir=JIT\CodeGenBringUpTests\CnsLng1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread22.cmd_6385] +RelativePath=baseservices\threading\generics\threadstart\GThread22\GThread22.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[b50145c.cmd_6386] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c\b50145c.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread07.cmd_6387] +RelativePath=baseservices\threading\generics\threadstart\GThread07\GThread07.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_I8.cmd_6388] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8\_il_dbgldobj_I8.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnitTest.cmd_6389] +RelativePath=Loader\classloader\TypeForwarding\UnitTest\UnitTest\UnitTest.cmd +WorkingDir=Loader\classloader\TypeForwarding\UnitTest\UnitTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw609874.cmd_6390] +RelativePath=Loader\classloader\generics\Constraints\Regressions\vsw609874\vsw609874\vsw609874.cmd +WorkingDir=Loader\classloader\generics\Constraints\Regressions\vsw609874\vsw609874 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchfiltercatch_d.cmd_6391] +RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d\catchfiltercatch_d.cmd +WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1140.cmd_6392] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1140\Generated1140\Generated1140.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1140\Generated1140 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1E_d.cmd_6393] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_d\hfa_nf1E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1462.cmd_6394] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1462\Generated1462\Generated1462.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1462\Generated1462 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Xor_Op_cs_r.cmd_6395] +RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_r\Bool_Xor_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BenchMk2.cmd_6396] +RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2\BenchMk2.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[and_u8.cmd_6397] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u8\and_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgctor_recurse.cmd_6398] +RelativePath=JIT\Methodical\VT\etc\_speed_dbgctor_recurse\_speed_dbgctor_recurse.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbgctor_recurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidOperationExceptionctor1.cmd_6399] +RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1\InvalidOperationExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b29456.cmd_6400] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456\b29456.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinclassconstructor_d.cmd_6401] +RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_d\throwinclassconstructor_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27824.cmd_6402] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824\b27824.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex1a.cmd_6403] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex1a\waitoneex1a.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex1a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13647.cmd_6404] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647\b13647.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated992.cmd_6405] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest992\Generated992\Generated992.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest992\Generated992 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringGetHashCode.cmd_6406] +RelativePath=CoreMangLib\cti\system\string\StringGetHashCode\StringGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\string\StringGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox038.cmd_6407] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038\box-unbox038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparerGetType.cmd_6408] +RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerGetType\StringComparerGetType.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerGetType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47886.cmd_6409] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886\b47886.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated964.cmd_6410] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest964\Generated964\Generated964.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest964\Generated964 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexit_ro.cmd_6411] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro\simplenonlocalexit_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtest1.cmd_6412] +RelativePath=JIT\Methodical\Invoke\callvirt\_dbgtest1\_dbgtest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_dbgtest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSingle17.cmd_6413] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle17\ConvertToSingle17.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b58690.cmd_6414] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690\b58690.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorSub_ro.cmd_6415] +RelativePath=JIT\SIMD\VectorSub_ro\VectorSub_ro.cmd +WorkingDir=JIT\SIMD\VectorSub_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryexcept_d.cmd_6416] +RelativePath=JIT\Methodical\eh\basics\tryexcept_d\tryexcept_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread20.cmd_6417] +RelativePath=baseservices\threading\generics\TimerCallback\thread20\thread20.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblArea.cmd_6418] +RelativePath=JIT\CodeGenBringUpTests\DblArea\DblArea.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblArea +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_361.cmd_6419] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_361\GCSimulator_361.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_361 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated831.cmd_6420] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest831\Generated831\Generated831.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest831\Generated831 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch3_d.cmd_6421] +RelativePath=JIT\Directed\leave\catch3_d\catch3_d.cmd +WorkingDir=JIT\Directed\leave\catch3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shr_u4.cmd_6422] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u4\shr_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_i4.cmd_6423] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4\ldarg_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidOperationExceptionctor3.cmd_6424] +RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3\InvalidOperationExceptionctor3.cmd +WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesInitblk.cmd_6425] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk\OpCodesInitblk.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsModule.cmd_6426] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule\AttributeTargetsModule.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_do.cmd_6427] +RelativePath=JIT\Directed\shift\uint32_do\uint32_do.cmd +WorkingDir=JIT\Directed\shift\uint32_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated147.cmd_6428] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest147\Generated147\Generated147.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest147\Generated147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_i4.cmd_6429] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i4\_opt_relrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[132977.cmd_6430] +RelativePath=JIT\jit64\regress\ddb\132977\132977\132977.cmd +WorkingDir=JIT\jit64\regress\ddb\132977\132977 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch8.cmd_6431] +RelativePath=JIT\Methodical\switch\switch8\switch8.cmd +WorkingDir=JIT\Methodical\switch\switch8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NotImplementedExceptionCtor2.cmd_6432] +RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2\NotImplementedExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unboxnullable_r.cmd_6433] +RelativePath=JIT\Directed\nullabletypes\unboxnullable_r\unboxnullable_r.cmd +WorkingDir=JIT\Directed\nullabletypes\unboxnullable_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mthdimpl.cmd_6434] +RelativePath=JIT\opt\Inline\tests\mthdimpl\mthdimpl.cmd +WorkingDir=JIT\opt\Inline\tests\mthdimpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_6435] +RelativePath=JIT\Directed\PREFIX\unaligned\2\add\add.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread14.cmd_6436] +RelativePath=baseservices\threading\generics\threadstart\GThread14\GThread14.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct_opcodes.cmd_6437] +RelativePath=JIT\opt\Inline\tests\struct_opcodes\struct_opcodes.cmd +WorkingDir=JIT\opt\Inline\tests\struct_opcodes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbggcarr.cmd_6438] +RelativePath=JIT\Methodical\Arrays\misc\_dbggcarr\_dbggcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_dbggcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40216.cmd_6439] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216\b40216.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64Opt_d.cmd_6440] +RelativePath=JIT\Directed\shift\uint64Opt_d\uint64Opt_d.cmd +WorkingDir=JIT\Directed\shift\uint64Opt_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPCall2.cmd_6441] +RelativePath=JIT\CodeGenBringUpTests\FPCall2\FPCall2.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPCall2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bleref_il_d.cmd_6442] +RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_d\bleref_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[_il_dbgjumper3.cmd_6443] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper3\_il_dbgjumper3.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple1.cmd_6444] +RelativePath=hosting\stress\testset1\simple1\simple1.cmd +WorkingDir=hosting\stress\testset1\simple1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_No_Op_cs_ro.cmd_6445] +RelativePath=JIT\Directed\cmov\Double_No_Op_cs_ro\Double_No_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71155.cmd_6446] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155\b71155.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteEquals1.cmd_6447] +RelativePath=CoreMangLib\cti\system\byte\ByteEquals1\ByteEquals1.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics012.cmd_6448] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012\castclass-generics012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated113.cmd_6449] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest113\Generated113\Generated113.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest113\Generated113 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetPreamble.cmd_6450] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble\UTF8EncodingGetPreamble.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise2_cs_do.cmd_6451] +RelativePath=JIT\Methodical\cctor\simple\precise2_cs_do\precise2_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_46.cmd_6452] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_46\GCSimulator_46.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_46 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[15266.cmd_6453] +RelativePath=baseservices\exceptions\regressions\v1.0\15266\15266.cmd +WorkingDir=baseservices\exceptions\regressions\v1.0\15266 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToBoolean.cmd_6454] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean\IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_6455] +RelativePath=Regressions\coreclr\0487\test\test.cmd +WorkingDir=Regressions\coreclr\0487\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_6456] +RelativePath=JIT\jit64\regress\vsw\524070\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\524070\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed.cmd_6457] +RelativePath=JIT\Directed\ExcepFilters\mixed\mixed\mixed.cmd +WorkingDir=JIT\Directed\ExcepFilters\mixed\mixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct_ExplicitOverrideVirtualNewslotFinal.cmd_6458] +RelativePath=Loader\classloader\generics\VSD\Struct_ExplicitOverrideVirtualNewslotFinal\Struct_ExplicitOverrideVirtualNewslotFinal.cmd +WorkingDir=Loader\classloader\generics\VSD\Struct_ExplicitOverrideVirtualNewslotFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8_cs_r.cmd_6459] +RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_r\i8_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relstress2.cmd_6460] +RelativePath=JIT\Methodical\refany\_il_relstress2\_il_relstress2.cmd +WorkingDir=JIT\Methodical\refany\_il_relstress2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedcatch_r.cmd_6461] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r\throwincascadedcatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk3_il_d.cmd_6462] +RelativePath=JIT\Methodical\xxblk\cpblk3_il_d\cpblk3_il_d.cmd +WorkingDir=JIT\Methodical\xxblk\cpblk3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated316.cmd_6463] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest316\Generated316\Generated316.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest316\Generated316 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IConvertibleToDecimal.cmd_6464] +RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal\IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIsNullOrEmpty.cmd_6465] +RelativePath=CoreMangLib\cti\system\string\StringIsNullOrEmpty\StringIsNullOrEmpty.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIsNullOrEmpty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_249.cmd_6466] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_249\GCSimulator_249.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_249 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathLog.cmd_6467] +RelativePath=CoreMangLib\cti\system\math\MathLog\MathLog.cmd +WorkingDir=CoreMangLib\cti\system\math\MathLog +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1461.cmd_6468] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1461\Generated1461\Generated1461.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1461\Generated1461 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ref2iu_il_r.cmd_6469] +RelativePath=JIT\Directed\refbyref\ref2iu_il_r\ref2iu_il_r.cmd +WorkingDir=JIT\Directed\refbyref\ref2iu_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_int_1_r.cmd_6470] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_r\seq_gc_int_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReflectOnField.cmd_6471] +RelativePath=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField\ReflectOnField.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor3.cmd_6472] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3\StringBuilderctor3.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_i.cmd_6473] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i\ldc_ret_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1191.cmd_6474] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1191\Generated1191\Generated1191.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1191\Generated1191 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45956.cmd_6475] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956\b45956.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBgt_Un.cmd_6476] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un\OpCodesBgt_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw593884.cmd_6477] +RelativePath=Loader\classloader\methodoverriding\regressions\593884\vsw593884\vsw593884.cmd +WorkingDir=Loader\classloader\methodoverriding\regressions\593884\vsw593884 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BaseClass.cmd_6478] +RelativePath=baseservices\exceptions\unittests\BaseClass\BaseClass.cmd +WorkingDir=baseservices\exceptions\unittests\BaseClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[divref.cmd_6479] +RelativePath=JIT\CodeGenBringUpTests\divref\divref.cmd +WorkingDir=JIT\CodeGenBringUpTests\divref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null018.cmd_6480] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018\castclass-null018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate024.cmd_6481] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate024\Delegate024.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LayoutKindSequential.cmd_6482] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential\LayoutKindSequential.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_r.cmd_6483] +RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r\jaggedarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CheckAddInt.cmd_6484] +RelativePath=baseservices\threading\interlocked\add\CheckAddInt\CheckAddInt.cmd +WorkingDir=baseservices\threading\interlocked\add\CheckAddInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[main.cmd_6485] +RelativePath=Loader\classloader\regressions\111021\main\main.cmd +WorkingDir=Loader\classloader\regressions\111021\main +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nstructresur.cmd_6486] +RelativePath=GC\Scenarios\FinalNStruct\nstructresur\nstructresur.cmd +WorkingDir=GC\Scenarios\FinalNStruct\nstructresur +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_call.cmd_6487] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_call\_il_dbgcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar7.cmd_6488] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar7\ConvertToChar7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated448.cmd_6489] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest448\Generated448\Generated448.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest448\Generated448 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated928.cmd_6490] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest928\Generated928\Generated928.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest928\Generated928 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeSize1.cmd_6491] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1\PackingSizeSize1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b610750.cmd_6492] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750\b610750.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderCapacity.cmd_6493] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity\StringBuilderCapacity.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61640.cmd_6494] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640\b61640.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPAdd.cmd_6495] +RelativePath=JIT\CodeGenBringUpTests\FPAdd\FPAdd.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFSinh.cmd_6496] +RelativePath=CoreMangLib\cti\system\mathf\MathFSinh\MathFSinh.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFSinh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadoponerror_r.cmd_6497] +RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_r\deadoponerror_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNdiv_cs_d.cmd_6498] +RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_d\r8NaNdiv_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_367099.cmd_6499] +RelativePath=JIT\Regression\JitBlue\DevDiv_367099\DevDiv_367099\DevDiv_367099.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_367099\DevDiv_367099 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8170.cmd_6500] +RelativePath=JIT\Regression\JitBlue\GitHub_8170\GitHub_8170\GitHub_8170.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8170\GitHub_8170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b108908.cmd_6501] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908\b108908.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex7.cmd_6502] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex7\waitanyex7.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_132.cmd_6503] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_132\GCSimulator_132.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_132 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[extended.cmd_6504] +RelativePath=JIT\Directed\RVAInit\extended\extended.cmd +WorkingDir=JIT\Directed\RVAInit\extended +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[b102860.cmd_6505] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860\b102860.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop6_cs_d.cmd_6506] +RelativePath=JIT\Directed\UnrollLoop\loop6_cs_d\loop6_cs_d.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsConstructor.cmd_6507] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor\AttributeTargetsConstructor.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_ro.cmd_6508] +RelativePath=JIT\Directed\shift\uint16_ro\uint16_ro.cmd +WorkingDir=JIT\Directed\shift\uint16_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass032.cmd_6509] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032\castclass032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated255.cmd_6510] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest255\Generated255\Generated255.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest255\Generated255 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_i2.cmd_6511] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i2\_dbgrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface009.cmd_6512] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009\castclass-interface009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsbox.cmd_6513] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbox\_speed_rellcsbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EqulityComparerDefault.cmd_6514] +RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault\EqulityComparerDefault.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface08.cmd_6515] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface08\NestedInterface08.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relfr8.cmd_6516] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr8\_il_relfr8.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3219.cmd_6517] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3219\ConvertToUInt3219.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleAlloc1_PSC.cmd_6518] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC\GCHandleAlloc1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_80.cmd_6519] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_80\GCSimulator_80.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_80 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetCtor2.cmd_6520] +RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2\AutoResetCtor2.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53977.cmd_6521] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977\b53977.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_U2.cmd_6522] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2\_il_dbgldobj_U2.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryexcept_d.cmd_6523] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d\throwinnestedtryexcept_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfinally_jmp.cmd_6524] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp\_il_relcatchfinally_jmp.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1102.cmd_6525] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1102\Generated1102\Generated1102.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1102\Generated1102 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidOperationExceptionctor2.cmd_6526] +RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2\InvalidOperationExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed_cs_d.cmd_6527] +RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d\mixed_cs_d.cmd +WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77951.cmd_6528] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951\b77951.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_flood.cmd_6529] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood\_il_relu_flood.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_cs_do.cmd_6530] +RelativePath=JIT\Methodical\NaN\intrinsic_cs_do\intrinsic_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgiface1.cmd_6531] +RelativePath=JIT\Methodical\casts\iface\_dbgiface1\_dbgiface1.cmd +WorkingDir=JIT\Methodical\casts\iface\_dbgiface1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToSingle.cmd_6532] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle\UInt16IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_funcptr_val_r.cmd_6533] +RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r\seq_funcptr_val_r.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_256.cmd_6534] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_256\GCSimulator_256.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_256 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SubRef.cmd_6535] +RelativePath=JIT\CodeGenBringUpTests\SubRef\SubRef.cmd +WorkingDir=JIT\CodeGenBringUpTests\SubRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-11-6-two.cmd_6536] +RelativePath=Loader\classloader\rmv\il\RMV-2-11-6-two\RMV-2-11-6-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-11-6-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1322.cmd_6537] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1322\Generated1322\Generated1322.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1322\Generated1322 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_r4.cmd_6538] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r4\ret_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated756.cmd_6539] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest756\Generated756\Generated756.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest756\Generated756 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToUInt32.cmd_6540] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt32\StringIConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am05waitanymutex.cmd_6541] +RelativePath=baseservices\threading\mutex\abandonedmutex\am05waitanymutex\am05waitanymutex.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am05waitanymutex +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test0939.cmd_6542] +RelativePath=Regressions\coreclr\0939\test0939\test0939.cmd +WorkingDir=Regressions\coreclr\0939\test0939 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToInt16.cmd_6543] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16\Int64IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71869.cmd_6544] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869\b71869.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPDivConst.cmd_6545] +RelativePath=JIT\CodeGenBringUpTests\FPDivConst\FPDivConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPDivConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract08.cmd_6546] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract08\abstract08.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstinterface_ro.cmd_6547] +RelativePath=JIT\Directed\nullabletypes\isinstinterface_ro\isinstinterface_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstinterface_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctorchk.cmd_6548] +RelativePath=baseservices\threading\threadpool\ctorchk\ctorchk\ctorchk.cmd +WorkingDir=baseservices\threading\threadpool\ctorchk\ctorchk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_catch_neg.cmd_6549] +RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg\_il_relcastclass_catch_neg.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2A_d.cmd_6550] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_d\hfa_nd2A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread14.cmd_6551] +RelativePath=baseservices\threading\generics\TimerCallback\thread14\thread14.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72161.cmd_6552] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161\b72161.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed1_cs_d.cmd_6553] +RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_d\mixed1_cs_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3a_cs_r.cmd_6554] +RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_r\25param3a_cs_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85314.cmd_6555] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314\b85314.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1429.cmd_6556] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1429\Generated1429\Generated1429.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1429\Generated1429 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53958.cmd_6557] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958\b53958.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b471305.cmd_6558] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305\b471305.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated252.cmd_6559] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest252\Generated252\Generated252.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest252\Generated252 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString31.cmd_6560] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString31\ConvertToString31.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString31 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[106011.cmd_6561] +RelativePath=baseservices\exceptions\regressions\whidbeym3.3\106011\106011\106011.cmd +WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\106011\106011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[readonlyPrefix.cmd_6562] +RelativePath=Regressions\coreclr\9414\readonlyPrefix\readonlyPrefix.cmd +WorkingDir=Regressions\coreclr\9414\readonlyPrefix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall_r.cmd_6563] +RelativePath=JIT\Methodical\nonvirtualcall\tailcall_r\tailcall_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_236.cmd_6564] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_236\GCSimulator_236.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_236 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotate_i4.cmd_6565] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4\_il_dbgrotate_i4.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetBytes1.cmd_6566] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1\EncodingGetBytes1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit4.cmd_6567] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit4\_dbgexplicit4.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated716.cmd_6568] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest716\Generated716\Generated716.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest716\Generated716 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1148.cmd_6569] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1148\Generated1148\Generated1148.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1148\Generated1148 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16345.cmd_6570] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345\b16345.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNsub_cs_ro.cmd_6571] +RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_ro\r4NaNsub_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop2_cs_ro.cmd_6572] +RelativePath=JIT\Directed\UnrollLoop\loop2_cs_ro\loop2_cs_ro.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldc_mul.cmd_6573] +RelativePath=JIT\Methodical\int64\unsigned\_relldc_mul\_relldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetArrayRank.cmd_6574] +RelativePath=CoreMangLib\cti\system\type\TypeGetArrayRank\TypeGetArrayRank.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetArrayRank +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesMul_Ovf_Un.cmd_6575] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un\OpCodesMul_Ovf_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71231.cmd_6576] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231\b71231.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relaccum.cmd_6577] +RelativePath=JIT\Methodical\VT\identity\_speed_relaccum\_speed_relaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_speed_relaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_301.cmd_6578] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_301\GCSimulator_301.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_301 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated342.cmd_6579] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest342\Generated342\Generated342.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest342\Generated342 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesHasSecurity.cmd_6580] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity\MethodAttributesHasSecurity.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToDouble.cmd_6581] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble\SByteIConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_i8.cmd_6582] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i8\clt_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1209.cmd_6583] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1209\Generated1209\Generated1209.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1209\Generated1209 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeinsidefinally_r.cmd_6584] +RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r\badcodeinsidefinally_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread02.cmd_6585] +RelativePath=baseservices\threading\generics\syncdelegate\GThread02\GThread02.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[labelbeginningfinally_d.cmd_6586] +RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_d\labelbeginningfinally_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayOfStructs.cmd_6587] +RelativePath=JIT\opt\Inline\tests\ArrayOfStructs\ArrayOfStructs.cmd +WorkingDir=JIT\opt\Inline\tests\ArrayOfStructs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1G_d.cmd_6588] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_d\hfa_sf1G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNmul_cs_r.cmd_6589] +RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_r\r8NaNmul_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_cs_ro.cmd_6590] +RelativePath=JIT\Directed\shift\uint32_cs_ro\uint32_cs_ro.cmd +WorkingDir=JIT\Directed\shift\uint32_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpobj.cmd_6591] +RelativePath=JIT\Directed\PREFIX\volatile\1\cpobj\cpobj.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\cpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToUInt64.cmd_6592] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt64\CharIConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1068.cmd_6593] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1068\Generated1068\Generated1068.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1068\Generated1068 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNmul_cs_r.cmd_6594] +RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_r\r4NaNmul_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingCtor1.cmd_6595] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingCtor1\EncodingCtor1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMethodExceptionMessage.cmd_6596] +RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage\MissingMethodExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex6.cmd_6597] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex6\waitanyex6.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteGetHashCode.cmd_6598] +RelativePath=CoreMangLib\cti\system\byte\ByteGetHashCode\ByteGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_6599] +RelativePath=JIT\jit64\regress\vsw\543229\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\543229\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45541.cmd_6600] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541\b45541.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated578.cmd_6601] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest578\Generated578\Generated578.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest578\Generated578 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIEnumerableGetEnumerator.cmd_6602] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator\ListIEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2C_r.cmd_6603] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_r\hfa_nd2C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingBigEndianUnicode.cmd_6604] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode\EncodingBigEndianUnicode.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated674.cmd_6605] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest674\Generated674\Generated674.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest674\Generated674 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToSByte.cmd_6606] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte\BooleanIConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase0_Nested_I.cmd_6607] +RelativePath=Loader\classloader\InterfaceFolding\TestCase0_Nested_I\TestCase0_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase0_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated401.cmd_6608] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest401\Generated401\Generated401.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest401\Generated401 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_do.cmd_6609] +RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_do\callconv1_cs_do.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated354.cmd_6610] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest354\Generated354\Generated354.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest354\Generated354 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToByte.cmd_6611] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte\DecimalToByte.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeUInt32.cmd_6612] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt32\TypeCodeUInt32.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayReverse2.cmd_6613] +RelativePath=CoreMangLib\cti\system\array\ArrayReverse2\ArrayReverse2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayReverse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLtDbl.cmd_6614] +RelativePath=JIT\CodeGenBringUpTests\JTrueLtDbl\JTrueLtDbl.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLtDbl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_106.cmd_6615] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_106\GCSimulator_106.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_106 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_byte_1_d.cmd_6616] +RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_d\seq_byte_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte7.cmd_6617] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte7\ConvertToSByte7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeMarshalType.cmd_6618] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType\MarshalAsAttributeMarshalType.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB1_PSP.cmd_6619] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB1_PSP\LocallocCnstB1_PSP.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB1_PSP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldsfld_mul.cmd_6620] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul\_dbgs_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated291.cmd_6621] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest291\Generated291\Generated291.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest291\Generated291 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1374.cmd_6622] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1374\Generated1374\Generated1374.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1374\Generated1374 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[valuetype.cmd_6623] +RelativePath=JIT\Methodical\nonvirtualcall\valuetype\valuetype.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\valuetype +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedcatch_d.cmd_6624] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d\throwincascadedcatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinexcept_r.cmd_6625] +RelativePath=JIT\Methodical\eh\basics\throwinexcept_r\throwinexcept_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1293.cmd_6626] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1293\Generated1293\Generated1293.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1293\Generated1293 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stind_i8.cmd_6627] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i8\stind_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow02_sub.cmd_6628] +RelativePath=JIT\jit64\rtchecks\overflow\overflow02_sub\overflow02_sub.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructFalse.cmd_6629] +RelativePath=baseservices\threading\events\AutoResetEvent\ConstructFalse\ConstructFalse.cmd +WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructFalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u4_u2.cmd_6630] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2\conv_ovf_u4_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated818.cmd_6631] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest818\Generated818\Generated818.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest818\Generated818 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLeave_S.cmd_6632] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S\OpCodesLeave_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46867.cmd_6633] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867\b46867.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[LngConv.cmd_6634] +RelativePath=JIT\CodeGenBringUpTests\LngConv\LngConv.cmd +WorkingDir=JIT\CodeGenBringUpTests\LngConv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84592.cmd_6635] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592\b84592.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JitTailcall2.cmd_6636] +RelativePath=JIT\Directed\IL\Tailcall\JitTailcall2\JitTailcall2.cmd +WorkingDir=JIT\Directed\IL\Tailcall\JitTailcall2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter005.cmd_6637] +RelativePath=baseservices\exceptions\generics\TypeParameter005\TypeParameter005.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test21.cmd_6638] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test21\test21.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizearray.cmd_6639] +RelativePath=GC\Features\Finalizer\finalizeother\finalizearray\finalizearray.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizearray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated635.cmd_6640] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest635\Generated635\Generated635.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest635\Generated635 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst2_d.cmd_6641] +RelativePath=JIT\Directed\nullabletypes\isinst2_d\isinst2_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh04_large.cmd_6642] +RelativePath=JIT\jit64\localloc\eh\eh04_large\eh04_large.cmd +WorkingDir=JIT\jit64\localloc\eh\eh04_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCompareTo1_cti.cmd_6643] +RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo1_cti\GuidCompareTo1_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo1_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b309539.cmd_6644] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539\b309539.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value008.cmd_6645] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008\box-unbox-value008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1030.cmd_6646] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1030\Generated1030\Generated1030.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1030\Generated1030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1C_r.cmd_6647] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_r\hfa_sd1C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct2_4.cmd_6648] +RelativePath=JIT\jit64\gc\misc\struct2_4\struct2_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct2_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31292.cmd_6649] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292\b31292.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_cs_d.cmd_6650] +RelativePath=JIT\Generics\ConstrainedCall\class2_cs_d\class2_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_instance.cmd_6651] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance\struct01_instance.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc.cmd_6652] +RelativePath=JIT\IL_Conformance\Old\Base\ldc\ldc.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgenum_cs.cmd_6653] +RelativePath=JIT\Methodical\Boxing\misc\_odbgenum_cs\_odbgenum_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_odbgenum_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_150.cmd_6654] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_150\GCSimulator_150.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_150 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convx_il_r.cmd_6655] +RelativePath=JIT\Methodical\FPtrunc\convx_il_r\convx_il_r.cmd +WorkingDir=JIT\Methodical\FPtrunc\convx_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_6656] +RelativePath=Loader\classloader\TSAmbiguities\CollapsedMethods\InterfaceDefinition\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\CollapsedMethods\InterfaceDefinition\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFPI.cmd_6657] +RelativePath=CoreMangLib\cti\system\mathf\MathFPI\MathFPI.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFPI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_enum.cmd_6658] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_enum\_il_dbgcompat_enum.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_enum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_37.cmd_6659] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_37\GCSimulator_37.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_37 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28598.cmd_6660] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598\b28598.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am01waitallneg.cmd_6661] +RelativePath=baseservices\threading\mutex\abandonedmutex\am01waitallneg\am01waitallneg.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am01waitallneg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RemoveMemoryPressureTest.cmd_6662] +RelativePath=GC\API\GC\RemoveMemoryPressureTest\RemoveMemoryPressureTest.cmd +WorkingDir=GC\API\GC\RemoveMemoryPressureTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated845.cmd_6663] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest845\Generated845\Generated845.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest845\Generated845 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_r4.cmd_6664] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4\ldloc_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[virtcall.cmd_6665] +RelativePath=JIT\Methodical\refany\virtcall\virtcall.cmd +WorkingDir=JIT\Methodical\refany\virtcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relthread-race.cmd_6666] +RelativePath=JIT\Methodical\tailcall\Desktop\_il_relthread-race\_il_relthread-race.cmd +WorkingDir=JIT\Methodical\tailcall\Desktop\_il_relthread-race +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch10.cmd_6667] +RelativePath=JIT\Methodical\switch\switch10\switch10.cmd +WorkingDir=JIT\Methodical\switch\switch10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingEquals.cmd_6668] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals\UTF8EncodingEquals.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated388.cmd_6669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest388\Generated388\Generated388.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest388\Generated388 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_s.cmd_6670] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s\_opt_dbgrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionCount.cmd_6671] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount\KeyCollectionCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_288222.cmd_6672] +RelativePath=JIT\Regression\JitBlue\DevDiv_288222\DevDiv_288222\DevDiv_288222.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_288222\DevDiv_288222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b404051.cmd_6673] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051\b404051.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FractalPerf.cmd_6674] +RelativePath=JIT\Performance\CodeQuality\FractalPerf\FractalPerf\FractalPerf.cmd +WorkingDir=JIT\Performance\CodeQuality\FractalPerf\FractalPerf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblArray.cmd_6675] +RelativePath=JIT\CodeGenBringUpTests\DblArray\DblArray.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated363.cmd_6676] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest363\Generated363\Generated363.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest363\Generated363 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated17.cmd_6677] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest17\Generated17\Generated17.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest17\Generated17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingFieldExceptionCtor1.cmd_6678] +RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1\MissingFieldExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_6238.cmd_6679] +RelativePath=JIT\Regression\JitBlue\GitHub_6238\GitHub_6238\GitHub_6238.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_6238\GitHub_6238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_377.cmd_6680] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_377\GCSimulator_377.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_377 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallywith2endfinally_r.cmd_6681] +RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r\tryfinallywith2endfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-3-1.cmd_6682] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-3-1\L-2-3-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-3-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated784.cmd_6683] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest784\Generated784\Generated784.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest784\Generated784 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_class01.cmd_6684] +RelativePath=JIT\Generics\Fields\instance_equalnull_class01\instance_equalnull_class01.cmd +WorkingDir=JIT\Generics\Fields\instance_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString13.cmd_6685] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString13\ConvertToString13.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex7.cmd_6686] +RelativePath=baseservices\threading\waithandle\waitall\waitallex7\waitallex7.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh01_dynamic.cmd_6687] +RelativePath=JIT\jit64\localloc\eh\eh01_dynamic\eh01_dynamic.cmd +WorkingDir=JIT\jit64\localloc\eh\eh01_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b42387.cmd_6688] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387\b42387.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesIsinst.cmd_6689] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst\OpCodesIsinst.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString21.cmd_6690] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString21\ConvertToString21.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12011.cmd_6691] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011\b12011.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlNext.cmd_6692] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext\FlowControlNext.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics003.cmd_6693] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003\castclass-generics003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EHCopyProp.cmd_6694] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp\EHCopyProp.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_No_Op_cs_d.cmd_6695] +RelativePath=JIT\Directed\cmov\Int_No_Op_cs_d\Int_No_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11689.cmd_6696] +RelativePath=JIT\Regression\JitBlue\GitHub_11689\GitHub_11689\GitHub_11689.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11689\GitHub_11689 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread09.cmd_6697] +RelativePath=baseservices\threading\generics\WaitCallback\thread09\thread09.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedExchange1.cmd_6698] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1\InterlockedExchange1.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Or_Op_cs_do.cmd_6699] +RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_do\Double_Or_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase4_Nested_I_Nested_J.cmd_6700] +RelativePath=Loader\classloader\InterfaceFolding\TestCase4_Nested_I_Nested_J\TestCase4_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase4_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion3.cmd_6701] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion3\NullCheckAssertion3.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvMt.cmd_6702] +RelativePath=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt\InvMt.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1300.cmd_6703] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1300\Generated1300\Generated1300.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1300\Generated1300 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3.cmd_6704] +RelativePath=Regressions\common\pow3\pow3.cmd +WorkingDir=Regressions\common\pow3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1298.cmd_6705] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1298\Generated1298\Generated1298.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1298\Generated1298 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jitTailcall1.cmd_6706] +RelativePath=JIT\Directed\IL\Tailcall\jitTailcall1\jitTailcall1.cmd +WorkingDir=JIT\Directed\IL\Tailcall\jitTailcall1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_406158.cmd_6707] +RelativePath=JIT\Regression\JitBlue\DevDiv_406158\DevDiv_406158\DevDiv_406158.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_406158\DevDiv_406158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPAvg6.cmd_6708] +RelativePath=JIT\CodeGenBringUpTests\FPAvg6\FPAvg6.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPAvg6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorCopyToArray_r.cmd_6709] +RelativePath=JIT\SIMD\VectorCopyToArray_r\VectorCopyToArray_r.cmd +WorkingDir=JIT\SIMD\VectorCopyToArray_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwisfirstinstruction.cmd_6710] +RelativePath=JIT\jit64\eh\basics\throwisfirstinstruction\throwisfirstinstruction.cmd +WorkingDir=JIT\jit64\eh\basics\throwisfirstinstruction +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b124409.cmd_6711] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409\b124409.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14716.cmd_6712] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716\b14716.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_7.cmd_6713] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_7\ConvertToInt16_7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_ldlen.cmd_6714] +RelativePath=JIT\Methodical\casts\array\_il_relisinst_ldlen\_il_relisinst_ldlen.cmd +WorkingDir=JIT\Methodical\casts\array\_il_relisinst_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IOExceptionctor1.cmd_6715] +RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1\IOExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-01_cs_r.cmd_6716] +RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_r\5w1d-01_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_11.cmd_6717] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_11\ConvertToInt16_11.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated478.cmd_6718] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest478\Generated478\Generated478.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest478\Generated478 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated700.cmd_6719] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest700\Generated700\Generated700.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest700\Generated700 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated892.cmd_6720] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest892\Generated892\Generated892.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest892\Generated892 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1130.cmd_6721] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1130\Generated1130\Generated1130.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1130\Generated1130 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesSealed.cmd_6722] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed\TypeAttributesSealed.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14777.cmd_6723] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777\b14777.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatInfinitiesToInt_do.cmd_6724] +RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_do\FloatInfinitiesToInt_do.cmd +WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated638.cmd_6725] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest638\Generated638\Generated638.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest638\Generated638 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interlock.cmd_6726] +RelativePath=Regressions\coreclr\0077\interlock\interlock.cmd +WorkingDir=Regressions\coreclr\0077\interlock +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02.cmd_6727] +RelativePath=JIT\Generics\Typeof\struct02\struct02.cmd +WorkingDir=JIT\Generics\Typeof\struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldelemnullarr1_il_d.cmd_6728] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d\ldelemnullarr1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[DictionaryICollectionIsReadOnly2.cmd_6729] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2\DictionaryICollectionIsReadOnly2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PulseNull.cmd_6730] +RelativePath=baseservices\threading\monitor\pulse\PulseNull\PulseNull.cmd +WorkingDir=baseservices\threading\monitor\pulse\PulseNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt168.cmd_6731] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt168\ConvertToUInt168.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt168 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1080.cmd_6732] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1080\Generated1080\Generated1080.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1080\Generated1080 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70964.cmd_6733] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964\b70964.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_350.cmd_6734] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_350\GCSimulator_350.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_350 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldstatic1_il_d.cmd_6735] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d\ldfldstatic1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated427.cmd_6736] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest427\Generated427\Generated427.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest427\Generated427 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString7.cmd_6737] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString7\ConvertToString7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_o.cmd_6738] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_o\_opt_relrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_I.cmd_6739] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I\OpCodesStelem_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated670.cmd_6740] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest670\Generated670\Generated670.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest670\Generated670 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToInt32.cmd_6741] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32\Int16IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Eq1.cmd_6742] +RelativePath=JIT\CodeGenBringUpTests\Eq1\Eq1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Eq1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91248.cmd_6743] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248\b91248.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[b14329.cmd_6744] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329\b14329.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally-struct02.cmd_6745] +RelativePath=baseservices\exceptions\generics\try-catch-finally-struct02\try-catch-finally-struct02.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i4_i1.cmd_6746] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1\conv_ovf_i4_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated42.cmd_6747] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest42\Generated42\Generated42.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest42\Generated42 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i33.cmd_6748] +RelativePath=JIT\jit64\mcc\interop\mcc_i33\mcc_i33.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i33 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[trycatchintryfinally_ro.cmd_6749] +RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro\trycatchintryfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop6_cs_do.cmd_6750] +RelativePath=JIT\Directed\UnrollLoop\loop6_cs_do\loop6_cs_do.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesExplicitLayout.cmd_6751] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout\TypeAttributesExplicitLayout.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b268908.cmd_6752] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908\b268908.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated830.cmd_6753] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest830\Generated830\Generated830.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest830\Generated830 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeEquals1.cmd_6754] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1\OpCodeEquals1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgiu1.cmd_6755] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu1\_il_dbgiu1.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads1_cs_r.cmd_6756] +RelativePath=JIT\Methodical\cctor\misc\threads1_cs_r\threads1_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeOfAssertion.cmd_6757] +RelativePath=JIT\opt\AssertionPropagation\TypeOfAssertion\TypeOfAssertion.cmd +WorkingDir=JIT\opt\AssertionPropagation\TypeOfAssertion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated473.cmd_6758] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest473\Generated473\Generated473.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest473\Generated473 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_414.cmd_6759] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_414\GCSimulator_414.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FuncPtrAsDelegateParam.cmd_6760] +RelativePath=Interop\FuncPtrAsDelegateParam\FuncPtrAsDelegateParam\FuncPtrAsDelegateParam.cmd +WorkingDir=Interop\FuncPtrAsDelegateParam\FuncPtrAsDelegateParam +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract02.cmd_6761] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract02\abstract02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1019.cmd_6762] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1019\Generated1019\Generated1019.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1019\Generated1019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated669.cmd_6763] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest669\Generated669\Generated669.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest669\Generated669 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InlineGCStruct.cmd_6764] +RelativePath=JIT\Performance\CodeQuality\Inlining\InlineGCStruct\InlineGCStruct.cmd +WorkingDir=JIT\Performance\CodeQuality\Inlining\InlineGCStruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FFT.cmd_6765] +RelativePath=JIT\Performance\CodeQuality\BenchF\FFT\FFT\FFT.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\FFT\FFT +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax2.cmd_6766] +RelativePath=CoreMangLib\cti\system\math\MathMax2\MathMax2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetGeneration_box.cmd_6767] +RelativePath=GC\API\GC\GetGeneration_box\GetGeneration_box.cmd +WorkingDir=GC\API\GC\GetGeneration_box +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30128.cmd_6768] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128\b30128.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface009.cmd_6769] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009\box-unbox-interface009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated442.cmd_6770] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest442\Generated442\Generated442.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest442\Generated442 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_199.cmd_6771] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_199\GCSimulator_199.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_199 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleMinValue.cmd_6772] +RelativePath=CoreMangLib\cti\system\double\DoubleMinValue\DoubleMinValue.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathRound3.cmd_6773] +RelativePath=CoreMangLib\cti\system\math\MathRound3\MathRound3.cmd +WorkingDir=CoreMangLib\cti\system\math\MathRound3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_ro.cmd_6774] +RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro\jaggedarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1315.cmd_6775] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1315\Generated1315\Generated1315.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1315\Generated1315 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stind_ref.cmd_6776] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_ref\stind_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeConflict.cmd_6777] +RelativePath=JIT\Directed\forceinlining\AttributeConflict\AttributeConflict.cmd +WorkingDir=JIT\Directed\forceinlining\AttributeConflict +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_103.cmd_6778] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_103\GCSimulator_103.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_103 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_98.cmd_6779] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_98\GCSimulator_98.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_98 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82160.cmd_6780] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160\b82160.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal9.cmd_6781] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal9\ConvertToDecimal9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91074.cmd_6782] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074\b91074.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-4-1.cmd_6783] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-4-1\L-2-4-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-4-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated65.cmd_6784] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest65\Generated65\Generated65.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest65\Generated65 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b178119.cmd_6785] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119\b178119.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_ro.cmd_6786] +RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro\throw_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_qsort2.cmd_6787] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2\_il_reli_qsort2.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b106158.cmd_6788] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158\b106158.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeepAliveRecur.cmd_6789] +RelativePath=GC\API\GC\KeepAliveRecur\KeepAliveRecur.cmd +WorkingDir=GC\API\GC\KeepAliveRecur +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71135.cmd_6790] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135\b71135.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2C_r.cmd_6791] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_r\hfa_sf2C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_313.cmd_6792] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_313\GCSimulator_313.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b76717.cmd_6793] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717\b76717.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToString4.cmd_6794] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToString4\DecimalToString4.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanMaxValue.cmd_6795] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMaxValue\TimeSpanMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartLong_2.cmd_6796] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong_2\ThreadStartLong_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_catch.cmd_6797] +RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch\_il_dbgcastclass_catch.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10897.cmd_6798] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897\b10897.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48554a.cmd_6799] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a\b48554a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AndRef.cmd_6800] +RelativePath=JIT\CodeGenBringUpTests\AndRef\AndRef.cmd +WorkingDir=JIT\CodeGenBringUpTests\AndRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badldsfld_il_d.cmd_6801] +RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d\badldsfld_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimaldiv_cs_r.cmd_6802] +RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_r\decimaldiv_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidCastExceptionctor2.cmd_6803] +RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2\InvalidCastExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relinstance_il.cmd_6804] +RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_il\_relinstance_il.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Call_instance01_d.cmd_6805] +RelativePath=JIT\Generics\Constraints\Call_instance01_d\Call_instance01_d.cmd +WorkingDir=JIT\Generics\Constraints\Call_instance01_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37238.cmd_6806] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238\b37238.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldsub_cs_ro.cmd_6807] +RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro\lclfldsub_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrotarg_valref.cmd_6808] +RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref\_opt_relrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar12.cmd_6809] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar12\ConvertToChar12.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33135.cmd_6810] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135\b33135.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt327.cmd_6811] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt327\ConvertToUInt327.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt327 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgmuldiv.cmd_6812] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv\_speed_dbgmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineVar.cmd_6813] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar\OperandTypeInlineVar.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8_cs_r.cmd_6814] +RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_r\r8_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CastClass001.cmd_6815] +RelativePath=Loader\classloader\generics\Variance\IL\CastClass001\CastClass001.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\CastClass001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leaveinsameregion_d.cmd_6816] +RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_d\leaveinsameregion_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidNewGuid.cmd_6817] +RelativePath=CoreMangLib\cti\system\guid\GuidNewGuid\GuidNewGuid.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidNewGuid +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44724.cmd_6818] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724\b44724.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_285.cmd_6819] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_285\GCSimulator_285.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_285 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test_noalloca.cmd_6820] +RelativePath=JIT\jit64\gc\misc\test_noalloca\test_noalloca.cmd +WorkingDir=JIT\jit64\gc\misc\test_noalloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_29.cmd_6821] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_29\GCSimulator_29.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_278.cmd_6822] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_278\GCSimulator_278.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_278 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_STARG.cmd_6823] +RelativePath=JIT\opt\Inline\tests\Inline_STARG\Inline_STARG.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_STARG +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg6.cmd_6824] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg6\openmutexneg6.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_un_r8.cmd_6825] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8\bgt_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryItem.cmd_6826] +RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem\IDictionaryItem.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1.cmd_6827] +RelativePath=JIT\Directed\StructPromote\SP1\SP1.cmd +WorkingDir=JIT\Directed\StructPromote\SP1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated898.cmd_6828] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest898\Generated898\Generated898.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest898\Generated898 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSurrogatePair2.cmd_6829] +RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair2\CharIsSurrogatePair2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollectionEnumeratorIEnumeratorCurrent.cmd_6830] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor2.cmd_6831] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2\DictionaryCtor2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytrycatch_do.cmd_6832] +RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_do\tryfinallytrycatch_do.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated653.cmd_6833] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest653\Generated653\Generated653.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest653\Generated653 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_365.cmd_6834] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_365\GCSimulator_365.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_365 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_630250.cmd_6835] +RelativePath=Loader\classloader\regressions\dev10_630250\dev10_630250\dev10_630250.cmd +WorkingDir=Loader\classloader\regressions\dev10_630250\dev10_630250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4rem_cs_do.cmd_6836] +RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_do\u4rem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv2_cs_do.cmd_6837] +RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_do\callconv2_cs_do.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8a_cs_r.cmd_6838] +RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_r\convr8a_cs_r.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1332.cmd_6839] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1332\Generated1332\Generated1332.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1332\Generated1332 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCgt.cmd_6840] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt\OpCodesCgt.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange3.cmd_6841] +RelativePath=baseservices\threading\interlocked\exchange\exchange3\exchange3.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated136.cmd_6842] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest136\Generated136\Generated136.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest136\Generated136 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated804.cmd_6843] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest804\Generated804\Generated804.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest804\Generated804 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b175679.cmd_6844] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679\b175679.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated654.cmd_6845] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest654\Generated654\Generated654.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest654\Generated654 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Or_Op_cs_r.cmd_6846] +RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_r\Bool_Or_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_neg_range.cmd_6847] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_neg_range\_il_relint32_neg_range.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_neg_range +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin6.cmd_6848] +RelativePath=CoreMangLib\cti\system\math\MathMin6\MathMin6.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameGetPublicKeyToken.cmd_6849] +RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken\AssemblyNameGetPublicKeyToken.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null017.cmd_6850] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017\castclass-null017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIsPositiveInfinity.cmd_6851] +RelativePath=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity\DoubleIsPositiveInfinity.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1123.cmd_6852] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1123\Generated1123\Generated1123.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1123\Generated1123 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2.cmd_6853] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2\test2.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64TryParse.cmd_6854] +RelativePath=CoreMangLib\cti\system\uint64\UInt64TryParse\UInt64TryParse.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte1.cmd_6855] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte1\ConvertToSByte1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics026.cmd_6856] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026\castclass-generics026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance02.cmd_6857] +RelativePath=JIT\Generics\pinvoke\instance02\instance02.cmd +WorkingDir=JIT\Generics\pinvoke\instance02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate001.cmd_6858] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate001\Delegate001.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_276.cmd_6859] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_276\GCSimulator_276.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_276 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_6860] +RelativePath=JIT\Generics\Instantiation\Interfaces\struct01\struct01.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanFalseString.cmd_6861] +RelativePath=CoreMangLib\cti\system\boolean\BooleanFalseString\BooleanFalseString.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanFalseString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayMD2.cmd_6862] +RelativePath=JIT\CodeGenBringUpTests\ArrayMD2\ArrayMD2.cmd +WorkingDir=JIT\CodeGenBringUpTests\ArrayMD2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesFamORAssem.cmd_6863] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem\FieldAttributesFamORAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w5d_cs_ro.cmd_6864] +RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_ro\10w5d_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_353.cmd_6865] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_353\GCSimulator_353.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_353 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltry.cmd_6866] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltry\_il_reltry.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated454.cmd_6867] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest454\Generated454\Generated454.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest454\Generated454 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seqpts.cmd_6868] +RelativePath=JIT\Regression\Dev11\dev11_165544\seqpts\seqpts.cmd +WorkingDir=JIT\Regression\Dev11\dev11_165544\seqpts +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1113.cmd_6869] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1113\Generated1113\Generated1113.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1113\Generated1113 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated440.cmd_6870] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest440\Generated440\Generated440.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest440\Generated440 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringRemove2.cmd_6871] +RelativePath=CoreMangLib\cti\system\string\StringRemove2\StringRemove2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringRemove2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1477.cmd_6872] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1477\Generated1477\Generated1477.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1477\Generated1477 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class07.cmd_6873] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07\class07.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBle_Un.cmd_6874] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un\OpCodesBle_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1421.cmd_6875] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1421\Generated1421\Generated1421.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1421\Generated1421 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filterfiltercatchcatch_r.cmd_6876] +RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r\filterfiltercatchcatch_r.cmd +WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesHasFieldRVA.cmd_6877] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA\FieldAttributesHasFieldRVA.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3a_cs_d.cmd_6878] +RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_d\25param3a_cs_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_815940_do.cmd_6879] +RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do\DevDiv_815940_do.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_s.cmd_6880] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_s\_relrefarg_s.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FixedBufferAttributeLength.cmd_6881] +RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength\FixedBufferAttributeLength.cmd +WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated171.cmd_6882] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest171\Generated171\Generated171.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest171\Generated171 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_I4.cmd_6883] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4\OpCodesStind_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_r8_r4_inl.cmd_6884] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl\_il_dbgcompat_r8_r4_inl.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgunsafe-2.cmd_6885] +RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-2\_dbgunsafe-2.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i63.cmd_6886] +RelativePath=JIT\jit64\mcc\interop\mcc_i63\mcc_i63.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i63 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated582.cmd_6887] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest582\Generated582\Generated582.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest582\Generated582 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_And_Op_cs_d.cmd_6888] +RelativePath=JIT\Directed\cmov\Float_And_Op_cs_d\Float_And_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated946.cmd_6889] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest946\Generated946\Generated946.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest946\Generated946 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct_ExplicitOverrideVirtualNewslot.cmd_6890] +RelativePath=Loader\classloader\generics\VSD\Struct_ExplicitOverrideVirtualNewslot\Struct_ExplicitOverrideVirtualNewslot.cmd +WorkingDir=Loader\classloader\generics\VSD\Struct_ExplicitOverrideVirtualNewslot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b473131_fld.cmd_6891] +RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_fld\b473131_fld.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_fld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated569.cmd_6892] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest569\Generated569\Generated569.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest569\Generated569 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_342.cmd_6893] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_342\GCSimulator_342.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_342 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldsfld_mul.cmd_6894] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul\_speed_dbgldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress1_r.cmd_6895] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_r\CgStress1_r.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relbox.cmd_6896] +RelativePath=JIT\Methodical\int64\misc\_relbox\_relbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_relbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToByte.cmd_6897] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte\BooleanIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString28.cmd_6898] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString28\ConvertToString28.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[object-pin.cmd_6899] +RelativePath=JIT\Directed\pinning\object-pin\object-pin\object-pin.cmd +WorkingDir=JIT\Directed\pinning\object-pin\object-pin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4rem_cs_r.cmd_6900] +RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_r\u4rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox029.cmd_6901] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029\box-unbox029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i02.cmd_6902] +RelativePath=JIT\jit64\mcc\interop\mcc_i02\mcc_i02.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[TypeCodeUInt16.cmd_6903] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt16\TypeCodeUInt16.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value013.cmd_6904] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013\box-unbox-value013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1004.cmd_6905] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1004\Generated1004\Generated1004.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1004\Generated1004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNdiv_cs_d.cmd_6906] +RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_d\r4NaNdiv_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63552.cmd_6907] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552\b63552.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test11611.cmd_6908] +RelativePath=Regressions\coreclr\GitHub_11611\Test11611\Test11611.cmd +WorkingDir=Regressions\coreclr\GitHub_11611\Test11611 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expandheap.cmd_6909] +RelativePath=GC\Features\HeapExpansion\expandheap\expandheap.cmd +WorkingDir=GC\Features\HeapExpansion\expandheap +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExitExit.cmd_6910] +RelativePath=baseservices\threading\monitor\unownedlock\EnterExitExit\EnterExitExit.cmd +WorkingDir=baseservices\threading\monitor\unownedlock\EnterExitExit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CustomConstantAttributector.cmd_6911] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector\CustomConstantAttributector.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_2.cmd_6912] +RelativePath=JIT\jit64\gc\misc\structfp1_2\structfp1_2.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mutexctor2.cmd_6913] +RelativePath=baseservices\threading\mutex\misc\mutexctor2\mutexctor2.cmd +WorkingDir=baseservices\threading\mutex\misc\mutexctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32Parse2.cmd_6914] +RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse2\UInt32Parse2.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_Ref.cmd_6915] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref\OpCodesLdind_Ref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001.cmd_6916] +RelativePath=Loader\classloader\generics\GenericMethods\method001\method001.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleParse3.cmd_6917] +RelativePath=CoreMangLib\cti\system\double\DoubleParse3\DoubleParse3.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleParse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_obj.cmd_6918] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_obj\_il_dbgcompat_obj.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_obj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEquals2.cmd_6919] +RelativePath=CoreMangLib\cti\system\char\CharEquals2\CharEquals2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn.cmd_6920] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldftn\ldftn.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32Parse3.cmd_6921] +RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse3\UInt32Parse3.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_156.cmd_6922] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_156\GCSimulator_156.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_156 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBlt_Un_S.cmd_6923] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S\OpCodesBlt_Un_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathCosh.cmd_6924] +RelativePath=CoreMangLib\cti\system\math\MathCosh\MathCosh.cmd +WorkingDir=CoreMangLib\cti\system\math\MathCosh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1096.cmd_6925] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1096\Generated1096\Generated1096.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1096\Generated1096 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgthisnull.cmd_6926] +RelativePath=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull\_speed_dbgthisnull.cmd +WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U1.cmd_6927] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1\OpCodesConv_Ovf_U1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1266.cmd_6928] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1266\Generated1266\Generated1266.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1266\Generated1266 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_native.cmd_6929] +RelativePath=JIT\Methodical\refany\_il_relu_native\_il_relu_native.cmd +WorkingDir=JIT\Methodical\refany\_il_relu_native +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ToLower.cmd_6930] +RelativePath=Regressions\common\ToLower\ToLower.cmd +WorkingDir=Regressions\common\ToLower +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit7.cmd_6931] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit7\_opt_dbgexplicit7.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated980.cmd_6932] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest980\Generated980\Generated980.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest980\Generated980 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesRTSpecialName.cmd_6933] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName\FieldAttributesRTSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_struct01.cmd_6934] +RelativePath=JIT\Generics\Parameters\instance_passing_struct01\instance_passing_struct01.cmd +WorkingDir=JIT\Generics\Parameters\instance_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToUInt64.cmd_6935] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64\UInt64IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug595776.cmd_6936] +RelativePath=JIT\opt\Inline\regression\bug595776\bug595776\bug595776.cmd +WorkingDir=JIT\opt\Inline\regression\bug595776\bug595776 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_36.cmd_6937] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_36\GCSimulator_36.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_36 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics045.cmd_6938] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045\castclass-generics045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thdtree.cmd_6939] +RelativePath=GC\Scenarios\BinTree\thdtree\thdtree.cmd +WorkingDir=GC\Scenarios\BinTree\thdtree +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[add_ovf_i8.cmd_6940] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8\add_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_6941] +RelativePath=Loader\classloader\TSAmbiguities\Variance\Variant_InherittedCollision\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\Variance\Variant_InherittedCollision\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Optimized_3.cmd_6942] +RelativePath=GC\API\GC\Collect_Optimized_3\Collect_Optimized_3.cmd +WorkingDir=GC\API\GC\Collect_Optimized_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated954.cmd_6943] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest954\Generated954\Generated954.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest954\Generated954 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartInt.cmd_6944] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt\ThreadStartInt.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sharedoverride.cmd_6945] +RelativePath=JIT\opt\Devirtualization\sharedoverride\sharedoverride.cmd +WorkingDir=JIT\opt\Devirtualization\sharedoverride +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[strswitchfinal_do.cmd_6946] +RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_do\strswitchfinal_do.cmd +WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetBytes1.cmd_6947] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1\UTF8EncodingGetBytes1.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_ref.cmd_6948] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref\_il_reli_ref.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b69848.cmd_6949] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848\b69848.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84961.cmd_6950] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961\b84961.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetChars.cmd_6951] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars\UnicodeEncodingGetChars.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytryfinally_d.cmd_6952] +RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_d\tryfinallytryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_flood.cmd_6953] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood\_il_dbgu_flood.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated375.cmd_6954] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest375\Generated375\Generated375.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest375\Generated375 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeMakeArrayType2.cmd_6955] +RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType2\TypeMakeArrayType2.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghan3.cmd_6956] +RelativePath=JIT\Methodical\VT\etc\_il_dbghan3\_il_dbghan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSin.cmd_6957] +RelativePath=CoreMangLib\cti\system\math\MathSin\MathSin.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_6.cmd_6958] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6\OpCodesLdc_I4_6.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass015.cmd_6959] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015\castclass015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString33.cmd_6960] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString33\ConvertToString33.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString33 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BugWithAVX_ro.cmd_6961] +RelativePath=JIT\SIMD\BugWithAVX_ro\BugWithAVX_ro.cmd +WorkingDir=JIT\SIMD\BugWithAVX_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox001.cmd_6962] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001\box-unbox001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b399444b.cmd_6963] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b\b399444b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b610750_32vs64.cmd_6964] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64\b610750_32vs64.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryAdd.cmd_6965] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd\IDictionaryAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-15-two.cmd_6966] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-15-two\RMV-2-13-15-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-15-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated106.cmd_6967] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest106\Generated106\Generated106.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest106\Generated106 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgbinop.cmd_6968] +RelativePath=JIT\Methodical\int64\misc\_il_dbgbinop\_il_dbgbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_il_dbgbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated547.cmd_6969] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest547\Generated547\Generated547.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest547\Generated547 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_r4.cmd_6970] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r4\clt_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated876.cmd_6971] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest876\Generated876\Generated876.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest876\Generated876 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_ro.cmd_6972] +RelativePath=JIT\Methodical\NaN\arithm64_ro\arithm64_ro.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated468.cmd_6973] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest468\Generated468\Generated468.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest468\Generated468 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1031.cmd_6974] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1031\Generated1031\Generated1031.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1031\Generated1031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract10.cmd_6975] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract10\abstract10.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ddb148379.cmd_6976] +RelativePath=JIT\Generics\regression\DDB148379\ddb148379\ddb148379.cmd +WorkingDir=JIT\Generics\regression\DDB148379\ddb148379 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble6.cmd_6977] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble6\ConvertToDouble6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TextWriterNull_PSC.cmd_6978] +RelativePath=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC\TextWriterNull_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinally_r.cmd_6979] +RelativePath=JIT\Methodical\eh\basics\tryfinally_r\tryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_6980] +RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\class01\class01.cmd +WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_298.cmd_6981] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_298\GCSimulator_298.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_298 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_r_loop_try.cmd_6982] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop_try\simpleexpr4_r_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated810.cmd_6983] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest810\Generated810\Generated810.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest810\Generated810 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1185.cmd_6984] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1185\Generated1185\Generated1185.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1185\Generated1185 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass028.cmd_6985] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028\castclass028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated763.cmd_6986] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest763\Generated763\Generated763.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest763\Generated763 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1349.cmd_6987] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1349\Generated1349\Generated1349.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1349\Generated1349 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegateParamCallTarget.cmd_6988] +RelativePath=JIT\Methodical\tailcall_v4\delegateParamCallTarget\delegateParamCallTarget.cmd +WorkingDir=JIT\Methodical\tailcall_v4\delegateParamCallTarget +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_394.cmd_6989] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_394\GCSimulator_394.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_394 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcastclass_call.cmd_6990] +RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_call\_speed_relcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated927.cmd_6991] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest927\Generated927\Generated927.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest927\Generated927 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated43.cmd_6992] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest43\Generated43\Generated43.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest43\Generated43 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxvaluetype_ro.cmd_6993] +RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro\boxunboxvaluetype_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess2_cs_r.cmd_6994] +RelativePath=JIT\Directed\StrAccess\straccess2_cs_r\straccess2_cs_r.cmd +WorkingDir=JIT\Directed\StrAccess\straccess2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_conv.cmd_6995] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv\_il_dbgi_conv.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit6.cmd_6996] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit6\_opt_dbgexplicit6.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface005.cmd_6997] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005\box-unbox-interface005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesRTSpecialName.cmd_6998] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName\TypeAttributesRTSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_r8.cmd_6999] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8\stloc_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleTypePinned.cmd_7000] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned\GCHandleTypePinned.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_131.cmd_7001] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_131\GCSimulator_131.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEqualityComparerGetHashCode.cmd_7002] +RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode\IEqualityComparerGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subbyref_il_r.cmd_7003] +RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_r\subbyref_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1190.cmd_7004] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1190\Generated1190\Generated1190.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1190\Generated1190 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b114628.cmd_7005] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628\b114628.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_And_Op_cs_ro.cmd_7006] +RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_ro\Bool_And_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1261.cmd_7007] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1261\Generated1261\Generated1261.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1261\Generated1261 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadoponerrorinfunclet_d.cmd_7008] +RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d\deadoponerrorinfunclet_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionCtor4.cmd_7009] +RelativePath=CoreMangLib\cti\system\version\VersionCtor4\VersionCtor4.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionCtor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteParse3.cmd_7010] +RelativePath=CoreMangLib\cti\system\sbyte\SByteParse3\SByteParse3.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_369.cmd_7011] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_369\GCSimulator_369.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString30.cmd_7012] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString30\ConvertToString30.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25491.cmd_7013] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491\b25491.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleIsInvalid_PSC.cmd_7014] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC\SafeHandleIsInvalid_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_117.cmd_7015] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_117\GCSimulator_117.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_117 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread26.cmd_7016] +RelativePath=baseservices\threading\generics\threadstart\GThread26\GThread26.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated423.cmd_7017] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest423\Generated423\Generated423.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest423\Generated423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fragman.cmd_7018] +RelativePath=GC\Scenarios\FragMan\fragman\fragman.cmd +WorkingDir=GC\Scenarios\FragMan\fragman +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated429.cmd_7019] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest429\Generated429\Generated429.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest429\Generated429 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteMaxValue.cmd_7020] +RelativePath=CoreMangLib\cti\system\sbyte\SByteMaxValue\SByteMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCopyTo.cmd_7021] +RelativePath=CoreMangLib\cti\system\array\ArrayCopyTo\ArrayCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldfld_mulovf.cmd_7022] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf\_speed_rels_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsInterface.cmd_7023] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface\AttributeTargetsInterface.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToByte.cmd_7024] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToByte\DoubleIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_5.cmd_7025] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_5\ConvertToInt16_5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh12_large.cmd_7026] +RelativePath=JIT\jit64\localloc\ehverify\eh12_large\eh12_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh12_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread12.cmd_7027] +RelativePath=baseservices\threading\generics\syncdelegate\GThread12\GThread12.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_No_Op_cs_r.cmd_7028] +RelativePath=JIT\Directed\cmov\Float_No_Op_cs_r\Float_No_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b184799.cmd_7029] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799\b184799.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1389.cmd_7030] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1389\Generated1389\Generated1389.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1389\Generated1389 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2A_r.cmd_7031] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_r\hfa_sf2A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8flat_cs_do.cmd_7032] +RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_do\i8flat_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalMultiply.cmd_7033] +RelativePath=CoreMangLib\cti\system\decimal\DecimalMultiply\DecimalMultiply.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalMultiply +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_278369.cmd_7034] +RelativePath=JIT\Regression\JitBlue\DevDiv_278369\DevDiv_278369\DevDiv_278369.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_278369\DevDiv_278369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor6.cmd_7035] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6\StringBuilderctor6.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28597.cmd_7036] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597\b28597.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43994.cmd_7037] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994\b43994.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castClassEH.cmd_7038] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH\castClassEH.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_u4.cmd_7039] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4\ldind_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct1_4.cmd_7040] +RelativePath=JIT\jit64\gc\misc\struct1_4\struct1_4.cmd +WorkingDir=JIT\jit64\gc\misc\struct1_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test3.cmd_7041] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test3\test3.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVNumCnt0.cmd_7042] +RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt0\LVNumCnt0.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1239.cmd_7043] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1239\Generated1239\Generated1239.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1239\Generated1239 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1A_d.cmd_7044] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_d\hfa_nf1A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox045.cmd_7045] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045\box-unbox045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relhanoi.cmd_7046] +RelativePath=JIT\Methodical\VT\etc\_relhanoi\_relhanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_relhanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated374.cmd_7047] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest374\Generated374\Generated374.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest374\Generated374 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threadstatic07.cmd_7048] +RelativePath=baseservices\threading\threadstatic\threadstatic07\threadstatic07.cmd +WorkingDir=baseservices\threading\threadstatic\threadstatic07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8a_cs_ro.cmd_7049] +RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_ro\convr8a_cs_ro.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_i8.cmd_7050] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i8\div_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated226.cmd_7051] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest226\Generated226\Generated226.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest226\Generated226 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexpos1.cmd_7052] +RelativePath=baseservices\threading\mutex\openexisting\openmutexpos1\openmutexpos1.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexpos1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_u1.cmd_7053] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1\ldc_sub_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50145.cmd_7054] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145\b50145.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated328.cmd_7055] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest328\Generated328\Generated328.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest328\Generated328 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly3_il_r.cmd_7056] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r\switchdefaultonly3_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderCapacity_cti.cmd_7057] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti\StringBuilderCapacity_cti.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call03_small.cmd_7058] +RelativePath=JIT\jit64\localloc\call\call03_small\call03_small.cmd +WorkingDir=JIT\jit64\localloc\call\call03_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001a.cmd_7059] +RelativePath=Loader\classloader\generics\GenericMethods\method001a\method001a.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw529206StaticCctor.cmd_7060] +RelativePath=Loader\classloader\regressions\529206\vsw529206StaticCctor\vsw529206StaticCctor.cmd +WorkingDir=Loader\classloader\regressions\529206\vsw529206StaticCctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics2_r.cmd_7061] +RelativePath=JIT\Methodical\nonvirtualcall\generics2_r\generics2_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt647.cmd_7062] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt647\ConvertToUInt647.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt647 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrToString.cmd_7063] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToString\UIntPtrToString.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_1.cmd_7064] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1\OpCodesLdc_I4_1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionIsSynchronized.cmd_7065] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized\ICollectionIsSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollGenericICollClear.cmd_7066] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear\ValueCollGenericICollClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte10.cmd_7067] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte10\ConvertToSByte10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10940b.cmd_7068] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b\b10940b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface006.cmd_7069] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006\castclass-interface006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated943.cmd_7070] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest943\Generated943\Generated943.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest943\Generated943 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated189.cmd_7071] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest189\Generated189\Generated189.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest189\Generated189 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAC_ro.cmd_7072] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro\CGRecurseAAC_ro.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case4.cmd_7073] +RelativePath=Loader\classloader\regressions\dev10_813331\Case4\Case4.cmd +WorkingDir=Loader\classloader\regressions\dev10_813331\Case4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77707.cmd_7074] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707\b77707.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DDB188478.cmd_7075] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478\DDB188478.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToByte3.cmd_7076] +RelativePath=CoreMangLib\cti\system\convert\ConvertToByte3\ConvertToByte3.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterfaceInheritanceTest2.cmd_7077] +RelativePath=Loader\classloader\generics\Variance\IL\InterfaceInheritanceTest2\InterfaceInheritanceTest2.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\InterfaceInheritanceTest2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-03_cs_d.cmd_7078] +RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_d\5w1d-03_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70267.cmd_7079] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267\b70267.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanEquals_Object.cmd_7080] +RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Object\BooleanEquals_Object.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Object +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_mul.cmd_7081] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mul\VolatileTest_op_mul.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_objref.cmd_7082] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_objref\_il_relhuge_objref.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated467.cmd_7083] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest467\Generated467\Generated467.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest467\Generated467 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Trap.cmd_7084] +RelativePath=JIT\Performance\CodeQuality\BenchF\Trap\Trap\Trap.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Trap\Trap +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrotarg_double.cmd_7085] +RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_double\_relrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_248.cmd_7086] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_248\GCSimulator_248.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_248 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26153.cmd_7087] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153\b26153.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reldeep.cmd_7088] +RelativePath=JIT\Methodical\Invoke\deep\_speed_reldeep\_speed_reldeep.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_speed_reldeep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathPI.cmd_7089] +RelativePath=CoreMangLib\cti\system\math\MathPI\MathPI.cmd +WorkingDir=CoreMangLib\cti\system\math\MathPI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparerDefault.cmd_7090] +RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault\ComparerDefault.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedCollect.cmd_7091] +RelativePath=GC\Features\Pinning\PinningOther\PinnedCollect\PinnedCollect.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedCollect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relCommonBase.cmd_7092] +RelativePath=JIT\Methodical\casts\ilseq\_il_relCommonBase\_il_relCommonBase.cmd +WorkingDir=JIT\Methodical\casts\ilseq\_il_relCommonBase +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfieldparam_ro.cmd_7093] +RelativePath=JIT\Directed\StructABI\structfieldparam_ro\structfieldparam_ro.cmd +WorkingDir=JIT\Directed\StructABI\structfieldparam_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null005.cmd_7094] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005\castclass-null005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reladdress.cmd_7095] +RelativePath=JIT\Methodical\Arrays\misc\_il_reladdress\_il_reladdress.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_reladdress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsval.cmd_7096] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsval\_rellcsval.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1325.cmd_7097] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1325\Generated1325\Generated1325.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1325\Generated1325 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObsoleteAttributeCtor2.cmd_7098] +RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2\ObsoleteAttributeCtor2.cmd +WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow01_mul.cmd_7099] +RelativePath=JIT\jit64\rtchecks\overflow\overflow01_mul\overflow01_mul.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics041.cmd_7100] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041\box-unbox-generics041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated366.cmd_7101] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest366\Generated366\Generated366.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest366\Generated366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated302.cmd_7102] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest302\Generated302\Generated302.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest302\Generated302 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_u4.cmd_7103] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4\sub_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetDecoder.cmd_7104] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder\EncodingGetDecoder.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-5-3.cmd_7105] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-5-3\L-2-5-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-5-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated591.cmd_7106] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest591\Generated591\Generated591.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest591\Generated591 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend10.cmd_7107] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10\StringBuilderAppend10.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Call_instance01_ro.cmd_7108] +RelativePath=JIT\Generics\Constraints\Call_instance01_ro\Call_instance01_ro.cmd +WorkingDir=JIT\Generics\Constraints\Call_instance01_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OutOfMemoryExceptionCtor1.cmd_7109] +RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1\OutOfMemoryExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated509.cmd_7110] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest509\Generated509\Generated509.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest509\Generated509 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeaftercatch_d.cmd_7111] +RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_d\badcodeaftercatch_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TargetParameterCountExceptionCtor2.cmd_7112] +RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2\TargetParameterCountExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_i1.cmd_7113] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i1\_dbgrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3GetHash_ro.cmd_7114] +RelativePath=JIT\SIMD\Vector3GetHash_ro\Vector3GetHash_ro.cmd +WorkingDir=JIT\SIMD\Vector3GetHash_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated2.cmd_7115] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest2\Generated2\Generated2.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest2\Generated2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectCtor.cmd_7116] +RelativePath=CoreMangLib\cti\system\object\ObjectCtor\ObjectCtor.cmd +WorkingDir=CoreMangLib\cti\system\object\ObjectCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b589202.cmd_7117] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202\b589202.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread24.cmd_7118] +RelativePath=baseservices\threading\generics\syncdelegate\GThread24\GThread24.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated655.cmd_7119] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest655\Generated655\Generated655.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest655\Generated655 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36472.cmd_7120] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472\b36472.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[GitHub_10714.cmd_7121] +RelativePath=JIT\Regression\JitBlue\GitHub_10714\GitHub_10714\GitHub_10714.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10714\GitHub_10714 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesSub_Ovf_Un.cmd_7122] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un\OpCodesSub_Ovf_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_7.cmd_7123] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7\OpCodesLdc_I4_7.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToChar.cmd_7124] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar\UInt64IConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeOutInfinite.cmd_7125] +RelativePath=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite\TimeOutInfinite.cmd +WorkingDir=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_6.cmd_7126] +RelativePath=JIT\jit64\gc\misc\structfp1_6\structfp1_6.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[devdiv_815941.cmd_7127] +RelativePath=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941\devdiv_815941.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorInitN_r.cmd_7128] +RelativePath=JIT\SIMD\VectorInitN_r\VectorInitN_r.cmd +WorkingDir=JIT\SIMD\VectorInitN_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray3_cs_d.cmd_7129] +RelativePath=JIT\Methodical\doublearray\dblarray3_cs_d\dblarray3_cs_d.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated572.cmd_7130] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest572\Generated572\Generated572.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest572\Generated572 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Xor_Op_cs_ro.cmd_7131] +RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_ro\Double_Xor_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brfalse.cmd_7132] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brfalse\brfalse.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brfalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value012.cmd_7133] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012\box-unbox-value012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics033.cmd_7134] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033\castclass-generics033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_pop1.cmd_7135] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1\StackBehaviourPopref_pop1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionCount.cmd_7136] +RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCount\ICollectionCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparerCtor.cmd_7137] +RelativePath=CoreMangLib\cti\system\stringcompare\StringComparerCtor\StringComparerCtor.cmd +WorkingDir=CoreMangLib\cti\system\stringcompare\StringComparerCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_95.cmd_7138] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_95\GCSimulator_95.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_95 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesIL.cmd_7139] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL\MethodImplAttributesIL.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02062.cmd_7140] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062\b02062.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalgotoinatryblockinahandler.cmd_7141] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler\nonlocalgotoinatryblockinahandler.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesFamANDAssem.cmd_7142] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem\MethodAttributesFamANDAssem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59782.cmd_7143] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782\b59782.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12685 +HostStyle=0 + +[Generated1230.cmd_7144] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1230\Generated1230\Generated1230.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1230\Generated1230 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001d.cmd_7145] +RelativePath=Loader\classloader\generics\GenericMethods\method001d\method001d.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_617302.cmd_7146] +RelativePath=JIT\Regression\Dev11\Dev11_617302\Dev11_617302\Dev11_617302.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_617302\Dev11_617302 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPRem.cmd_7147] +RelativePath=JIT\CodeGenBringUpTests\FPRem\FPRem.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPRem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString32.cmd_7148] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString32\ConvertToString32.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated949.cmd_7149] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest949\Generated949\Generated949.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest949\Generated949 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43010.cmd_7150] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010\b43010.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null003.cmd_7151] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003\box-unbox-null003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-39g-two.cmd_7152] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-39g-two\RMV-2-8-39g-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-39g-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated641.cmd_7153] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest641\Generated641\Generated641.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest641\Generated641 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_r8_i4.cmd_7154] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4\conv_ovf_r8_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics002.cmd_7155] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002\castclass-generics002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4a_cs_d.cmd_7156] +RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_d\convr4a_cs_d.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_227.cmd_7157] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_227\GCSimulator_227.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_227 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_u8.cmd_7158] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u8\blt_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_ro.cmd_7159] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_ro\callconv1_cs_ro.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase2.cmd_7160] +RelativePath=Loader\classloader\InterfaceFolding\TestCase2\TestCase2.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorThrowLDFTNStaticMethod.cmd_7161] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowLDFTNStaticMethod\CctorThrowLDFTNStaticMethod.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\CctorThrowLDFTNStaticMethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh13_dynamic.cmd_7162] +RelativePath=JIT\jit64\localloc\ehverify\eh13_dynamic\eh13_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh13_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0E_r.cmd_7163] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_r\hfa_sf0E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[Generated399.cmd_7164] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest399\Generated399\Generated399.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest399\Generated399 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRem_Un.cmd_7165] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un\OpCodesRem_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b99219.cmd_7166] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219\b99219.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0A_r.cmd_7167] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_r\hfa_sd0A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MaxGeneration.cmd_7168] +RelativePath=GC\API\GC\MaxGeneration\MaxGeneration.cmd +WorkingDir=GC\API\GC\MaxGeneration +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparerCtor.cmd_7169] +RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor\ComparerCtor.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_r4.cmd_7170] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4\ldarga_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1345.cmd_7171] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1345\Generated1345\Generated1345.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1345\Generated1345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call.cmd_7172] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\call\call.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesReadOnly.cmd_7173] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly\FileAttributesReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated235.cmd_7174] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest235\Generated235\Generated235.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest235\Generated235 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b87284.cmd_7175] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284\b87284.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtrycatch_d.cmd_7176] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d\nestedtrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leaveintotrybody_d.cmd_7177] +RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_d\leaveintotrybody_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexpos3.cmd_7178] +RelativePath=baseservices\threading\mutex\openexisting\openmutexpos3\openmutexpos3.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexpos3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_406.cmd_7179] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_406\GCSimulator_406.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_406 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcast_throw.cmd_7180] +RelativePath=JIT\Methodical\casts\SEH\_speed_relcast_throw\_speed_relcast_throw.cmd +WorkingDir=JIT\Methodical\casts\SEH\_speed_relcast_throw +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_243.cmd_7181] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_243\GCSimulator_243.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_243 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgisinst_ldloc.cmd_7182] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc\_speed_dbgisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct08.cmd_7183] +RelativePath=baseservices\exceptions\generics\try-catch-struct08\try-catch-struct08.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated476.cmd_7184] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest476\Generated476\Generated476.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest476\Generated476 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread26.cmd_7185] +RelativePath=baseservices\threading\generics\WaitCallback\thread26\thread26.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrEquals.cmd_7186] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrEquals\UIntPtrEquals.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51875.cmd_7187] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875\b51875.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated540.cmd_7188] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest540\Generated540\Generated540.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest540\Generated540 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bouncingball_cs_ro.cmd_7189] +RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_ro\bouncingball_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated634.cmd_7190] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest634\Generated634\Generated634.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest634\Generated634 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[excepobj.cmd_7191] +RelativePath=JIT\Directed\ExcepFilters\excepobj\excepobj\excepobj.cmd +WorkingDir=JIT\Directed\ExcepFilters\excepobj\excepobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch5.cmd_7192] +RelativePath=JIT\Methodical\switch\switch5\switch5.cmd +WorkingDir=JIT\Methodical\switch\switch5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test.cmd_7193] +RelativePath=Loader\classloader\regressions\440935\Test\Test.cmd +WorkingDir=Loader\classloader\regressions\440935\Test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[funclet.cmd_7194] +RelativePath=JIT\jit64\gc\misc\funclet\funclet.cmd +WorkingDir=JIT\jit64\gc\misc\funclet +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Int_Xor_Op_cs_do.cmd_7195] +RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_do\Int_Xor_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null031.cmd_7196] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031\box-unbox-null031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated671.cmd_7197] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest671\Generated671\Generated671.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest671\Generated671 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cprop001_d.cmd_7198] +RelativePath=JIT\jit64\opt\cprop\cprop001_d\cprop001_d.cmd +WorkingDir=JIT\jit64\opt\cprop\cprop001_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldelemnullarr1_il_r.cmd_7199] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r\ldelemnullarr1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[structret1_2.cmd_7200] +RelativePath=JIT\jit64\gc\misc\structret1_2\structret1_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret1_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_seq.cmd_7201] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq\_il_dbgi_seq.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltypes.cmd_7202] +RelativePath=JIT\Methodical\ldtoken\_il_reltypes\_il_reltypes.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_reltypes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayReserse1.cmd_7203] +RelativePath=CoreMangLib\cti\system\array\ArrayReserse1\ArrayReserse1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayReserse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[constructor_ro.cmd_7204] +RelativePath=JIT\Directed\nullabletypes\constructor_ro\constructor_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\constructor_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ManualResetCtor1.cmd_7205] +RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1\ManualResetCtor1.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_il_r.cmd_7206] +RelativePath=JIT\Generics\ConstrainedCall\vt2_il_r\vt2_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44410.cmd_7207] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410\b44410.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_i.cmd_7208] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i\add_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit2.cmd_7209] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit2\_opt_dbgexplicit2.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null019.cmd_7210] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019\castclass-null019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_value.cmd_7211] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_value\_il_reldeep_value.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_value +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionIsReadOnly.cmd_7212] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly\DictionaryICollectionIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1228.cmd_7213] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1228\Generated1228\Generated1228.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1228\Generated1228 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorAdd_r.cmd_7214] +RelativePath=JIT\SIMD\VectorAdd_r\VectorAdd_r.cmd +WorkingDir=JIT\SIMD\VectorAdd_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IVTAAssemblyName.cmd_7215] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName\IVTAAssemblyName.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidCastExceptionctor3.cmd_7216] +RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3\InvalidCastExceptionctor3.cmd +WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorHWAccel_ro.cmd_7217] +RelativePath=JIT\SIMD\VectorHWAccel_ro\VectorHWAccel_ro.cmd +WorkingDir=JIT\SIMD\VectorHWAccel_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullcomparaison_ro.cmd_7218] +RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro\nullcomparaison_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794115_do.cmd_7219] +RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do\DevDiv_794115_do.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1423.cmd_7220] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1423\Generated1423\Generated1423.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1423\Generated1423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated100.cmd_7221] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest100\Generated100\Generated100.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest100\Generated100 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartCast_1.cmd_7222] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_1\ThreadStartCast_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_class01.cmd_7223] +RelativePath=JIT\Generics\Parameters\static_assignment_class01\static_assignment_class01.cmd +WorkingDir=JIT\Generics\Parameters\static_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_addsub.cmd_7224] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_addsub\_speed_dbgs_addsub.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_addsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_r8.cmd_7225] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8\ldind_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1388.cmd_7226] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1388\Generated1388\Generated1388.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1388\Generated1388 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpvariant.cmd_7227] +RelativePath=GC\Scenarios\Boxing\simpvariant\simpvariant.cmd +WorkingDir=GC\Scenarios\Boxing\simpvariant +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_class01.cmd_7228] +RelativePath=JIT\Generics\Locals\static_assignment_class01\static_assignment_class01.cmd +WorkingDir=JIT\Generics\Locals\static_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteCompareTo2.cmd_7229] +RelativePath=CoreMangLib\cti\system\sbyte\SByteCompareTo2\SByteCompareTo2.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteCompareTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated296.cmd_7230] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest296\Generated296\Generated296.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest296\Generated296 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_12.cmd_7231] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_12\GCSimulator_12.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc_2.cmd_7232] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2\OpCodesStloc_2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relgcarr.cmd_7233] +RelativePath=JIT\Methodical\Arrays\misc\_speed_relgcarr\_speed_relgcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_speed_relgcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldr4_il_d.cmd_7234] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d\ldfldr4_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbggcval_sideeffect.cmd_7235] +RelativePath=JIT\Methodical\tailcall\_il_dbggcval_sideeffect\_il_dbggcval_sideeffect.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_sideeffect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w250d_cs_d.cmd_7236] +RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_d\10w250d_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPFillArray.cmd_7237] +RelativePath=JIT\CodeGenBringUpTests\FPFillArray\FPFillArray.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPFillArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_162.cmd_7238] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_162\GCSimulator_162.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_162 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1353.cmd_7239] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1353\Generated1353\Generated1353.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1353\Generated1353 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldmul_cs_ro.cmd_7240] +RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro\lclfldmul_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated816.cmd_7241] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest816\Generated816\Generated816.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest816\Generated816 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finally.cmd_7242] +RelativePath=JIT\Directed\throwbox\finally\finally.cmd +WorkingDir=JIT\Directed\throwbox\finally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCtor2_cti.cmd_7243] +RelativePath=CoreMangLib\cti\system\guid\GuidCtor2_cti\GuidCtor2_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCtor2_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryIsFixedSize.cmd_7244] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize\DictionaryIDictionaryIsFixedSize.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[derivedExplicitClass.cmd_7245] +RelativePath=Loader\classloader\explicitlayout\misc\derivedExplicitClass\derivedExplicitClass.cmd +WorkingDir=Loader\classloader\explicitlayout\misc\derivedExplicitClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_R8.cmd_7246] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8\_il_relldobj_R8.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b360587.cmd_7247] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587\b360587.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[abstract03.cmd_7248] +RelativePath=Loader\classloader\generics\Instantiation\Negative\abstract03\abstract03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\abstract03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglcs_ulong.cmd_7249] +RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_ulong\_il_dbglcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated485.cmd_7250] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest485\Generated485\Generated485.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest485\Generated485 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions05.cmd_7251] +RelativePath=baseservices\exceptions\generics\GenericExceptions05\GenericExceptions05.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface018.cmd_7252] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018\box-unbox-interface018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated270.cmd_7253] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest270\Generated270\Generated270.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest270\Generated270 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_816617_d.cmd_7254] +RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d\DevDiv_816617_d.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg_3.cmd_7255] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3\OpCodesLdarg_3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjAlloc.cmd_7256] +RelativePath=JIT\CodeGenBringUpTests\ObjAlloc\ObjAlloc.cmd +WorkingDir=JIT\CodeGenBringUpTests\ObjAlloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstinterface_do.cmd_7257] +RelativePath=JIT\Directed\nullabletypes\isinstinterface_do\isinstinterface_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstinterface_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittonestedsibling_d.cmd_7258] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d\nonlocalexittonestedsibling_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated905.cmd_7259] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest905\Generated905\Generated905.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest905\Generated905 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotarg_double.cmd_7260] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double\_il_dbgrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk3_il_d.cmd_7261] +RelativePath=JIT\Methodical\xxblk\initblk3_il_d\initblk3_il_d.cmd +WorkingDir=JIT\Methodical\xxblk\initblk3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12686 +HostStyle=0 + +[118414.cmd_7262] +RelativePath=JIT\jit64\regress\ddb\118414\118414\118414.cmd +WorkingDir=JIT\jit64\regress\ddb\118414\118414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteMinValue.cmd_7263] +RelativePath=CoreMangLib\cti\system\byte\ByteMinValue\ByteMinValue.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated826.cmd_7264] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest826\Generated826\Generated826.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest826\Generated826 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14769.cmd_7265] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769\b14769.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-filter-struct02.cmd_7266] +RelativePath=baseservices\exceptions\generics\try-filter-struct02\try-filter-struct02.cmd +WorkingDir=baseservices\exceptions\generics\try-filter-struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359734.cmd_7267] +RelativePath=JIT\Regression\JitBlue\DevDiv_359734\DevDiv_359734\DevDiv_359734.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359734\DevDiv_359734 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToByte.cmd_7268] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte\UInt64IConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldfld_mulovf.cmd_7269] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf\_dbgldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33585.cmd_7270] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585\b33585.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_724989.cmd_7271] +RelativePath=Loader\classloader\regressions\dev10_724989\dev10_724989\dev10_724989.cmd +WorkingDir=Loader\classloader\regressions\dev10_724989\dev10_724989 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_ldlen.cmd_7272] +RelativePath=JIT\Methodical\casts\array\_il_relcastclass_ldlen\_il_relcastclass_ldlen.cmd +WorkingDir=JIT\Methodical\casts\array\_il_relcastclass_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSize4.cmd_7273] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4\PackingSize4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ref2byref_il_r.cmd_7274] +RelativePath=JIT\Directed\refbyref\ref2byref_il_r\ref2byref_il_r.cmd +WorkingDir=JIT\Directed\refbyref\ref2byref_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Peer_4.cmd_7275] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4\Test_CSharp_Peer_4.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem5.cmd_7276] +RelativePath=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem5\StaticsProblem5.cmd +WorkingDir=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringJoin1.cmd_7277] +RelativePath=CoreMangLib\cti\system\string\StringJoin1\StringJoin1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringJoin1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_ref.cmd_7278] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref\ldind_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1055.cmd_7279] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1055\Generated1055\Generated1055.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1055\Generated1055 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_7280] +RelativePath=JIT\Generics\Instantiation\Structs\struct01\struct01.cmd +WorkingDir=JIT\Generics\Instantiation\Structs\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null022.cmd_7281] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022\castclass-null022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b598649.cmd_7282] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649\b598649.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refanytype1.cmd_7283] +RelativePath=JIT\Directed\coverage\importer\refanytype1\refanytype1.cmd +WorkingDir=JIT\Directed\coverage\importer\refanytype1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated439.cmd_7284] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest439\Generated439\Generated439.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest439\Generated439 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bug606733.cmd_7285] +RelativePath=JIT\jit64\regress\vsw\606733\Bug606733\Bug606733.cmd +WorkingDir=JIT\jit64\regress\vsw\606733\Bug606733 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64GetHashCode.cmd_7286] +RelativePath=CoreMangLib\cti\system\int64\Int64GetHashCode\Int64GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompare2.cmd_7287] +RelativePath=CoreMangLib\cti\system\string\StringCompare2\StringCompare2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompare2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1350.cmd_7288] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1350\Generated1350\Generated1350.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1350\Generated1350 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated108.cmd_7289] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest108\Generated108\Generated108.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest108\Generated108 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated161.cmd_7290] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest161\Generated161\Generated161.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest161\Generated161 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0G_r.cmd_7291] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_r\hfa_sf0G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetEventReSet.cmd_7292] +RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet\AutoResetEventReSet.cmd +WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19112b.cmd_7293] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b\b19112b.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_I.cmd_7294] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I\_il_dbgldobj_I.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1173.cmd_7295] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1173\Generated1173\Generated1173.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1173\Generated1173 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27880.cmd_7296] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880\b27880.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_byte_1_d.cmd_7297] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d\seq_gc_byte_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread04.cmd_7298] +RelativePath=baseservices\threading\generics\WaitCallback\thread04\thread04.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdvirtftn.cmd_7299] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn\OpCodesLdvirtftn.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated33.cmd_7300] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest33\Generated33\Generated33.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest33\Generated33 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[binarytrees.cmd_7301] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees\binarytrees.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated686.cmd_7302] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest686\Generated686\Generated686.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest686\Generated686 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_r4.cmd_7303] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4\bgt_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow1.cmd_7304] +RelativePath=JIT\Directed\intrinsic\pow\pow1\pow1.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InnerFinallyAndCatch.cmd_7305] +RelativePath=baseservices\exceptions\unittests\InnerFinallyAndCatch\InnerFinallyAndCatch.cmd +WorkingDir=baseservices\exceptions\unittests\InnerFinallyAndCatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated398.cmd_7306] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest398\Generated398\Generated398.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest398\Generated398 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w250d_cs_r.cmd_7307] +RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_r\10w250d_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_i8.cmd_7308] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8\mul_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BenchMrk.cmd_7309] +RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk\BenchMrk.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i05.cmd_7310] +RelativePath=JIT\jit64\mcc\interop\mcc_i05\mcc_i05.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryEnumeratorCurrent.cmd_7311] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent\DictionaryEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat8.cmd_7312] +RelativePath=CoreMangLib\cti\system\string\StringConcat8\StringConcat8.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetCast1.cmd_7313] +RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1\AutoResetCast1.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Optimized_1.cmd_7314] +RelativePath=GC\API\GC\Collect_Optimized_1\Collect_Optimized_1.cmd +WorkingDir=GC\API\GC\Collect_Optimized_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrSize.cmd_7315] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrSize\UIntPtrSize.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompEx.cmd_7316] +RelativePath=Regressions\coreclr\0198\CompEx\CompEx.cmd +WorkingDir=Regressions\coreclr\0198\CompEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-10-3.cmd_7317] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-10-3\L-2-10-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-10-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91917.cmd_7318] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917\b91917.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest_cs_do.cmd_7319] +RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do\ctest_cs_do.cmd +WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox043.cmd_7320] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043\box-unbox043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated309.cmd_7321] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest309\Generated309\Generated309.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest309\Generated309 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_r4.cmd_7322] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r4\ble_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xaddmuly_cs_ro.cmd_7323] +RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro\xaddmuly_cs_ro.cmd +WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_393.cmd_7324] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_393\GCSimulator_393.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_393 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2B_r.cmd_7325] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_r\hfa_sf2B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsizeof32.cmd_7326] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32\_il_dbgsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43121.cmd_7327] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121\b43121.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8d_il_r.cmd_7328] +RelativePath=JIT\Methodical\FPtrunc\convr8d_il_r\convr8d_il_r.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated850.cmd_7329] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest850\Generated850\Generated850.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest850\Generated850 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance01.cmd_7330] +RelativePath=JIT\Generics\pinvoke\instance01\instance01.cmd +WorkingDir=JIT\Generics\pinvoke\instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault02.cmd_7331] +RelativePath=baseservices\exceptions\generics\try-fault02\try-fault02.cmd +WorkingDir=baseservices\exceptions\generics\try-fault02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_392.cmd_7332] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_392\GCSimulator_392.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4a_cs_ro.cmd_7333] +RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_ro\convr4a_cs_ro.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36302.cmd_7334] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302\b36302.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP2a.cmd_7335] +RelativePath=JIT\Directed\StructPromote\SP2a\SP2a.cmd +WorkingDir=JIT\Directed\StructPromote\SP2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_ref.cmd_7336] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref\ldc_ret_ref.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop3_il_r.cmd_7337] +RelativePath=JIT\Directed\UnrollLoop\loop3_il_r\loop3_il_r.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesNewSlot.cmd_7338] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot\MethodAttributesNewSlot.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeCreate.cmd_7339] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreate\FileModeCreate.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgbinop.cmd_7340] +RelativePath=JIT\Methodical\int64\misc\_dbgbinop\_dbgbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_dbgbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[param01.cmd_7341] +RelativePath=Loader\classloader\generics\Instantiation\Negative\param01\param01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\param01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass02.cmd_7342] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass02\NestedBaseClass02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359736_do.cmd_7343] +RelativePath=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_do\DevDiv_359736_do.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfr4.cmd_7344] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr4\_il_dbgfr4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43040.cmd_7345] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040\b43040.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartGenerics_1.cmd_7346] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics_1\ThreadStartGenerics_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchintryfinally_do.cmd_7347] +RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_do\trycatchintryfinally_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox002.cmd_7348] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox002\Unbox002.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadExceptionMessage.cmd_7349] +RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage\TypeLoadExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCreateInstance1b.cmd_7350] +RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1b\ArrayCreateInstance1b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryRemove.cmd_7351] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove\IDictionaryRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetObjectForNativeVariant.cmd_7352] +RelativePath=Interop\MarshalAPI\GetObjectForNativeVariant\GetObjectForNativeVariant\GetObjectForNativeVariant.cmd +WorkingDir=Interop\MarshalAPI\GetObjectForNativeVariant\GetObjectForNativeVariant +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0B_d.cmd_7353] +RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_d\hfa_sd0B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59477.cmd_7354] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477\b59477.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorector2.cmd_7355] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorector2\semaphorector2.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorector2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated107.cmd_7356] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest107\Generated107\Generated107.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest107\Generated107 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-finally03.cmd_7357] +RelativePath=baseservices\exceptions\generics\try-catch-finally03\try-catch-finally03.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-finally03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relisinst_ldloc.cmd_7358] +RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc\_speed_relisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBlt_Un.cmd_7359] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un\OpCodesBlt_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldOffsetAttributeValue.cmd_7360] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue\FieldOffsetAttributeValue.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0G_r.cmd_7361] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_r\hfa_nd0G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_c_nop.cmd_7362] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop\ldc_c_nop.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1085.cmd_7363] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1085\Generated1085\Generated1085.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1085\Generated1085 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_i2.cmd_7364] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2\ldc_add_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_7365] +RelativePath=JIT\Directed\PREFIX\unaligned\2\localloc\localloc.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem4.cmd_7366] +RelativePath=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem4\StaticsProblem4.cmd +WorkingDir=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToDouble.cmd_7367] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble\UInt32IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value030.cmd_7368] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030\box-unbox-value030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct_ImplicitOverrideVirtualNewslotFinal.cmd_7369] +RelativePath=Loader\classloader\generics\VSD\Struct_ImplicitOverrideVirtualNewslotFinal\Struct_ImplicitOverrideVirtualNewslotFinal.cmd +WorkingDir=Loader\classloader\generics\VSD\Struct_ImplicitOverrideVirtualNewslotFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_u4.cmd_7370] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4\mul_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunbox.cmd_7371] +RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgunbox\_speed_dbgunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_fld.cmd_7372] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld\_il_relu_fld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh02_dynamic.cmd_7373] +RelativePath=JIT\jit64\localloc\eh\eh02_dynamic\eh02_dynamic.cmd +WorkingDir=JIT\jit64\localloc\eh\eh02_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Marshal.cmd_7374] +RelativePath=Regressions\coreclr\0275\Marshal\Marshal.cmd +WorkingDir=Regressions\coreclr\0275\Marshal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b55923.cmd_7375] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923\b55923.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[severaldeadehregions_r.cmd_7376] +RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_r\severaldeadehregions_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble.cmd_7377] +RelativePath=JIT\IL_Conformance\Old\Base\ble\ble.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3_ro.cmd_7378] +RelativePath=JIT\SIMD\Vector3_ro\Vector3_ro.cmd +WorkingDir=JIT\SIMD\Vector3_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics037.cmd_7379] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037\castclass-generics037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_410.cmd_7380] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_410\GCSimulator_410.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b69227.cmd_7381] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227\b69227.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_catch_neg.cmd_7382] +RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg\_il_relisinst_catch_neg.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14443.cmd_7383] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443\b14443.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EqualityComparerEquals.cmd_7384] +RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals\EqualityComparerEquals.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated495.cmd_7385] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest495\Generated495\Generated495.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest495\Generated495 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25468.cmd_7386] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468\b25468.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldstatic1_il_r.cmd_7387] +RelativePath=JIT\Directed\coverage\importer\ldfldstatic1_il_r\ldfldstatic1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\ldfldstatic1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1b_il_d.cmd_7388] +RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_d\25param1b_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_4.cmd_7389] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4\OpCodesLdc_I4_4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_2580.cmd_7390] +RelativePath=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580\GitHub_2580.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1165.cmd_7391] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1165\Generated1165\Generated1165.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1165\Generated1165 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Equals1.cmd_7392] +RelativePath=CoreMangLib\cti\system\int\Int32Equals1\Int32Equals1.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Equals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddInt_1.cmd_7393] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_1\InterlockedAddInt_1.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeaftercatch_r.cmd_7394] +RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_r\badcodeaftercatch_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baseclass05.cmd_7395] +RelativePath=JIT\Generics\Instantiation\Classes\baseclass05\baseclass05.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\baseclass05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatch_ro.cmd_7396] +RelativePath=JIT\Methodical\eh\basics\trythrowcatch_ro\trythrowcatch_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04257.cmd_7397] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257\b04257.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector3Interop_r.cmd_7398] +RelativePath=JIT\SIMD\Vector3Interop_r\Vector3Interop_r.cmd +WorkingDir=JIT\SIMD\Vector3Interop_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[size.cmd_7399] +RelativePath=JIT\opt\Inline\tests\size\size.cmd +WorkingDir=JIT\opt\Inline\tests\size +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_c.cmd_7400] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c\_opt_dbgrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryRemove.cmd_7401] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove\DictionaryRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[462651.cmd_7402] +RelativePath=GC\Regressions\v2.0-beta2\462651\462651\462651.cmd +WorkingDir=GC\Regressions\v2.0-beta2\462651\462651 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint_cs_d.cmd_7403] +RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_d\uint_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1126.cmd_7404] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1126\Generated1126\Generated1126.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1126\Generated1126 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics017.cmd_7405] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017\castclass-generics017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relconcurgc_il.cmd_7406] +RelativePath=JIT\Methodical\Boxing\misc\_relconcurgc_il\_relconcurgc_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_relconcurgc_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated62.cmd_7407] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest62\Generated62\Generated62.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest62\Generated62 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated150.cmd_7408] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest150\Generated150\Generated150.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest150\Generated150 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug_445388.cmd_7409] +RelativePath=JIT\Methodical\dynamic_methods\bug_445388\bug_445388.cmd +WorkingDir=JIT\Methodical\dynamic_methods\bug_445388 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1002.cmd_7410] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1002\Generated1002\Generated1002.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1002\Generated1002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LPSTRTest.cmd_7411] +RelativePath=Interop\StringMarshalling\LPSTR\LPSTRTest\LPSTRTest.cmd +WorkingDir=Interop\StringMarshalling\LPSTR\LPSTRTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_R8.cmd_7412] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8\OpCodesStelem_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11021.cmd_7413] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021\b11021.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca.cmd_7414] +RelativePath=JIT\Directed\PREFIX\volatile\1\ldloca\ldloca.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\ldloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassenum_ro.cmd_7415] +RelativePath=JIT\Directed\nullabletypes\castclassenum_ro\castclassenum_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassenum_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst_r.cmd_7416] +RelativePath=JIT\Directed\nullabletypes\isinst_r\isinst_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedExcept.cmd_7417] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\NestedExcept\NestedExcept.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\NestedExcept +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated24.cmd_7418] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest24\Generated24\Generated24.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest24\Generated24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_263.cmd_7419] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_263\GCSimulator_263.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_263 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b34951.cmd_7420] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951\b34951.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null006.cmd_7421] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006\castclass-null006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1292.cmd_7422] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1292\Generated1292\Generated1292.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1292\Generated1292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relee.cmd_7423] +RelativePath=JIT\Methodical\VT\callconv\_il_relee\_il_relee.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_relee +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfilter_d.cmd_7424] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_d\badcodeafterfilter_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26324b.cmd_7425] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b\b26324b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[_speed_dbgs_ldc_mul.cmd_7426] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul\_speed_dbgs_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf1.cmd_7427] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1\ArrayLastIndexOf1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i76.cmd_7428] +RelativePath=JIT\jit64\mcc\interop\mcc_i76\mcc_i76.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i76 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_88.cmd_7429] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_88\GCSimulator_88.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_88 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14202.cmd_7430] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202\b14202.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25835.cmd_7431] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835\b25835.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_7432] +RelativePath=JIT\jit64\regress\vsw\538615\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\538615\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoverendfinally_r.cmd_7433] +RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_r\branchoverendfinally_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgchain.cmd_7434] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgchain\_il_dbgchain.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgchain +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow02_div.cmd_7435] +RelativePath=JIT\jit64\rtchecks\overflow\overflow02_div\overflow02_div.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Xor_Op_cs_d.cmd_7436] +RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_d\Double_Xor_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41391.cmd_7437] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391\b41391.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated814.cmd_7438] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest814\Generated814\Generated814.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest814\Generated814 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate011.cmd_7439] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate011\Delegate011.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1474.cmd_7440] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1474\Generated1474\Generated1474.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1474\Generated1474 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1337.cmd_7441] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1337\Generated1337\Generated1337.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1337\Generated1337 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0E_r.cmd_7442] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_r\hfa_nd0E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated176.cmd_7443] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest176\Generated176\Generated176.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest176\Generated176 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedfinally_do.cmd_7444] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_do\throwinnestedfinally_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b17904.cmd_7445] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904\b17904.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fault.cmd_7446] +RelativePath=JIT\Directed\throwbox\fault\fault.cmd +WorkingDir=JIT\Directed\throwbox\fault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated956.cmd_7447] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest956\Generated956\Generated956.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest956\Generated956 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48990a.cmd_7448] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a\b48990a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated382.cmd_7449] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest382\Generated382\Generated382.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest382\Generated382 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCalli.cmd_7450] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli\OpCodesCalli.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_323.cmd_7451] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_323\GCSimulator_323.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b402658.cmd_7452] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658\b402658.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1371.cmd_7453] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1371\Generated1371\Generated1371.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1371\Generated1371 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4flat_cs_ro.cmd_7454] +RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_ro\i4flat_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal12.cmd_7455] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal12\ConvertToDecimal12.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartString_3.cmd_7456] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_3\ThreadStartString_3.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_cs_do.cmd_7457] +RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_do\vt2_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter3_d.cmd_7458] +RelativePath=JIT\Directed\leave\filter3_d\filter3_d.cmd +WorkingDir=JIT\Directed\leave\filter3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56066.cmd_7459] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066\b56066.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array1.cmd_7460] +RelativePath=JIT\Performance\CodeQuality\BenchI\Array1\Array1\Array1.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Array1\Array1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_muldiv.cmd_7461] +RelativePath=JIT\Methodical\int64\signed\_dbgs_muldiv\_dbgs_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byref2iu_il_d.cmd_7462] +RelativePath=JIT\Directed\refbyref\byref2iu_il_d\byref2iu_il_d.cmd +WorkingDir=JIT\Directed\refbyref\byref2iu_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1207.cmd_7463] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1207\Generated1207\Generated1207.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1207\Generated1207 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refpinned2iu_il_r.cmd_7464] +RelativePath=JIT\Directed\refbyref\refpinned2iu_il_r\refpinned2iu_il_r.cmd +WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ComparisonInvoke.cmd_7465] +RelativePath=CoreMangLib\cti\system\comparison\ComparisonInvoke\ComparisonInvoke.cmd +WorkingDir=CoreMangLib\cti\system\comparison\ComparisonInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_int64.cmd_7466] +RelativePath=JIT\Directed\zeroinit\init_int64\init_int64.cmd +WorkingDir=JIT\Directed\zeroinit\init_int64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51817.cmd_7467] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817\b51817.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b88797.cmd_7468] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797\b88797.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[general_struct_instance01.cmd_7469] +RelativePath=JIT\Generics\Exceptions\general_struct_instance01\general_struct_instance01.cmd +WorkingDir=JIT\Generics\Exceptions\general_struct_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingFieldExceptionCtor2.cmd_7470] +RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2\MissingFieldExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1216.cmd_7471] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1216\Generated1216\Generated1216.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1216\Generated1216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thdchaos.cmd_7472] +RelativePath=GC\Scenarios\THDChaos\thdchaos\thdchaos.cmd +WorkingDir=GC\Scenarios\THDChaos\thdchaos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[Generated615.cmd_7473] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest615\Generated615\Generated615.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest615\Generated615 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesNeg.cmd_7474] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg\OpCodesNeg.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1365.cmd_7475] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1365\Generated1365\Generated1365.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1365\Generated1365 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion1.cmd_7476] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion1\NullCheckAssertion1.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15526.cmd_7477] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526\b15526.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated557.cmd_7478] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest557\Generated557\Generated557.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest557\Generated557 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics038.cmd_7479] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038\box-unbox-generics038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_18.cmd_7480] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_18\ConvertToInt16_18.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotarg_valref.cmd_7481] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref\_il_dbgrotarg_valref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31102.cmd_7482] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102\b31102.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCastclass.cmd_7483] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass\OpCodesCastclass.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesBeforeFieldInit.cmd_7484] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit\TypeAttributesBeforeFieldInit.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase5.cmd_7485] +RelativePath=Loader\classloader\InterfaceFolding\TestCase5\TestCase5.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeTString_1.cmd_7486] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString_1\ExchangeTString_1.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListInsert.cmd_7487] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListInsert\ListIListInsert.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToInt64.cmd_7488] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt64\StringIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null007.cmd_7489] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007\castclass-null007.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIndexOf3.cmd_7490] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3\ListIndexOf3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b147814_il.cmd_7491] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il\b147814_il.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_o.cmd_7492] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_o\_il_relrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16CompareTo1.cmd_7493] +RelativePath=CoreMangLib\cti\system\uint16\UInt16CompareTo1\UInt16CompareTo1.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16CompareTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst2_r.cmd_7494] +RelativePath=JIT\Directed\nullabletypes\isinst2_r\isinst2_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56780.cmd_7495] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780\b56780.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testClass.cmd_7496] +RelativePath=Regressions\coreclr\1333\testClass\testClass.cmd +WorkingDir=Regressions\coreclr\1333\testClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_funcptr_val_r.cmd_7497] +RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r\expl_funcptr_val_r.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test2.cmd_7498] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test2\test2.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread20.cmd_7499] +RelativePath=baseservices\threading\generics\WaitCallback\thread20\thread20.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08046.cmd_7500] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046\b08046.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4849;EXCLUDED +HostStyle=0 + +[Generated1045.cmd_7501] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1045\Generated1045\Generated1045.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1045\Generated1045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_MultipleReturn.cmd_7502] +RelativePath=JIT\opt\Inline\tests\Inline_MultipleReturn\Inline_MultipleReturn.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_MultipleReturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1099.cmd_7503] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1099\Generated1099\Generated1099.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1099\Generated1099 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToSByte.cmd_7504] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToSByte\DecimalToSByte.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_catch_neg.cmd_7505] +RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg\_il_dbgcastclass_catch_neg.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw577403.cmd_7506] +RelativePath=Loader\classloader\methodoverriding\regressions\577403\vsw577403\vsw577403.cmd +WorkingDir=Loader\classloader\methodoverriding\regressions\577403\vsw577403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1084.cmd_7507] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1084\Generated1084\Generated1084.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1084\Generated1084 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37131.cmd_7508] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131\b37131.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_cs.cmd_7509] +RelativePath=JIT\Methodical\Boxing\morph\_dbgsin_cs\_dbgsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\morph\_dbgsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated607.cmd_7510] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest607\Generated607\Generated607.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest607\Generated607 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTicks.cmd_7511] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicks\TimeSpanTicks.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicks +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix2.cmd_7512] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2\OpCodesPrefix2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate032.cmd_7513] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate032\Delegate032.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatile.cmd_7514] +RelativePath=JIT\IL_Conformance\Old\Base\volatile\volatile.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\volatile +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated940.cmd_7515] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest940\Generated940\Generated940.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest940\Generated940 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_0_5b.cmd_7516] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b\_il_dbgint32_0_5b.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43033.cmd_7517] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033\b43033.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct03.cmd_7518] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03\struct03.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorZeroVal02.cmd_7519] +RelativePath=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal02\CctorZeroVal02.cmd +WorkingDir=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPMulConst.cmd_7520] +RelativePath=JIT\CodeGenBringUpTests\FPMulConst\FPMulConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPMulConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_un_r8.cmd_7521] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8\clt_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_f8.cmd_7522] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f8\_dbgrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relchain.cmd_7523] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relchain\_il_relchain.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relchain +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3a_cs_ro.cmd_7524] +RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_ro\25param3a_cs_ro.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_And_Op_cs_r.cmd_7525] +RelativePath=JIT\Directed\cmov\Float_And_Op_cs_r\Float_And_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgnested.cmd_7526] +RelativePath=JIT\Methodical\VT\etc\_il_dbgnested\_il_dbgnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbgnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_220.cmd_7527] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_220\GCSimulator_220.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_220 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_byte_1_d.cmd_7528] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d\expl_gc_byte_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated41.cmd_7529] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest41\Generated41\Generated41.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest41\Generated41 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrCtor_Int64.cmd_7530] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64\IntPtrCtor_Int64.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[properties.cmd_7531] +RelativePath=Loader\binding\assemblies\basicapi\assemblynamector\properties\properties.cmd +WorkingDir=Loader\binding\assemblies\basicapi\assemblynamector\properties +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEquals1_cti.cmd_7532] +RelativePath=CoreMangLib\cti\system\guid\GuidEquals1_cti\GuidEquals1_cti.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalRemainder.cmd_7533] +RelativePath=CoreMangLib\cti\system\decimal\DecimalRemainder\DecimalRemainder.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalRemainder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated28.cmd_7534] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest28\Generated28\Generated28.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest28\Generated28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_368.cmd_7535] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_368\GCSimulator_368.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_368 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64_d.cmd_7536] +RelativePath=JIT\Directed\shift\uint64_d\uint64_d.cmd +WorkingDir=JIT\Directed\shift\uint64_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null011.cmd_7537] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011\castclass-null011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27564.cmd_7538] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564\b27564.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleDangerousRelease_PSC.cmd_7539] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC\SafeHandleDangerousRelease_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend5.cmd_7540] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5\StringBuilderAppend5.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFCosh.cmd_7541] +RelativePath=CoreMangLib\cti\system\mathf\MathFCosh\MathFCosh.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFCosh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopySingleArray.cmd_7542] +RelativePath=Interop\MarshalAPI\Copy\CopySingleArray\CopySingleArray.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopySingleArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72828.cmd_7543] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828\b72828.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalAdd.cmd_7544] +RelativePath=CoreMangLib\cti\system\decimal\DecimalAdd\DecimalAdd.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionEquals2.cmd_7545] +RelativePath=CoreMangLib\cti\system\version\VersionEquals2\VersionEquals2.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated855.cmd_7546] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest855\Generated855\Generated855.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest855\Generated855 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotate_u2.cmd_7547] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2\_il_dbgrotate_u2.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_U4.cmd_7548] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4\OpCodesLdelem_U4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt.cmd_7549] +RelativePath=JIT\IL_Conformance\Old\Base\clt\clt.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\clt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_brtrue.cmd_7550] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue\c_brtrue.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_un_r4.cmd_7551] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4\bgt_un_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b56349.cmd_7552] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349\b56349.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relobj.cmd_7553] +RelativePath=JIT\Methodical\Invoke\implicit\_relobj\_relobj.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_relobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackCtor2.cmd_7554] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor2\StackCtor2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_413.cmd_7555] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_413\GCSimulator_413.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_413 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intinccheckreturn.cmd_7556] +RelativePath=baseservices\threading\interlocked\checkreturn\intinccheckreturn\intinccheckreturn.cmd +WorkingDir=baseservices\threading\interlocked\checkreturn\intinccheckreturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_struct01.cmd_7557] +RelativePath=JIT\Generics\Fields\static_assignment_struct01\static_assignment_struct01.cmd +WorkingDir=JIT\Generics\Fields\static_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relvcall.cmd_7558] +RelativePath=JIT\Methodical\VT\identity\_speed_relvcall\_speed_relvcall.cmd +WorkingDir=JIT\Methodical\VT\identity\_speed_relvcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCallvirt.cmd_7559] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt\OpCodesCallvirt.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdftn.cmd_7560] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn\OpCodesLdftn.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_526434.cmd_7561] +RelativePath=Loader\classloader\regressions\dev10_526434\dev10_526434\dev10_526434.cmd +WorkingDir=Loader\classloader\regressions\dev10_526434\dev10_526434 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_172.cmd_7562] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_172\GCSimulator_172.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_172 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NewtE.cmd_7563] +RelativePath=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE\NewtE.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNrem_cs_r.cmd_7564] +RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_r\r8NaNrem_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayCopy.cmd_7565] +RelativePath=Regressions\common\ArrayCopy\ArrayCopy.cmd +WorkingDir=Regressions\common\ArrayCopy +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString4.cmd_7566] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString4\ConvertToString4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstToString.cmd_7567] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString\ConstToString.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91855.cmd_7568] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855\b91855.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case2.cmd_7569] +RelativePath=Loader\classloader\regressions\dev10_813331\Case2\Case2.cmd +WorkingDir=Loader\classloader\regressions\dev10_813331\Case2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1419.cmd_7570] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1419\Generated1419\Generated1419.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1419\Generated1419 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_39.cmd_7571] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_39\GCSimulator_39.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_39 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b429039.cmd_7572] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039\b429039.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1259.cmd_7573] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1259\Generated1259\Generated1259.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1259\Generated1259 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_7574] +RelativePath=JIT\jit64\regress\vsw\329169\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\329169\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlCond_Branch.cmd_7575] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch\FlowControlCond_Branch.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cond64_il_r.cmd_7576] +RelativePath=JIT\Methodical\NaN\cond64_il_r\cond64_il_r.cmd +WorkingDir=JIT\Methodical\NaN\cond64_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_1.cmd_7577] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_1\ConvertToInt16_1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNdiv_cs_r.cmd_7578] +RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_r\r8NaNdiv_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_646049.cmd_7579] +RelativePath=JIT\Regression\Dev11\Dev11_646049\Dev11_646049\Dev11_646049.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_646049\Dev11_646049 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35315.cmd_7580] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315\b35315.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtailcall.cmd_7581] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall\_il_dbgtailcall.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_7582] +RelativePath=Regressions\assemblyref\test\test.cmd +WorkingDir=Regressions\assemblyref\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadoponerrorinfunclet_r.cmd_7583] +RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r\deadoponerrorinfunclet_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLength.cmd_7584] +RelativePath=CoreMangLib\cti\system\array\ArrayLength\ArrayLength.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLength +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSqrt.cmd_7585] +RelativePath=CoreMangLib\cti\system\math\MathSqrt\MathSqrt.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSqrt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_instance.cmd_7586] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance\class01_instance.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox012.cmd_7587] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012\box-unbox012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated934.cmd_7588] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest934\Generated934\Generated934.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest934\Generated934 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[variancesmall.cmd_7589] +RelativePath=JIT\Methodical\inlining\dev10_bug719093\variancesmall\variancesmall.cmd +WorkingDir=JIT\Methodical\inlining\dev10_bug719093\variancesmall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[double_cs_ro.cmd_7590] +RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_ro\double_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToDateTime.cmd_7591] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime\Int16IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_popref.cmd_7592] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref\StackBehaviourPopref_popi_popref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b147816.cmd_7593] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816\b147816.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QuickSort.cmd_7594] +RelativePath=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort\QuickSort.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass031.cmd_7595] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031\castclass031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Default_3.cmd_7596] +RelativePath=GC\API\GC\Collect_Default_3\Collect_Default_3.cmd +WorkingDir=GC\API\GC\Collect_Default_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch01.cmd_7597] +RelativePath=baseservices\exceptions\generics\nested-try-catch01\nested-try-catch01.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated626.cmd_7598] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest626\Generated626\Generated626.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest626\Generated626 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftnsideeffect.cmd_7599] +RelativePath=JIT\Directed\coverage\importer\ldvirtftnsideeffect\ldvirtftnsideeffect.cmd +WorkingDir=JIT\Directed\coverage\importer\ldvirtftnsideeffect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CultureName.cmd_7600] +RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName\CultureName.cmd +WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VSW576621.cmd_7601] +RelativePath=Loader\classloader\methodoverriding\regressions\576621\VSW576621\VSW576621.cmd +WorkingDir=Loader\classloader\methodoverriding\regressions\576621\VSW576621 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_u.cmd_7602] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u\blt_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcall.cmd_7603] +RelativePath=JIT\Methodical\VT\callconv\_relcall\_relcall.cmd +WorkingDir=JIT\Methodical\VT\callconv\_relcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread25.cmd_7604] +RelativePath=baseservices\threading\generics\TimerCallback\thread25\thread25.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ehCodeMotion.cmd_7605] +RelativePath=JIT\Methodical\flowgraph\bug619534\ehCodeMotion\ehCodeMotion.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\ehCodeMotion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DebuggingModesNone.cmd_7606] +RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone\DebuggingModesNone.cmd +WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated173.cmd_7607] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest173\Generated173\Generated173.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest173\Generated173 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveException.cmd_7608] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\RecursiveException\RecursiveException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\RecursiveException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_163.cmd_7609] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_163\GCSimulator_163.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_163 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method016.cmd_7610] +RelativePath=Loader\classloader\generics\GenericMethods\method016\method016.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgu_conv.cmd_7611] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv\_il_dbgu_conv.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1231.cmd_7612] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1231\Generated1231\Generated1231.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1231\Generated1231 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass043.cmd_7613] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043\castclass043.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex6.cmd_7614] +RelativePath=baseservices\threading\waithandle\waitall\waitallex6\waitallex6.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i60.cmd_7615] +RelativePath=JIT\jit64\mcc\interop\mcc_i60\mcc_i60.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i60 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[b33125.cmd_7616] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125\b33125.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit4.cmd_7617] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit4\_opt_relexplicit4.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b60600.cmd_7618] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600\b60600.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated760.cmd_7619] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest760\Generated760\Generated760.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest760\Generated760 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_float_1_d.cmd_7620] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_d\seq_gc_float_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedTryRegionsWithSameOffset2.cmd_7621] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2\nestedTryRegionsWithSameOffset2.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread16.cmd_7622] +RelativePath=baseservices\threading\generics\threadstart\GThread16\GThread16.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2C_r.cmd_7623] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_r\hfa_nf2C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3a_cs_do.cmd_7624] +RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_do\25param3a_cs_do.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated192.cmd_7625] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest192\Generated192\Generated192.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest192\Generated192 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2B_d.cmd_7626] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_d\hfa_nd2B_d.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-06_cs_ro.cmd_7627] +RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_ro\5w1d-06_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intarr_cs_r.cmd_7628] +RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_r\intarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41627.cmd_7629] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627\b41627.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1466.cmd_7630] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1466\Generated1466\Generated1466.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1466\Generated1466 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchinfinally_d.cmd_7631] +RelativePath=JIT\Methodical\eh\interactions\switchinfinally_d\switchinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02_auto_ser.cmd_7632] +RelativePath=Loader\classloader\generics\Layout\General\struct02_auto_ser\struct02_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct02_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test15.cmd_7633] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test15\test15.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16500.cmd_7634] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500\b16500.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesNative.cmd_7635] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative\MethodImplAttributesNative.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call01_small.cmd_7636] +RelativePath=JIT\Methodical\localloc\call\call01_small\call01_small.cmd +WorkingDir=JIT\Methodical\localloc\call\call01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63183.cmd_7637] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183\b63183.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_localloc.cmd_7638] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_localloc\c_localloc.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv607.cmd_7639] +RelativePath=Loader\classloader\generics\Instantiation\Regressions\607\DevDiv607\DevDiv607.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Regressions\607\DevDiv607 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentogen03.cmd_7640] +RelativePath=JIT\Generics\Conversions\Reference\gentogen03\gentogen03.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentogen03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relnative.cmd_7641] +RelativePath=JIT\Methodical\refany\_speed_relnative\_speed_relnative.cmd +WorkingDir=JIT\Methodical\refany\_speed_relnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1171.cmd_7642] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1171\Generated1171\Generated1171.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1171\Generated1171 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetGeneration.cmd_7643] +RelativePath=GC\API\GC\GetGeneration\GetGeneration.cmd +WorkingDir=GC\API\GC\GetGeneration +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[OpCodeOperandType.cmd_7644] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType\OpCodeOperandType.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedcatchnofin_r.cmd_7645] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r\throwincascadedcatchnofin_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_76013.cmd_7646] +RelativePath=JIT\Regression\Dev11\dev11_76013\Dev11_76013\Dev11_76013.cmd +WorkingDir=JIT\Regression\Dev11\dev11_76013\Dev11_76013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatchfinally_ro.cmd_7647] +RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_ro\trythrowcatchfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat2.cmd_7648] +RelativePath=CoreMangLib\cti\system\string\StringConcat2\StringConcat2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq_i.cmd_7649] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i\ceq_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesArglist.cmd_7650] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist\OpCodesArglist.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst005.cmd_7651] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst005\IsInst005.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35351.cmd_7652] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351\b35351.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartNeg1.cmd_7653] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg1\ThreadStartNeg1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow02_mul.cmd_7654] +RelativePath=JIT\jit64\rtchecks\overflow\overflow02_mul\overflow02_mul.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_r.cmd_7655] +RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_r\stringarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64Parse2.cmd_7656] +RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse2\UInt64Parse2.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface018.cmd_7657] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018\castclass-interface018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread16.cmd_7658] +RelativePath=baseservices\threading\generics\syncdelegate\GThread16\GThread16.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToInt16.cmd_7659] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16\UInt64IConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_cs_d.cmd_7660] +RelativePath=JIT\Directed\shift\int32_cs_d\int32_cs_d.cmd +WorkingDir=JIT\Directed\shift\int32_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[607586.cmd_7661] +RelativePath=JIT\jit64\regress\vsw\607586\607586\607586.cmd +WorkingDir=JIT\jit64\regress\vsw\607586\607586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tlstest_il_d.cmd_7662] +RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_d\tlstest_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BBCnt0.cmd_7663] +RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt0\BBCnt0.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test1402.cmd_7664] +RelativePath=Regressions\coreclr\1402\Test1402\Test1402.cmd +WorkingDir=Regressions\coreclr\1402\Test1402 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldc_mulovf.cmd_7665] +RelativePath=JIT\Methodical\int64\unsigned\_relldc_mulovf\_relldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_r8.cmd_7666] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r8\starg_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72687.cmd_7667] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687\b72687.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated230.cmd_7668] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest230\Generated230\Generated230.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest230\Generated230 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ldfld_r.cmd_7669] +RelativePath=JIT\SIMD\Ldfld_r\Ldfld_r.cmd +WorkingDir=JIT\SIMD\Ldfld_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43313.cmd_7670] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313\b43313.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated731.cmd_7671] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest731\Generated731\Generated731.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest731\Generated731 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed_cs_ro.cmd_7672] +RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro\mixed_cs_ro.cmd +WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1021.cmd_7673] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1021\Generated1021\Generated1021.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1021\Generated1021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_212.cmd_7674] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_212\GCSimulator_212.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_212 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_auto.cmd_7675] +RelativePath=Loader\classloader\generics\Layout\General\struct01_auto\struct01_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct01_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method002.cmd_7676] +RelativePath=Loader\classloader\generics\GenericMethods\method002\method002.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_19.cmd_7677] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_19\GCSimulator_19.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dd95372.cmd_7678] +RelativePath=Loader\classloader\generics\regressions\dd95372\dd95372\dd95372.cmd +WorkingDir=Loader\classloader\generics\regressions\dd95372\dd95372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated142.cmd_7679] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest142\Generated142\Generated142.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest142\Generated142 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox003.cmd_7680] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox003\Unbox003.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_111.cmd_7681] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_111\GCSimulator_111.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_111 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueuePeek.cmd_7682] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueuePeek\QueuePeek.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueuePeek +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_426.cmd_7683] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_426\GCSimulator_426.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_426 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh12_dynamic.cmd_7684] +RelativePath=JIT\jit64\localloc\ehverify\eh12_dynamic\eh12_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh12_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub.cmd_7685] +RelativePath=JIT\IL_Conformance\Old\Base\sub\sub.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1377.cmd_7686] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1377\Generated1377\Generated1377.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1377\Generated1377 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OutOfMemoryExceptionCtor3.cmd_7687] +RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3\OutOfMemoryExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomNext1.cmd_7688] +RelativePath=CoreMangLib\cti\system\random\RandomNext1\RandomNext1.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomNext1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToInt16.cmd_7689] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16\SByteIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_50_ro.cmd_7690] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro\throwinfinally_50_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplerethrow_do.cmd_7691] +RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_do\simplerethrow_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs4.cmd_7692] +RelativePath=CoreMangLib\cti\system\math\MathAbs4\MathAbs4.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated601.cmd_7693] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest601\Generated601\Generated601.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest601\Generated601 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated599.cmd_7694] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest599\Generated599\Generated599.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest599\Generated599 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_cs.cmd_7695] +RelativePath=JIT\Methodical\Boxing\morph\_odbgsin_cs\_odbgsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\morph\_odbgsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated677.cmd_7696] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest677\Generated677\Generated677.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest677\Generated677 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated561.cmd_7697] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest561\Generated561\Generated561.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest561\Generated561 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated718.cmd_7698] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest718\Generated718\Generated718.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest718\Generated718 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_r.cmd_7699] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r\staticFieldExpr1_r.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_363.cmd_7700] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_363\GCSimulator_363.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_363 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetCharCount1.cmd_7701] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1\EncodingGetCharCount1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12487.cmd_7702] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487\b12487.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[emptyfinally_d.cmd_7703] +RelativePath=JIT\Methodical\eh\basics\emptyfinally_d\emptyfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\emptyfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatchfinally_do.cmd_7704] +RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_do\trythrowcatchfinally_do.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Rotate.cmd_7705] +RelativePath=JIT\CodeGenBringUpTests\Rotate\Rotate.cmd +WorkingDir=JIT\CodeGenBringUpTests\Rotate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompareOrdinal1.cmd_7706] +RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal1\StringCompareOrdinal1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[13662-simple.cmd_7707] +RelativePath=baseservices\threading\regressions\13662\13662-simple\13662-simple.cmd +WorkingDir=baseservices\threading\regressions\13662\13662-simple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated658.cmd_7708] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest658\Generated658\Generated658.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest658\Generated658 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_r8_i8.cmd_7709] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8\conv_ovf_r8_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_262.cmd_7710] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_262\GCSimulator_262.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_262 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001e.cmd_7711] +RelativePath=Loader\classloader\generics\GenericMethods\method001e\method001e.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001e +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_7712] +RelativePath=JIT\Directed\PREFIX\unaligned\4\localloc\localloc.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_ro.cmd_7713] +RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro\structarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyintrycatchwithleaveintotry_d.cmd_7714] +RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d\tryfinallyintrycatchwithleaveintotry_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess3_cs_d.cmd_7715] +RelativePath=JIT\Directed\StrAccess\straccess3_cs_d\straccess3_cs_d.cmd +WorkingDir=JIT\Directed\StrAccess\straccess3_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgldsfld_mulovf.cmd_7716] +RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf\_speed_dbgldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed2_cs_ro.cmd_7717] +RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_ro\mixed2_cs_ro.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_And_Op_cs_ro.cmd_7718] +RelativePath=JIT\Directed\cmov\Float_And_Op_cs_ro\Float_And_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_i4.cmd_7719] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i4\ret_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_ep_void.cmd_7720] +RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep_void\_il_relrecurse_ep_void.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep_void +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06440c.cmd_7721] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c\b06440c.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated623.cmd_7722] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest623\Generated623\Generated623.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest623\Generated623 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SeekUnroll.cmd_7723] +RelativePath=JIT\Performance\CodeQuality\SIMD\SeekUnroll\SeekUnroll\SeekUnroll.cmd +WorkingDir=JIT\Performance\CodeQuality\SIMD\SeekUnroll\SeekUnroll +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4div_cs_do.cmd_7724] +RelativePath=JIT\Methodical\divrem\div\u4div_cs_do\u4div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\u4div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated500.cmd_7725] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest500\Generated500\Generated500.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest500\Generated500 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf2.cmd_7726] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2\ArrayIndexOf2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0C_d.cmd_7727] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_d\hfa_sd0C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldc_mulovf.cmd_7728] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf\_il_rels_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeMakePointerType.cmd_7729] +RelativePath=CoreMangLib\cti\system\type\TypeMakePointerType\TypeMakePointerType.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeMakePointerType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_244.cmd_7730] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_244\GCSimulator_244.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_244 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcatchfault.cmd_7731] +RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault\_il_relcatchfault.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_2.cmd_7732] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2\OpCodesLdc_I4_2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1183.cmd_7733] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1183\Generated1183\Generated1183.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1183\Generated1183 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroinit_il_d.cmd_7734] +RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_d\zeroinit_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstinterface_d.cmd_7735] +RelativePath=JIT\Directed\nullabletypes\isinstinterface_d\isinstinterface_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstinterface_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrEquals.cmd_7736] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrEquals\IntPtrEquals.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31732.cmd_7737] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732\b31732.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[br.cmd_7738] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\br\br.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\br +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_370.cmd_7739] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_370\GCSimulator_370.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_370 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingWebName.cmd_7740] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingWebName\EncodingWebName.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingWebName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase3_Nested_I.cmd_7741] +RelativePath=Loader\classloader\InterfaceFolding\TestCase3_Nested_I\TestCase3_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase3_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SecurityExceptionCtor2.cmd_7742] +RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2\SecurityExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_175.cmd_7743] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_175\GCSimulator_175.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_175 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch07.cmd_7744] +RelativePath=baseservices\exceptions\generics\try-catch07\try-catch07.cmd +WorkingDir=baseservices\exceptions\generics\try-catch07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_u2.cmd_7745] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2\mul_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfinally_jmpind.cmd_7746] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind\_il_dbgcatchfinally_jmpind.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcalli.cmd_7747] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgcalli\_il_dbgcalli.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgcalli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesInternalCall.cmd_7748] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall\MethodImplAttributesInternalCall.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_18.cmd_7749] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_18\ConvertToInt64_18.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Regression_Dev10_624201.cmd_7750] +RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201\Regression_Dev10_624201.cmd +WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_i1.cmd_7751] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1\ldc_sub_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstraintsAndInheritance.cmd_7752] +RelativePath=Loader\classloader\generics\Misc\ConstraintsAndInheritance\ConstraintsAndInheritance.cmd +WorkingDir=Loader\classloader\generics\Misc\ConstraintsAndInheritance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex5a.cmd_7753] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex5a\waitanyex5a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex5a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[R3Trasher1.cmd_7754] +RelativePath=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1\R3Trasher1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1E_d.cmd_7755] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_d\hfa_sf1E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26732.cmd_7756] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732\b26732.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16049.cmd_7757] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049\b16049.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionCopyTo.cmd_7758] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo\ICollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineTok.cmd_7759] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok\OperandTypeInlineTok.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf.cmd_7760] +RelativePath=JIT\IL_Conformance\Old\Base\conv_ovf\conv_ovf.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\conv_ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadMatrixMul_o.cmd_7761] +RelativePath=JIT\jit64\opt\rngchk\BadMatrixMul_o\BadMatrixMul_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\BadMatrixMul_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_I2.cmd_7762] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2\OpCodesStelem_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1253.cmd_7763] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1253\Generated1253\Generated1253.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1253\Generated1253 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddInt_3.cmd_7764] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_3\InterlockedAddInt_3.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch07.cmd_7765] +RelativePath=baseservices\exceptions\generics\nested-try-catch07\nested-try-catch07.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompare15.cmd_7766] +RelativePath=CoreMangLib\cti\system\string\StringCompare15\StringCompare15.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompare15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharMaxValue.cmd_7767] +RelativePath=CoreMangLib\cti\system\char\CharMaxValue\CharMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\char\CharMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1039.cmd_7768] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1039\Generated1039\Generated1039.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1039\Generated1039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcastclass_ldarg.cmd_7769] +RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldarg\_relcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tostring_d.cmd_7770] +RelativePath=JIT\Directed\nullabletypes\tostring_d\tostring_d.cmd +WorkingDir=JIT\Directed\nullabletypes\tostring_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread13.cmd_7771] +RelativePath=baseservices\threading\generics\TimerCallback\thread13\thread13.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToType.cmd_7772] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToType\ByteIConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgcastclass_ldloc.cmd_7773] +RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc\_speed_dbgcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1203.cmd_7774] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1203\Generated1203\Generated1203.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1203\Generated1203 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_ro.cmd_7775] +RelativePath=JIT\Directed\shift\int32_ro\int32_ro.cmd +WorkingDir=JIT\Directed\shift\int32_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated887.cmd_7776] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest887\Generated887\Generated887.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest887\Generated887 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_197.cmd_7777] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_197\GCSimulator_197.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02.cmd_7778] +RelativePath=JIT\Generics\Instantiation\Classes\class02\class02.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\class02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgsin_il_cs.cmd_7779] +RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs\_odbgsin_il_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1023.cmd_7780] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1023\Generated1023\Generated1023.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1023\Generated1023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1098.cmd_7781] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1098\Generated1098\Generated1098.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1098\Generated1098 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAccessRead.cmd_7782] +RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessRead\FileAccessRead.cmd +WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessRead +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple.cmd_7783] +RelativePath=JIT\opt\Devirtualization\simple\simple.cmd +WorkingDir=JIT\opt\Devirtualization\simple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[10w5d_cs_do.cmd_7784] +RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_do\10w5d_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b03995.cmd_7785] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995\b03995.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1114.cmd_7786] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1114\Generated1114\Generated1114.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1114\Generated1114 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringcreator.cmd_7787] +RelativePath=GC\Scenarios\StringCreator\stringcreator\stringcreator.cmd +WorkingDir=GC\Scenarios\StringCreator\stringcreator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter004.cmd_7788] +RelativePath=baseservices\exceptions\generics\TypeParameter004\TypeParameter004.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[spectralnorm.cmd_7789] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm\spectralnorm.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySetValue1.cmd_7790] +RelativePath=CoreMangLib\cti\system\array\ArraySetValue1\ArraySetValue1.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0G_r.cmd_7791] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_r\hfa_nf0G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Switch.cmd_7792] +RelativePath=JIT\CodeGenBringUpTests\Switch\Switch.cmd +WorkingDir=JIT\CodeGenBringUpTests\Switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate004.cmd_7793] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate004\Delegate004.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddThresholdTest.cmd_7794] +RelativePath=GC\API\GC\AddThresholdTest\AddThresholdTest.cmd +WorkingDir=GC\API\GC\AddThresholdTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_f4.cmd_7795] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4\_opt_dbgrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocLarge.cmd_7796] +RelativePath=JIT\CodeGenBringUpTests\LocallocLarge\LocallocLarge.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocLarge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_11333.cmd_7797] +RelativePath=Loader\classloader\regressions\dev11_11333\dev11_11333\dev11_11333.cmd +WorkingDir=Loader\classloader\regressions\dev11_11333\dev11_11333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcastclass_ldlen.cmd_7798] +RelativePath=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen\_il_dbgcastclass_ldlen.cmd +WorkingDir=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1208.cmd_7799] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1208\Generated1208\Generated1208.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1208\Generated1208 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b58689.cmd_7800] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689\b58689.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface05.cmd_7801] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface05\MultipleInterface05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4rem_cs_d.cmd_7802] +RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_d\u4rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated126.cmd_7803] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest126\Generated126\Generated126.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest126\Generated126 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47610.cmd_7804] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610\b47610.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92713.cmd_7805] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713\b92713.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated957.cmd_7806] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest957\Generated957\Generated957.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest957\Generated957 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39217.cmd_7807] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217\b39217.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_array.cmd_7808] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_array\_il_reldeep_array.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNdiv_cs_ro.cmd_7809] +RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_ro\r4NaNdiv_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit6.cmd_7810] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit6\_dbgexplicit6.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[severalnesteddeadehregions_r.cmd_7811] +RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r\severalnesteddeadehregions_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNadd_cs_do.cmd_7812] +RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_do\r8NaNadd_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_d.cmd_7813] +RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d\doublearr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated839.cmd_7814] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest839\Generated839\Generated839.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest839\Generated839 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lim_001.cmd_7815] +RelativePath=JIT\jit64\opt\lim\lim_001\lim_001.cmd +WorkingDir=JIT\jit64\opt\lim\lim_001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitinfinally.cmd_7816] +RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally\nonlocalexitinfinally.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59320.cmd_7817] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320\b59320.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedfinallycall_r.cmd_7818] +RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_r\nestedfinallycall_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatch_ro.cmd_7819] +RelativePath=JIT\Methodical\eh\basics\trycatch_ro\trycatch_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_i8.cmd_7820] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i8\ldarg_s_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interior_pointer.cmd_7821] +RelativePath=JIT\jit64\regress\ndpw\21015\interior_pointer\interior_pointer.cmd +WorkingDir=JIT\jit64\regress\ndpw\21015\interior_pointer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Adams.cmd_7822] +RelativePath=JIT\Performance\CodeQuality\BenchF\Adams\Adams\Adams.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Adams\Adams +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesPrivateScope.cmd_7823] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope\MethodAttributesPrivateScope.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b76511.cmd_7824] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511\b76511.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatOvfToInt2_r.cmd_7825] +RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_r\FloatOvfToInt2_r.cmd +WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_float_1_d.cmd_7826] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_d\expl_gc_float_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArgumentExceptionCtor1.cmd_7827] +RelativePath=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1\ArgumentExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_box_f8.cmd_7828] +RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8\_il_dbgrefarg_box_f8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind04_dynamic.cmd_7829] +RelativePath=JIT\jit64\localloc\unwind\unwind04_dynamic\unwind04_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind04_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgthrow.cmd_7830] +RelativePath=JIT\Methodical\casts\SEH\_dbgthrow\_dbgthrow.cmd +WorkingDir=JIT\Methodical\casts\SEH\_dbgthrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated141.cmd_7831] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest141\Generated141\Generated141.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest141\Generated141 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null010.cmd_7832] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010\box-unbox-null010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_f8.cmd_7833] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f8\_il_relrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEnumeratorReset.cmd_7834] +RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset\CharEnumeratorReset.cmd +WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics023.cmd_7835] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023\castclass-generics023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassinterface_d.cmd_7836] +RelativePath=JIT\Directed\nullabletypes\castclassinterface_d\castclassinterface_d.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassinterface_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPushr8.cmd_7837] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8\StackBehaviourPushr8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated49.cmd_7838] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest49\Generated49\Generated49.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest49\Generated49 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress2_r.cmd_7839] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_r\CgStress2_r.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpobj.cmd_7840] +RelativePath=JIT\Directed\PREFIX\unaligned\4\cpobj\cpobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\cpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001c.cmd_7841] +RelativePath=Loader\classloader\generics\GenericMethods\method001c\method001c.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNrem_cs_d.cmd_7842] +RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_d\r8NaNrem_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6413.cmd_7843] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6413\ConvertToUInt6413.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6413 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedStruct04.cmd_7844] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedStruct04\NestedStruct04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedStruct04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToDouble.cmd_7845] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble\UInt64IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovfldiv2_il_r.cmd_7846] +RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_r\ovfldiv2_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase2_Nested_J.cmd_7847] +RelativePath=Loader\classloader\InterfaceFolding\TestCase2_Nested_J\TestCase2_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase2_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RankExceptionCtor3.cmd_7848] +RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor3\RankExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b17023.cmd_7849] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023\b17023.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess1_cs_r.cmd_7850] +RelativePath=JIT\Directed\StrAccess\straccess1_cs_r\straccess1_cs_r.cmd +WorkingDir=JIT\Directed\StrAccess\straccess1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_404.cmd_7851] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_404\GCSimulator_404.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_404 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1A_r.cmd_7852] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_r\hfa_sf1A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse_cmpxchg.cmd_7853] +RelativePath=JIT\Directed\intrinsic\interlocked\cse_cmpxchg\cse_cmpxchg.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\cse_cmpxchg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread12.cmd_7854] +RelativePath=baseservices\threading\generics\TimerCallback\thread12\thread12.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b62892.cmd_7855] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892\b62892.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gc-pinned-code-motion.cmd_7856] +RelativePath=JIT\jit64\gc\misc\gc-pinned-code-motion\gc-pinned-code-motion.cmd +WorkingDir=JIT\jit64\gc\misc\gc-pinned-code-motion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TargetParameterCountExceptionCtor1.cmd_7857] +RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1\TargetParameterCountExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_10.cmd_7858] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_10\ConvertToInt16_10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanMinValue.cmd_7859] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMinValue\TimeSpanMinValue.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_7860] +RelativePath=JIT\jit64\regress\phoenix\62322\test\test.cmd +WorkingDir=JIT\jit64\regress\phoenix\62322\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05773.cmd_7861] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773\b05773.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[csharptester.cmd_7862] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester\csharptester.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i81.cmd_7863] +RelativePath=JIT\jit64\mcc\interop\mcc_i81\mcc_i81.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i81 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated273.cmd_7864] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest273\Generated273\Generated273.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest273\Generated273 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyinsidecatch_r.cmd_7865] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r\rethrowinfinallyinsidecatch_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox040.cmd_7866] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040\box-unbox040.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesUnmanaged.cmd_7867] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged\MethodImplAttributesUnmanaged.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated744.cmd_7868] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest744\Generated744\Generated744.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest744\Generated744 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldsshrstsfld_il_r.cmd_7869] +RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r\ldsshrstsfld_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToDouble.cmd_7870] +RelativePath=CoreMangLib\cti\system\single\SingleToDouble\SingleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1401.cmd_7871] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1401\Generated1401\Generated1401.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1401\Generated1401 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82247.cmd_7872] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247\b82247.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated699.cmd_7873] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest699\Generated699\Generated699.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest699\Generated699 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToDecimal.cmd_7874] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal\BooleanIConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49778.cmd_7875] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778\b49778.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_7876] +RelativePath=JIT\jit64\regress\vsw\541067\test1\test1.cmd +WorkingDir=JIT\jit64\regress\vsw\541067\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar14.cmd_7877] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar14\ConvertToChar14.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1020.cmd_7878] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1020\Generated1020\Generated1020.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1020\Generated1020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[osrAddovershot.cmd_7879] +RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot\osrAddovershot.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrotarg_objref.cmd_7880] +RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref\_opt_dbgrotarg_objref.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_c.cmd_7881] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_c\_il_relrefloc_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPNeg.cmd_7882] +RelativePath=JIT\CodeGenBringUpTests\FPNeg\FPNeg.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPNeg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_7883] +RelativePath=JIT\jit64\regress\vsw\552940\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\552940\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b21220.cmd_7884] +RelativePath=JIT\jit64\regress\ndpw\21220\b21220\b21220.cmd +WorkingDir=JIT\jit64\regress\ndpw\21220\b21220 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[_speed_dbglcs_gcref.cmd_7885] +RelativePath=JIT\Methodical\VT\port\_speed_dbglcs_gcref\_speed_dbglcs_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31745.cmd_7886] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745\b31745.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[dd52.cmd_7887] +RelativePath=Loader\classloader\regressions\dd52\dd52\dd52.cmd +WorkingDir=Loader\classloader\regressions\dd52\dd52 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated463.cmd_7888] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest463\Generated463\Generated463.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest463\Generated463 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbghan3.cmd_7889] +RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3\_speed_dbghan3.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated444.cmd_7890] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest444\Generated444\Generated444.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest444\Generated444 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02.cmd_7891] +RelativePath=JIT\Generics\Typeof\class02\class02.cmd +WorkingDir=JIT\Generics\Typeof\class02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface01.cmd_7892] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface01\NestedInterface01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToBoolean.cmd_7893] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean\Int32IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59949.cmd_7894] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949\b59949.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1_cs_do.cmd_7895] +RelativePath=JIT\Methodical\cctor\simple\precise1_cs_do\precise1_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_408.cmd_7896] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_408\GCSimulator_408.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_408 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplerethrow_ro.cmd_7897] +RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_ro\simplerethrow_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_185.cmd_7898] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_185\GCSimulator_185.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_185 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_r.cmd_7899] +RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_r\jaggedarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1012.cmd_7900] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1012\Generated1012\Generated1012.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1012\Generated1012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Nesting.cmd_7901] +RelativePath=JIT\Directed\FaultHandlers\Nesting\Nesting\Nesting.cmd +WorkingDir=JIT\Directed\FaultHandlers\Nesting\Nesting +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_428.cmd_7902] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_428\GCSimulator_428.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_428 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i10.cmd_7903] +RelativePath=JIT\jit64\mcc\interop\mcc_i10\mcc_i10.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[CharIsDigit1.cmd_7904] +RelativePath=CoreMangLib\cti\system\char\CharIsDigit1\CharIsDigit1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsDigit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localvarincatch_r.cmd_7905] +RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_r\localvarincatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12274.cmd_7906] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274\b12274.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53980.cmd_7907] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980\b53980.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class03.cmd_7908] +RelativePath=JIT\Generics\Instantiation\Classes\class03\class03.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\class03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated97.cmd_7909] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest97\Generated97\Generated97.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest97\Generated97 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSymbol1.cmd_7910] +RelativePath=CoreMangLib\cti\system\char\CharIsSymbol1\CharIsSymbol1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSymbol1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try2_d.cmd_7911] +RelativePath=JIT\Directed\leave\try2_d\try2_d.cmd +WorkingDir=JIT\Directed\leave\try2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_I1.cmd_7912] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1\OpCodesStind_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_i4.cmd_7913] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4\sub_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallyincatchtry_r.cmd_7914] +RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r\tryfinallyincatchtry_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeFieldHandleEquals.cmd_7915] +RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals\RuntimeFieldHandleEquals.cmd +WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIndexOf1.cmd_7916] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1\ListIndexOf1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass013.cmd_7917] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013\castclass013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToSingle.cmd_7918] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle\ByteIConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgobj.cmd_7919] +RelativePath=JIT\Methodical\Invoke\implicit\_dbgobj\_dbgobj.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_dbgobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesAnsiClass.cmd_7920] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass\TypeAttributesAnsiClass.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartOperations.cmd_7921] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations\ThreadStartOperations.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relselfref.cmd_7922] +RelativePath=JIT\Methodical\Arrays\misc\_relselfref\_relselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_relselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_i4.cmd_7923] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4\ldarga_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeCtor2.cmd_7924] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2\MarshalAsAttributeCtor2.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_142.cmd_7925] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_142\GCSimulator_142.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_142 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Simple2.cmd_7926] +RelativePath=JIT\Directed\Arrays\Simple2\Simple2.cmd +WorkingDir=JIT\Directed\Arrays\Simple2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b415164.cmd_7927] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164\b415164.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72422.cmd_7928] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422\b72422.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw433497.cmd_7929] +RelativePath=Loader\classloader\generics\regressions\433497\vsw433497\vsw433497.cmd +WorkingDir=Loader\classloader\generics\regressions\433497\vsw433497 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyValuePairctor.cmd_7930] +RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor\KeyValuePairctor.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2a_cs_ro.cmd_7931] +RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_ro\25param2a_cs_ro.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_ro.cmd_7932] +RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_ro\classarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ToLower.cmd_7933] +RelativePath=Regressions\coreclr\0308\ToLower\ToLower.cmd +WorkingDir=Regressions\coreclr\0308\ToLower +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_149.cmd_7934] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_149\GCSimulator_149.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_149 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimal_cs_d.cmd_7935] +RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_d\decimal_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1077.cmd_7936] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1077\Generated1077\Generated1077.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1077\Generated1077 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ldfld_ro.cmd_7937] +RelativePath=JIT\SIMD\Ldfld_ro\Ldfld_ro.cmd +WorkingDir=JIT\SIMD\Ldfld_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40347.cmd_7938] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347\b40347.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-5.cmd_7939] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5\_speed_dbgunsafe-5.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25paramMixed_il_d.cmd_7940] +RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_d\25paramMixed_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07947.cmd_7941] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947\b07947.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null037.cmd_7942] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037\box-unbox-null037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i73.cmd_7943] +RelativePath=JIT\jit64\mcc\interop\mcc_i73\mcc_i73.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i73 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[Foo.cmd_7944] +RelativePath=Loader\classloader\regressions\139056\Foo\Foo.cmd +WorkingDir=Loader\classloader\regressions\139056\Foo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1198.cmd_7945] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1198\Generated1198\Generated1198.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1198\Generated1198 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface014.cmd_7946] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014\box-unbox-interface014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall.cmd_7947] +RelativePath=JIT\IL_Conformance\Old\Base\tailcall\tailcall.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\tailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02a_auto_ser.cmd_7948] +RelativePath=Loader\classloader\generics\Layout\General\Base02a_auto_ser\Base02a_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02a_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14426.cmd_7949] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426\b14426.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_4115.cmd_7950] +RelativePath=JIT\Regression\JitBlue\GitHub_4115\GitHub_4115\GitHub_4115.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_4115\GitHub_4115 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated548.cmd_7951] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest548\Generated548\Generated548.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest548\Generated548 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesStringFormatMask.cmd_7952] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask\TypeAttributesStringFormatMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4.cmd_7953] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4\OpCodesLdc_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1048.cmd_7954] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1048\Generated1048\Generated1048.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1048\Generated1048 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59647.cmd_7955] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647\b59647.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString9.cmd_7956] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString9\ConvertToString9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6411.cmd_7957] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6411\ConvertToUInt6411.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-06_cs_do.cmd_7958] +RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_do\5w1d-06_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventHandlerInvoke.cmd_7959] +RelativePath=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke\EventHandlerInvoke.cmd +WorkingDir=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated492.cmd_7960] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest492\Generated492\Generated492.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest492\Generated492 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11131.cmd_7961] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131\b11131.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilstind.cmd_7962] +RelativePath=JIT\Directed\coverage\importer\volatilstind\volatilstind.cmd +WorkingDir=JIT\Directed\coverage\importer\volatilstind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_147.cmd_7963] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_147\GCSimulator_147.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow0_cs_do.cmd_7964] +RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_do\pow0_cs_do.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Puzzle.cmd_7965] +RelativePath=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle\Puzzle.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldc_mulovf.cmd_7966] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf\_speed_rels_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesPinvokeImpl.cmd_7967] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl\MethodAttributesPinvokeImpl.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70909.cmd_7968] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909\b70909.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated122.cmd_7969] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest122\Generated122\Generated122.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest122\Generated122 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch08.cmd_7970] +RelativePath=baseservices\exceptions\generics\try-catch08\try-catch08.cmd +WorkingDir=baseservices\exceptions\generics\try-catch08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1323.cmd_7971] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1323\Generated1323\Generated1323.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1323\Generated1323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated276.cmd_7972] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest276\Generated276\Generated276.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest276\Generated276 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_dbg.cmd_7973] +RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg\conv_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relgcval_nested.cmd_7974] +RelativePath=JIT\Methodical\tailcall\_il_relgcval_nested\_il_relgcval_nested.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relgcval_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30864.cmd_7975] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864\b30864.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated738.cmd_7976] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest738\Generated738\Generated738.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest738\Generated738 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated707.cmd_7977] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest707\Generated707\Generated707.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest707\Generated707 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit1_do.cmd_7978] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do\tryCatchFinallyThrow_nonlocalexit1_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struc01.cmd_7979] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01\struc01.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[113574.cmd_7980] +RelativePath=JIT\jit64\regress\ddb\113574\113574\113574.cmd +WorkingDir=JIT\jit64\regress\ddb\113574\113574 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16198.cmd_7981] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198\b16198.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleParse2.cmd_7982] +RelativePath=CoreMangLib\cti\system\single\SingleParse2\SingleParse2.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleParse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleGetHashCode.cmd_7983] +RelativePath=CoreMangLib\cti\system\double\DoubleGetHashCode\DoubleGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ActionCtor.cmd_7984] +RelativePath=CoreMangLib\cti\system\action\ActionCtor\ActionCtor.cmd +WorkingDir=CoreMangLib\cti\system\action\ActionCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated590.cmd_7985] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest590\Generated590\Generated590.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest590\Generated590 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39417.cmd_7986] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417\b39417.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass042.cmd_7987] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042\castclass042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandleinvalid.cmd_7988] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandleinvalid\bindhandleinvalid.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandleinvalid +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind06_large.cmd_7989] +RelativePath=JIT\jit64\localloc\unwind\unwind06_large\unwind06_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind06_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated846.cmd_7990] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest846\Generated846\Generated846.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest846\Generated846 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Negative_ExplicitGen.cmd_7991] +RelativePath=Loader\classloader\generics\Layout\Specific\Negative_ExplicitGen\Negative_ExplicitGen.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Negative_ExplicitGen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_407.cmd_7992] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_407\GCSimulator_407.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_407 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgnestval_cs.cmd_7993] +RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_cs\_dbgnestval_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyrecursive_20_do.cmd_7994] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do\throwinfinallyrecursive_20_do.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AboveStackLimit.cmd_7995] +RelativePath=Regressions\common\AboveStackLimit\AboveStackLimit.cmd +WorkingDir=Regressions\common\AboveStackLimit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToDecimal.cmd_7996] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal\UInt16IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray4_cs_r.cmd_7997] +RelativePath=JIT\Methodical\doublearray\dblarray4_cs_r\dblarray4_cs_r.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowincatchnestedinfinally_r.cmd_7998] +RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r\rethrowincatchnestedinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14591.cmd_7999] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591\b14591.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_il_d.cmd_8000] +RelativePath=JIT\Generics\ConstrainedCall\class2_il_d\class2_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated434.cmd_8001] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest434\Generated434\Generated434.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest434\Generated434 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_311.cmd_8002] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_311\GCSimulator_311.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_311 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingCtor2.cmd_8003] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2\UTF8EncodingCtor2.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_passing_struct01.cmd_8004] +RelativePath=JIT\Generics\Parameters\static_passing_struct01\static_passing_struct01.cmd +WorkingDir=JIT\Generics\Parameters\static_passing_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt2_cs_ro.cmd_8005] +RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_ro\vt2_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[implicitDownConv.cmd_8006] +RelativePath=JIT\jit64\opt\cprop\implicitDownConv\implicitDownConv.cmd +WorkingDir=JIT\jit64\opt\cprop\implicitDownConv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated875.cmd_8007] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest875\Generated875\Generated875.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest875\Generated875 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse1_cs_r.cmd_8008] +RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_r\cse1_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated614.cmd_8009] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest614\Generated614\Generated614.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest614\Generated614 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated586.cmd_8010] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest586\Generated586\Generated586.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest586\Generated586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_8011] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\initblk\initblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox005.cmd_8012] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005\box-unbox005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_class01.cmd_8013] +RelativePath=JIT\Generics\Locals\instance_passing_class01\instance_passing_class01.cmd +WorkingDir=JIT\Generics\Locals\instance_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-10-1.cmd_8014] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-10-1\L-2-10-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-10-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated489.cmd_8015] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest489\Generated489\Generated489.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest489\Generated489 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1467.cmd_8016] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1467\Generated1467\Generated1467.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1467\Generated1467 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg4.cmd_8017] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg4\semaphoreopenneg4.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leaveinsameregion_r.cmd_8018] +RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_r\leaveinsameregion_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_I.cmd_8019] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I\OpCodesLdelem_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated929.cmd_8020] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest929\Generated929\Generated929.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest929\Generated929 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface017.cmd_8021] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017\castclass-interface017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineR.cmd_8022] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR\OperandTypeInlineR.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnmanagedType.cmd_8023] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType\UnmanagedType.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueCopyTo.cmd_8024] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo\QueueCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11508.cmd_8025] +RelativePath=JIT\Regression\JitBlue\GitHub_11508\GitHub_11508\GitHub_11508.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11508\GitHub_11508 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_352.cmd_8026] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_352\GCSimulator_352.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_352 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_72.cmd_8027] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_72\GCSimulator_72.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_72 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1177.cmd_8028] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1177\Generated1177\Generated1177.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1177\Generated1177 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret3_3.cmd_8029] +RelativePath=JIT\jit64\gc\misc\structret3_3\structret3_3.cmd +WorkingDir=JIT\jit64\gc\misc\structret3_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase1_Nested_I_Nested_J.cmd_8030] +RelativePath=Loader\classloader\InterfaceFolding\TestCase1_Nested_I_Nested_J\TestCase1_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase1_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1053.cmd_8031] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1053\Generated1053\Generated1053.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1053\Generated1053 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesUnicodeClass.cmd_8032] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass\TypeAttributesUnicodeClass.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_gcref.cmd_8033] +RelativePath=JIT\Methodical\VT\port\_il_relhuge_gcref\_il_relhuge_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_il_relhuge_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3218.cmd_8034] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3218\ConvertToUInt3218.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListset_item.cmd_8035] +RelativePath=CoreMangLib\cti\system\array\ArrayIListset_item\ArrayIListset_item.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListset_item +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeTypeHandleGetHashCode.cmd_8036] +RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode\RuntimeTypeHandleGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value010.cmd_8037] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010\box-unbox-value010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1000.cmd_8038] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1000\Generated1000\Generated1000.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1000\Generated1000 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldtokena.cmd_8039] +RelativePath=JIT\Methodical\ldtoken\_il_relldtokena\_il_relldtokena.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_relldtokena +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66226.cmd_8040] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226\b66226.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16GetHashCode.cmd_8041] +RelativePath=CoreMangLib\cti\system\int16\Int16GetHashCode\Int16GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray3_cs_do.cmd_8042] +RelativePath=JIT\Methodical\doublearray\dblarray3_cs_do\dblarray3_cs_do.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arglist.cmd_8043] +RelativePath=JIT\Directed\PREFIX\volatile\1\arglist\arglist.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\arglist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[5w1d-04_cs_r.cmd_8044] +RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_r\5w1d-04_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32093.cmd_8045] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093\b32093.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeTClass.cmd_8046] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeTClass\ExchangeTClass.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68361.cmd_8047] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361\b68361.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_i4.cmd_8048] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i4\ble_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassinterface_r.cmd_8049] +RelativePath=JIT\Directed\nullabletypes\castclassinterface_r\castclassinterface_r.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassinterface_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueCtor1.cmd_8050] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1\QueueCtor1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated808.cmd_8051] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest808\Generated808\Generated808.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest808\Generated808 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrow.cmd_8052] +RelativePath=JIT\Directed\throwbox\rethrow\rethrow.cmd +WorkingDir=JIT\Directed\throwbox\rethrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1225.cmd_8053] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1225\Generated1225\Generated1225.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1225\Generated1225 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated628.cmd_8054] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest628\Generated628\Generated628.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest628\Generated628 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41063.cmd_8055] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063\b41063.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellongsig.cmd_8056] +RelativePath=JIT\Methodical\refany\_il_rellongsig\_il_rellongsig.cmd +WorkingDir=JIT\Methodical\refany\_il_rellongsig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleMaxValue.cmd_8057] +RelativePath=CoreMangLib\cti\system\single\SingleMaxValue\SingleMaxValue.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleMaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw610378.cmd_8058] +RelativePath=JIT\jit64\regress\vsw\610378\vsw610378\vsw610378.cmd +WorkingDir=JIT\jit64\regress\vsw\610378\vsw610378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Or_Op_cs_d.cmd_8059] +RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_d\Double_Or_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50027.cmd_8060] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027\b50027.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1256.cmd_8061] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1256\Generated1256\Generated1256.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1256\Generated1256 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0A_d.cmd_8062] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_d\hfa_nf0A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_il_d.cmd_8063] +RelativePath=JIT\Generics\ConstrainedCall\class1_il_d\class1_il_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_obj.cmd_8064] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_obj\_il_relcompat_obj.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_obj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated600.cmd_8065] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest600\Generated600\Generated600.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest600\Generated600 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_popr8.cmd_8066] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8\StackBehaviourPopi_popr8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IComparable_GenericCompareTo.cmd_8067] +RelativePath=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo\IComparable_GenericCompareTo.cmd +WorkingDir=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_r.cmd_8068] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_r\arrayexpr2_r.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14324.cmd_8069] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324\b14324.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparisonCurrentCultureIgnoreCase.cmd_8070] +RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase\StringComparisonCurrentCultureIgnoreCase.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[osr001.cmd_8071] +RelativePath=JIT\jit64\opt\osr\osr001\osr001.cmd +WorkingDir=JIT\jit64\opt\osr\osr001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u4div_cs_ro.cmd_8072] +RelativePath=JIT\Methodical\divrem\div\u4div_cs_ro\u4div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\u4div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31912.cmd_8073] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912\b31912.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1492.cmd_8074] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1492\Generated1492\Generated1492.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1492\Generated1492 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_8075] +RelativePath=JIT\Directed\PREFIX\unaligned\4\cpblk\cpblk.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89279.cmd_8076] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279\b89279.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated10.cmd_8077] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest10\Generated10\Generated10.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest10\Generated10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interfaceproperty.cmd_8078] +RelativePath=JIT\opt\Inline\tests\interfaceproperty\interfaceproperty.cmd +WorkingDir=JIT\opt\Inline\tests\interfaceproperty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class2_cs_ro.cmd_8079] +RelativePath=JIT\Generics\ConstrainedCall\class2_cs_ro\class2_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[valuetype_d.cmd_8080] +RelativePath=JIT\Methodical\nonvirtualcall\valuetype_d\valuetype_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNadd_cs_d.cmd_8081] +RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_d\r4NaNadd_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_box.cmd_8082] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box\_il_dbgi_box.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shr.cmd_8083] +RelativePath=JIT\IL_Conformance\Old\Base\shr\shr.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\shr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_cs.cmd_8084] +RelativePath=JIT\Methodical\Boxing\morph\_orelsin_cs\_orelsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\morph\_orelsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method003.cmd_8085] +RelativePath=Loader\classloader\generics\Variance\CoreCLR\Method003\Method003.cmd +WorkingDir=Loader\classloader\generics\Variance\CoreCLR\Method003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Peer_3.cmd_8086] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3\Generic_Test_CSharp_Peer_3.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-11-3.cmd_8087] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-11-3\L-2-11-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-11-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch9.cmd_8088] +RelativePath=JIT\Methodical\switch\switch9\switch9.cmd +WorkingDir=JIT\Methodical\switch\switch9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_i4.cmd_8089] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i4\ldloca_s_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_188.cmd_8090] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_188\GCSimulator_188.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_188 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_i4.cmd_8091] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i4\sub_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgii2.cmd_8092] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii2\_il_dbgii2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatch_do.cmd_8093] +RelativePath=JIT\Methodical\eh\basics\trycatch_do\trycatch_do.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_popi.cmd_8094] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi\StackBehaviourPopref_popi_popi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callstatic.cmd_8095] +RelativePath=JIT\IL_Conformance\Old\objectmodel\callstatic\callstatic.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\callstatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41918.cmd_8096] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918\b41918.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgknight.cmd_8097] +RelativePath=JIT\Methodical\VT\etc\_speed_dbgknight\_speed_dbgknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbgknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullsdarr_il_d.cmd_8098] +RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d\nullsdarr_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfinally_r.cmd_8099] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_r\badcodeafterfinally_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2444;EXCLUDED +HostStyle=0 + +[ldobj.cmd_8100] +RelativePath=JIT\Directed\PREFIX\unaligned\4\ldobj\ldobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\ldobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass006.cmd_8101] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006\castclass006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvirtftn.cmd_8102] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn\_il_dbgvirtftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_small.cmd_8103] +RelativePath=JIT\Methodical\localloc\verify\verify01_small\verify01_small.cmd +WorkingDir=JIT\Methodical\localloc\verify\verify01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4581;EXCLUDED;VERIFY +HostStyle=0 + +[Generated180.cmd_8104] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest180\Generated180\Generated180.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest180\Generated180 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InitObj.cmd_8105] +RelativePath=JIT\CodeGenBringUpTests\InitObj\InitObj.cmd +WorkingDir=JIT\CodeGenBringUpTests\InitObj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldstatic_il_d.cmd_8106] +RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_d\ldfldstatic_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12795.cmd_8107] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795\b12795.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedCompareExchange7.cmd_8108] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7\InterlockedCompareExchange7.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex3.cmd_8109] +RelativePath=baseservices\threading\waithandle\waitall\waitallex3\waitallex3.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgaccum.cmd_8110] +RelativePath=JIT\Methodical\VT\identity\_dbgaccum\_dbgaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_dbgaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b489329.cmd_8111] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329\b489329.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15307.cmd_8112] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307\b15307.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Arrays.cmd_8113] +RelativePath=JIT\opt\perf\doublealign\Arrays\Arrays.cmd +WorkingDir=JIT\opt\perf\doublealign\Arrays +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated118.cmd_8114] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest118\Generated118\Generated118.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest118\Generated118 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14431.cmd_8115] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431\b14431.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4flat_cs_r.cmd_8116] +RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_r\i4flat_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null025.cmd_8117] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025\castclass-null025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51870.cmd_8118] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870\b51870.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPArray.cmd_8119] +RelativePath=JIT\CodeGenBringUpTests\FPArray\FPArray.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Lt1.cmd_8120] +RelativePath=JIT\CodeGenBringUpTests\Lt1\Lt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Lt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40721.cmd_8121] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721\b40721.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_144.cmd_8122] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_144\GCSimulator_144.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_144 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_265.cmd_8123] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_265\GCSimulator_265.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_265 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cprop001_ro.cmd_8124] +RelativePath=JIT\jit64\opt\cprop\cprop001_ro\cprop001_ro.cmd +WorkingDir=JIT\jit64\opt\cprop\cprop001_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt16_2.cmd_8125] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_2\ConvertToInt16_2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgmuldiv.cmd_8126] +RelativePath=JIT\Methodical\int64\unsigned\_dbgmuldiv\_dbgmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullcomparaison_do.cmd_8127] +RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do\nullcomparaison_do.cmd +WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2A_r.cmd_8128] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_r\hfa_sd2A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchsimpletype_d.cmd_8129] +RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_d\trycatchsimpletype_d.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimal_cs_ro.cmd_8130] +RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro\decimal_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CollidedUnwind.cmd_8131] +RelativePath=baseservices\exceptions\unittests\CollidedUnwind\CollidedUnwind.cmd +WorkingDir=baseservices\exceptions\unittests\CollidedUnwind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgaa.cmd_8132] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgaa\_il_dbgaa.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgaa +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1E_r.cmd_8133] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_r\hfa_sd1E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[Generated948.cmd_8134] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest948\Generated948\Generated948.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest948\Generated948 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrotarg_float.cmd_8135] +RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float\_il_dbgrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2a_cs_r.cmd_8136] +RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_r\25param2a_cs_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSingle15.cmd_8137] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle15\ConvertToSingle15.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface008.cmd_8138] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008\box-unbox-interface008.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated44.cmd_8139] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest44\Generated44\Generated44.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest44\Generated44 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghan3_ref.cmd_8140] +RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ref\_il_dbghan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1295.cmd_8141] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1295\Generated1295\Generated1295.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1295\Generated1295 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated271.cmd_8142] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest271\Generated271\Generated271.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest271\Generated271 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesHasDefault.cmd_8143] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault\ParameterAttributesHasDefault.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldsfld_mulovf.cmd_8144] +RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf\_il_relldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Positive008.cmd_8145] +RelativePath=Loader\classloader\generics\Layout\Specific\Positive008\Positive008.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Positive008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated201.cmd_8146] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest201\Generated201\Generated201.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest201\Generated201 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallingConventionsAny.cmd_8147] +RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny\CallingConventionsAny.cmd +WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overldrem_cs_ro.cmd_8148] +RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_ro\overldrem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leakgenthrd.cmd_8149] +RelativePath=GC\Scenarios\LeakGen\leakgenthrd\leakgenthrd.cmd +WorkingDir=GC\Scenarios\LeakGen\leakgenthrd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[castclass003.cmd_8150] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003\castclass003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subbyref_il_d.cmd_8151] +RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_d\subbyref_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwwithhandlerscatchingbase_d.cmd_8152] +RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d\throwwithhandlerscatchingbase_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Pinned.cmd_8153] +RelativePath=GC\API\GCHandle\Pinned\Pinned.cmd +WorkingDir=GC\API\GCHandle\Pinned +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Or1.cmd_8154] +RelativePath=JIT\CodeGenBringUpTests\Or1\Or1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Or1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VolatileTest_op_sub.cmd_8155] +RelativePath=JIT\jit64\opt\cse\VolatileTest_op_sub\VolatileTest_op_sub.cmd +WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array_tests.cmd_8156] +RelativePath=JIT\Directed\PREFIX\volatile\1\array_tests\array_tests.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\array_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_13912.cmd_8157] +RelativePath=JIT\Regression\Dev11\dev11_13912\dev11_13912\dev11_13912.cmd +WorkingDir=JIT\Regression\Dev11\dev11_13912\dev11_13912 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_424.cmd_8158] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_424\GCSimulator_424.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_424 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1407.cmd_8159] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1407\Generated1407\Generated1407.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1407\Generated1407 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange.cmd_8160] +RelativePath=JIT\jit64\regress\vsw\534486\exchange\exchange.cmd +WorkingDir=JIT\jit64\regress\vsw\534486\exchange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeDouble.cmd_8161] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDouble\TypeCodeDouble.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_367.cmd_8162] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_367\GCSimulator_367.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_367 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString5.cmd_8163] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString5\ConvertToString5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_virt.cmd_8164] +RelativePath=JIT\Methodical\tailcall\_il_reltest_virt\_il_reltest_virt.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_virt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesVisibilityMask.cmd_8165] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask\TypeAttributesVisibilityMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54006.cmd_8166] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006\b54006.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test-tls.cmd_8167] +RelativePath=JIT\Directed\tls\test-tls\test-tls.cmd +WorkingDir=JIT\Directed\tls\test-tls +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2441;EXCLUDED;TLS +HostStyle=0 + +[GitHub_9945.cmd_8168] +RelativePath=JIT\opt\Devirtualization\GitHub_9945\GitHub_9945.cmd +WorkingDir=JIT\opt\Devirtualization\GitHub_9945 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-01_cs_r.cmd_8169] +RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_r\200w1d-01_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalParse.cmd_8170] +RelativePath=CoreMangLib\cti\system\decimal\DecimalParse\DecimalParse.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveInheritance.cmd_8171] +RelativePath=Loader\classloader\generics\Instantiation\Recursion\RecursiveInheritance\RecursiveInheritance.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Recursion\RecursiveInheritance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[invocation_r.cmd_8172] +RelativePath=JIT\Directed\nullabletypes\invocation_r\invocation_r.cmd +WorkingDir=JIT\Directed\nullabletypes\invocation_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesShr_Un.cmd_8173] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un\OpCodesShr_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1227.cmd_8174] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1227\Generated1227\Generated1227.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1227\Generated1227 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidProgramExceptionctor1.cmd_8175] +RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1\InvalidProgramExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200176.cmd_8176] +RelativePath=baseservices\threading\regressions\whidbey_m3\200176\200176.cmd +WorkingDir=baseservices\threading\regressions\whidbey_m3\200176 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit1.cmd_8177] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit1\_opt_dbgexplicit1.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated282.cmd_8178] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest282\Generated282\Generated282.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest282\Generated282 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryClear.cmd_8179] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear\IDictionaryClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsval.cmd_8180] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsval\_speed_dbglcsval.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbghan2.cmd_8181] +RelativePath=JIT\Methodical\VT\etc\_dbghan2\_dbghan2.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbghan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AsgOr1.cmd_8182] +RelativePath=JIT\CodeGenBringUpTests\AsgOr1\AsgOr1.cmd +WorkingDir=JIT\CodeGenBringUpTests\AsgOr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71003.cmd_8183] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003\b71003.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_i4.cmd_8184] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i4\clt_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToInt32.cmd_8185] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32\ByteIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeSByte.cmd_8186] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSByte\TypeCodeSByte.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_I.cmd_8187] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I\OpCodesStind_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-6-3.cmd_8188] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-6-3\L-2-6-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-6-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartCast.cmd_8189] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast\ThreadStartCast.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DisableTransparencyEnforcement.cmd_8190] +RelativePath=Regressions\common\DisableTransparencyEnforcement\DisableTransparencyEnforcement.cmd +WorkingDir=Regressions\common\DisableTransparencyEnforcement +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetCharCount.cmd_8191] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount\EncodingGetCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1101.cmd_8192] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1101\Generated1101\Generated1101.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1101\Generated1101 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_i4.cmd_8193] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i4\_relrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellcs_long.cmd_8194] +RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_long\_il_rellcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am02waitoneneg.cmd_8195] +RelativePath=baseservices\threading\mutex\abandonedmutex\am02waitoneneg\am02waitoneneg.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am02waitoneneg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27883.cmd_8196] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883\b27883.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrcpy.cmd_8197] +RelativePath=GC\Scenarios\Boxing\arrcpy\arrcpy.cmd +WorkingDir=GC\Scenarios\Boxing\arrcpy +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relconv_i8_i.cmd_8198] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i\_il_relconv_i8_i.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringRemove1.cmd_8199] +RelativePath=CoreMangLib\cti\system\string\StringRemove1\StringRemove1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringRemove1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1307.cmd_8200] +RelativePath=Regressions\coreclr\1307\test1307\test1307.cmd +WorkingDir=Regressions\coreclr\1307\test1307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_7.cmd_8201] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_7\ConvertToInt32_7.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_8202] +RelativePath=Loader\classloader\regressions\101904\test\test.cmd +WorkingDir=Loader\classloader\regressions\101904\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CastClass004.cmd_8203] +RelativePath=Loader\classloader\generics\Variance\IL\CastClass004\CastClass004.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\CastClass004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80764.cmd_8204] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764\b80764.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString20.cmd_8205] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString20\ConvertToString20.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exec3.cmd_8206] +RelativePath=Loader\classloader\nesting\coreclr\exec3\exec3.cmd +WorkingDir=Loader\classloader\nesting\coreclr\exec3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleSetHandle_PSC.cmd_8207] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC\SafeHandleSetHandle_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leakwheel.cmd_8208] +RelativePath=GC\Scenarios\LeakWheel\leakwheel\leakwheel.cmd +WorkingDir=GC\Scenarios\LeakWheel\leakwheel +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_280.cmd_8209] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_280\GCSimulator_280.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_280 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8flat_cs_ro.cmd_8210] +RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_ro\i8flat_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_int_1_r.cmd_8211] +RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_r\seq_int_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ind1.cmd_8212] +RelativePath=JIT\CodeGenBringUpTests\Ind1\Ind1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Ind1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldmul_cs_d.cmd_8213] +RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_d\lclfldmul_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1G_r.cmd_8214] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_r\hfa_nd1G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_8215] +RelativePath=JIT\Methodical\inlining\boolean\test\test.cmd +WorkingDir=JIT\Methodical\inlining\boolean\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b20913.cmd_8216] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913\b20913.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DMath.cmd_8217] +RelativePath=JIT\Performance\CodeQuality\BenchF\DMath\DMath\DMath.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\DMath\DMath +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToUInt64.cmd_8218] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64\Int16IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Pi.cmd_8219] +RelativePath=JIT\Performance\CodeQuality\BenchI\Pi\Pi\Pi.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Pi\Pi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_r8.cmd_8220] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8\ldloc_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcastclass_newobj.cmd_8221] +RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj\_speed_relcastclass_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowwithhandlerscatchingbase_do.cmd_8222] +RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do\rethrowwithhandlerscatchingbase_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetChars3.cmd_8223] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars3\EncodingGetChars3.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated254.cmd_8224] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest254\Generated254\Generated254.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest254\Generated254 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30868.cmd_8225] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868\b30868.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesCkfinite.cmd_8226] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite\OpCodesCkfinite.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43378.cmd_8227] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378\b43378.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0A_d.cmd_8228] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_d\hfa_sd0A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_r_try.cmd_8229] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_try\staticFieldExpr1_r_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated853.cmd_8230] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest853\Generated853\Generated853.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest853\Generated853 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_59.cmd_8231] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_59\GCSimulator_59.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_59 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Or_Op_cs_r.cmd_8232] +RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_r\Float_Or_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingConvert2.cmd_8233] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert2\EncodingConvert2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sustainedlowlatency_race_reverse.cmd_8234] +RelativePath=GC\Features\SustainedLowLatency\sustainedlowlatency_race_reverse\sustainedlowlatency_race_reverse.cmd +WorkingDir=GC\Features\SustainedLowLatency\sustainedlowlatency_race_reverse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeEnum.cmd_8235] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeEnum\FileModeEnum.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1417.cmd_8236] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1417\Generated1417\Generated1417.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1417\Generated1417 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsControl1.cmd_8237] +RelativePath=CoreMangLib\cti\system\char\CharIsControl1\CharIsControl1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsControl1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated96.cmd_8238] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest96\Generated96\Generated96.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest96\Generated96 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08172.cmd_8239] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172\b08172.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_168.cmd_8240] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_168\GCSimulator_168.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_168 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtailjump_il.cmd_8241] +RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_il\_dbgtailjump_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassvaluetype_ro.cmd_8242] +RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_ro\castclassvaluetype_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCtor1.cmd_8243] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor1\TimeSpanCtor1.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf.cmd_8244] +RelativePath=JIT\IL_Conformance\Old\Base\sub_ovf\sub_ovf.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\sub_ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test489437.cmd_8245] +RelativePath=baseservices\threading\regressions\devdiv489437\test489437\test489437.cmd +WorkingDir=baseservices\threading\regressions\devdiv489437\test489437 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b518440.cmd_8246] +RelativePath=JIT\Methodical\Coverage\b518440\b518440.cmd +WorkingDir=JIT\Methodical\Coverage\b518440 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase3_Nested_I_Nested_J.cmd_8247] +RelativePath=Loader\classloader\InterfaceFolding\TestCase3_Nested_I_Nested_J\TestCase3_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase3_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics038.cmd_8248] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038\castclass-generics038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend9.cmd_8249] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9\StringBuilderAppend9.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh08_dynamic.cmd_8250] +RelativePath=JIT\jit64\localloc\ehverify\eh08_dynamic\eh08_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh08_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_226.cmd_8251] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_226\GCSimulator_226.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_226 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread15.cmd_8252] +RelativePath=baseservices\threading\generics\threadstart\GThread15\GThread15.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse2_cs_do.cmd_8253] +RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_do\cse2_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rangecheckinfinally_do.cmd_8254] +RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_do\rangecheckinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44946.cmd_8255] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946\b44946.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_static.cmd_8256] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static\struct01_static.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend6.cmd_8257] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6\StringBuilderAppend6.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u4_i4.cmd_8258] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4\conv_ovf_u4_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated588.cmd_8259] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest588\Generated588\Generated588.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest588\Generated588 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2A_d.cmd_8260] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_d\hfa_sd2A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass019.cmd_8261] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019\castclass019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeGetHashCode.cmd_8262] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode\OpCodeGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPSub.cmd_8263] +RelativePath=JIT\CodeGenBringUpTests\FPSub\FPSub.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPSub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated525.cmd_8264] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest525\Generated525\Generated525.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest525\Generated525 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfault_r.cmd_8265] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_r\badcodeafterfault_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51469.cmd_8266] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469\b51469.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedTryRegionsWithSameOffset2_o.cmd_8267] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o\nestedTryRegionsWithSameOffset2_o.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1487.cmd_8268] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1487\Generated1487\Generated1487.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1487\Generated1487 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor5.cmd_8269] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5\StringBuilderctor5.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_qsort1.cmd_8270] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1\_il_relu_qsort1.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated326.cmd_8271] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest326\Generated326\Generated326.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest326\Generated326 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_R4.cmd_8272] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4\OpCodesConv_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayTypeMismatchExceptionctor2.cmd_8273] +RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2\ArrayTypeMismatchExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep_inst.cmd_8274] +RelativePath=JIT\Methodical\tailcall\_il_reldeep_inst\_il_reldeep_inst.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reldeep_inst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_struct_static02.cmd_8275] +RelativePath=JIT\Generics\Exceptions\specific_struct_static02\specific_struct_static02.cmd +WorkingDir=JIT\Generics\Exceptions\specific_struct_static02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw515341.cmd_8276] +RelativePath=Loader\classloader\generics\regressions\515341\vsw515341\vsw515341.cmd +WorkingDir=Loader\classloader\generics\regressions\515341\vsw515341 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b176032.cmd_8277] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032\b176032.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated726.cmd_8278] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest726\Generated726\Generated726.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest726\Generated726 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-03_cs_r.cmd_8279] +RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_r\5w1d-03_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionEnumeratorIEnumeratorCurrent.cmd_8280] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent\KeyCollectionEnumeratorIEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated553.cmd_8281] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest553\Generated553\Generated553.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest553\Generated553 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_167.cmd_8282] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_167\GCSimulator_167.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_167 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated283.cmd_8283] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest283\Generated283\Generated283.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest283\Generated283 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated519.cmd_8284] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest519\Generated519\Generated519.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest519\Generated519 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting4.cmd_8285] +RelativePath=Loader\classloader\nesting\Tests\nesting4\nesting4.cmd +WorkingDir=Loader\classloader\nesting\Tests\nesting4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1383.cmd_8286] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1383\Generated1383\Generated1383.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1383\Generated1383 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68634.cmd_8287] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634\b68634.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroinit01_large.cmd_8288] +RelativePath=JIT\jit64\localloc\zeroinit\zeroinit01_large\zeroinit01_large.cmd +WorkingDir=JIT\jit64\localloc\zeroinit\zeroinit01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_337.cmd_8289] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_337\GCSimulator_337.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_337 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1175.cmd_8290] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1175\Generated1175\Generated1175.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1175\Generated1175 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_double_1_d.cmd_8291] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_d\seq_gc_double_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr4d_il_d.cmd_8292] +RelativePath=JIT\Methodical\FPtrunc\convr4d_il_d\convr4d_il_d.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49435.cmd_8293] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435\b49435.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated104.cmd_8294] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest104\Generated104\Generated104.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest104\Generated104 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1250.cmd_8295] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1250\Generated1250\Generated1250.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1250\Generated1250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated840.cmd_8296] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest840\Generated840\Generated840.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest840\Generated840 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNdiv_cs_do.cmd_8297] +RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_do\r8NaNdiv_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i11.cmd_8298] +RelativePath=JIT\jit64\mcc\interop\mcc_i11\mcc_i11.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[GitHub_11733.cmd_8299] +RelativePath=JIT\Regression\JitBlue\GitHub_11733\GitHub_11733\GitHub_11733.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11733\GitHub_11733 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i50.cmd_8300] +RelativePath=JIT\jit64\mcc\interop\mcc_i50\mcc_i50.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i50 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[ret_struct_test1.cmd_8301] +RelativePath=JIT\jit64\gc\misc\ret_struct_test1\ret_struct_test1.cmd +WorkingDir=JIT\jit64\gc\misc\ret_struct_test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53942b.cmd_8302] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b\b53942b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0B_r.cmd_8303] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_r\hfa_nd0B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString2.cmd_8304] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString2\ConvertToString2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_3b.cmd_8305] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_3b\_il_dbgtest_3b.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[1000w1d_cs_d.cmd_8306] +RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_d\1000w1d_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivescope.cmd_8307] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivescope\keepalivescope.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivescope +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b79852.cmd_8308] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852\b79852.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesRTSpecialName.cmd_8309] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName\MethodAttributesRTSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathExp.cmd_8310] +RelativePath=CoreMangLib\cti\system\math\MathExp\MathExp.cmd +WorkingDir=CoreMangLib\cti\system\math\MathExp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedClass01.cmd_8311] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedClass01\NestedClass01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedClass01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsStruct.cmd_8312] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct\AttributeTargetsStruct.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDecimal_1.cmd_8313] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_1\ThreadStartDecimal_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_d.cmd_8314] +RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_d\stringarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92693.cmd_8315] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693\b92693.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate009.cmd_8316] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate009\Delegate009.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingClone.cmd_8317] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingClone\EncodingClone.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingClone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LotsOfInlines.cmd_8318] +RelativePath=JIT\opt\Inline\tests\LotsOfInlines\LotsOfInlines.cmd +WorkingDir=JIT\opt\Inline\tests\LotsOfInlines +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated715.cmd_8319] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest715\Generated715\Generated715.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest715\Generated715 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivedirectedgraph.cmd_8320] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivedirectedgraph\keepalivedirectedgraph.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivedirectedgraph +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[explicitStruct_oddSize.cmd_8321] +RelativePath=Loader\classloader\explicitlayout\Regressions\298006\explicitStruct_oddSize\explicitStruct_oddSize.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\298006\explicitStruct_oddSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hole.cmd_8322] +RelativePath=JIT\Methodical\Coverage\hole\hole.cmd +WorkingDir=JIT\Methodical\Coverage\hole +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_3.cmd_8323] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_3\ConvertToInt32_3.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopstrswitchgoto_do.cmd_8324] +RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do\loopstrswitchgoto_do.cmd +WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_float_1_r.cmd_8325] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_r\expl_gc_float_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesInitobj.cmd_8326] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj\OpCodesInitobj.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleToString3.cmd_8327] +RelativePath=CoreMangLib\cti\system\double\DoubleToString3\DoubleToString3.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax1.cmd_8328] +RelativePath=CoreMangLib\cti\system\math\MathMax1\MathMax1.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_obj_1_d.cmd_8329] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d\seq_gc_obj_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst001.cmd_8330] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst001\IsInst001.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingManifestResourceExceptionCtor3.cmd_8331] +RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3\MissingManifestResourceExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt164.cmd_8332] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt164\ConvertToUInt164.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated300.cmd_8333] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest300\Generated300\Generated300.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest300\Generated300 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10827.cmd_8334] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827\b10827.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[istype.cmd_8335] +RelativePath=Regressions\coreclr\0046\istype\istype.cmd +WorkingDir=Regressions\coreclr\0046\istype +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyinsidecatch_d.cmd_8336] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d\rethrowinfinallyinsidecatch_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relbinop.cmd_8337] +RelativePath=JIT\Methodical\int64\misc\_speed_relbinop\_speed_relbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_speed_relbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Base_2.cmd_8338] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2\Generic_Test_CSharp_Base_2.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesAutoLayout.cmd_8339] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout\TypeAttributesAutoLayout.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated459.cmd_8340] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest459\Generated459\Generated459.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest459\Generated459 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75945.cmd_8341] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945\b75945.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldfld_mulovf.cmd_8342] +RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf\_il_dbgldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CSharpPart.cmd_8343] +RelativePath=JIT\Regression\Dev11\External\dev11_145295\CSharpPart\CSharpPart.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_145295\CSharpPart +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated815.cmd_8344] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest815\Generated815\Generated815.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest815\Generated815 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null041.cmd_8345] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041\box-unbox-null041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4nanconv_il_d.cmd_8346] +RelativePath=JIT\Methodical\NaN\r4nanconv_il_d\r4nanconv_il_d.cmd +WorkingDir=JIT\Methodical\NaN\r4nanconv_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64Opt_do.cmd_8347] +RelativePath=JIT\Directed\shift\uint64Opt_do\uint64Opt_do.cmd +WorkingDir=JIT\Directed\shift\uint64Opt_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_d.cmd_8348] +RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d\stringarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated174.cmd_8349] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest174\Generated174\Generated174.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest174\Generated174 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated269.cmd_8350] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest269\Generated269\Generated269.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest269\Generated269 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglcs.cmd_8351] +RelativePath=JIT\Methodical\refany\_il_dbglcs\_il_dbglcs.cmd +WorkingDir=JIT\Methodical\refany\_il_dbglcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated683.cmd_8352] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest683\Generated683\Generated683.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest683\Generated683 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly1_il_r.cmd_8353] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r\switchdefaultonly1_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread28.cmd_8354] +RelativePath=baseservices\threading\generics\TimerCallback\thread28\thread28.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b223936.cmd_8355] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936\b223936.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InvalidProgramExceptionctor2.cmd_8356] +RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2\InvalidProgramExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_416.cmd_8357] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_416\GCSimulator_416.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_416 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1307.cmd_8358] +RelativePath=Regressions\common\test1307\test1307.cmd +WorkingDir=Regressions\common\test1307 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value042.cmd_8359] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042\box-unbox-value042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBreak.cmd_8360] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak\OpCodesBreak.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relnestval_cs.cmd_8361] +RelativePath=JIT\Methodical\Boxing\misc\_relnestval_cs\_relnestval_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeObject.cmd_8362] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeObject\TypeCodeObject.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[alloca3.cmd_8363] +RelativePath=JIT\jit64\gc\misc\alloca3\alloca3.cmd +WorkingDir=JIT\jit64\gc\misc\alloca3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldsfld_mul.cmd_8364] +RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mul\_rels_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpathfn_r.cmd_8365] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r\throwinfinallyerrpathfn_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedcatch_d.cmd_8366] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_d\throwinnestedcatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b487372.cmd_8367] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372\b487372.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_4.cmd_8368] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_4\GCSimulator_4.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33131.cmd_8369] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131\b33131.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk.cmd_8370] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cpblk\cpblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeMarshalTypeRef.cmd_8371] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef\MarshalAsAttributeMarshalTypeRef.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryCatch.cmd_8372] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\TryCatch\TryCatch.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\TryCatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread02.cmd_8373] +RelativePath=baseservices\threading\generics\threadstart\GThread02\GThread02.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[nestedTryRegionsWithSameOffset1_o.cmd_8374] +RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o\nestedTryRegionsWithSameOffset1_o.cmd +WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_137.cmd_8375] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_137\GCSimulator_137.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListAdd.cmd_8376] +RelativePath=CoreMangLib\cti\system\array\ArrayIListAdd\ArrayIListAdd.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem.cmd_8377] +RelativePath=JIT\IL_Conformance\Old\Base\rem\rem.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\rem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_432038.cmd_8378] +RelativePath=Loader\classloader\methodoverriding\regressions\dev10_432038\dev10_432038\dev10_432038.cmd +WorkingDir=Loader\classloader\methodoverriding\regressions\dev10_432038\dev10_432038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72699.cmd_8379] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699\b72699.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[brtrue_s.cmd_8380] +RelativePath=JIT\IL_Conformance\Old\Base\brtrue_s\brtrue_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\brtrue_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OffsetOf.cmd_8381] +RelativePath=Interop\MarshalAPI\OffsetOf\OffsetOf\OffsetOf.cmd +WorkingDir=Interop\MarshalAPI\OffsetOf\OffsetOf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblDivConst.cmd_8382] +RelativePath=JIT\CodeGenBringUpTests\DblDivConst\DblDivConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblDivConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsvalbox.cmd_8383] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsvalbox\_dbglcsvalbox.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsvalbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate013.cmd_8384] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate013\Delegate013.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reversedhandlers_d.cmd_8385] +RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_d\reversedhandlers_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_r8.cmd_8386] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r8\rem_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_2.cmd_8387] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_2\ConvertToInt64_2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated449.cmd_8388] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest449\Generated449\Generated449.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest449\Generated449 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1311.cmd_8389] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1311\Generated1311\Generated1311.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1311\Generated1311 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroInit01_small.cmd_8390] +RelativePath=JIT\jit64\localloc\zeroinit\zeroInit01_small\zeroInit01_small.cmd +WorkingDir=JIT\jit64\localloc\zeroinit\zeroInit01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayLastIndexOf4.cmd_8391] +RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf4\ArrayLastIndexOf4.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46566.cmd_8392] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566\b46566.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteIConvertibleToChar.cmd_8393] +RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar\SByteIConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddingSequence_ro.cmd_8394] +RelativePath=JIT\SIMD\AddingSequence_ro\AddingSequence_ro.cmd +WorkingDir=JIT\SIMD\AddingSequence_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated26.cmd_8395] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest26\Generated26\Generated26.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest26\Generated26 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackPush.cmd_8396] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPush\StackPush.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPush +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14927.cmd_8397] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927\b14927.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[override_override1.cmd_8398] +RelativePath=Loader\classloader\MethodImpl\override_override1\override_override1.cmd +WorkingDir=Loader\classloader\MethodImpl\override_override1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderInsert.cmd_8399] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert\StringBuilderInsert.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex1.cmd_8400] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex1\waitanyex1.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgarrres.cmd_8401] +RelativePath=JIT\Methodical\Arrays\misc\_dbgarrres\_dbgarrres.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_dbgarrres +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11343.cmd_8402] +RelativePath=JIT\Regression\JitBlue\GitHub_11343\GitHub_11343\GitHub_11343.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11343\GitHub_11343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst_do.cmd_8403] +RelativePath=JIT\Directed\nullabletypes\isinst_do\isinst_do.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldc_div.cmd_8404] +RelativePath=JIT\Methodical\int64\signed\_rels_ldc_div\_rels_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1032.cmd_8405] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1032\Generated1032\Generated1032.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1032\Generated1032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeArraySubType.cmd_8406] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType\MarshalAsAttributeArraySubType.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread13.cmd_8407] +RelativePath=baseservices\threading\generics\WaitCallback\thread13\thread13.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_cs_cs.cmd_8408] +RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs\_dbgsin_cs_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDecimal.cmd_8409] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal\ThreadStartDecimal.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_cs_r.cmd_8410] +RelativePath=JIT\Methodical\NaN\arithm64_cs_r\arithm64_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_174.cmd_8411] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_174\GCSimulator_174.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_174 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListItem.cmd_8412] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListItem\ListIListItem.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartByte.cmd_8413] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte\ThreadStartByte.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct05.cmd_8414] +RelativePath=JIT\Generics\Instantiation\Interfaces\struct05\struct05.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\struct05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relstress3.cmd_8415] +RelativePath=JIT\Methodical\refany\_speed_relstress3\_speed_relstress3.cmd +WorkingDir=JIT\Methodical\refany\_speed_relstress3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayRank.cmd_8416] +RelativePath=CoreMangLib\cti\system\array\ArrayRank\ArrayRank.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayRank +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCtor3.cmd_8417] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor3\TimeSpanCtor3.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_tail_call.cmd_8418] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call\_il_dbgrecurse_tail_call.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DeadThreads.cmd_8419] +RelativePath=baseservices\threading\DeadThreads\DeadThreads\DeadThreads.cmd +WorkingDir=baseservices\threading\DeadThreads\DeadThreads +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate019.cmd_8420] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate019\Delegate019.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_obj_1_r.cmd_8421] +RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_r\expl_obj_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated930.cmd_8422] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest930\Generated930\Generated930.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest930\Generated930 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgthisnull.cmd_8423] +RelativePath=JIT\Methodical\Invoke\thiscall\_dbgthisnull\_dbgthisnull.cmd +WorkingDir=JIT\Methodical\Invoke\thiscall\_dbgthisnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1040.cmd_8424] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1040\Generated1040\Generated1040.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1040\Generated1040 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1107.cmd_8425] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1107\Generated1107\Generated1107.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1107\Generated1107 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10802.cmd_8426] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802\b10802.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1067.cmd_8427] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1067\Generated1067\Generated1067.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1067\Generated1067 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_cs_ro.cmd_8428] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro\catchrettoinnertry_cs_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41852.cmd_8429] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852\b41852.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[throwinfinallynestedintry_r.cmd_8430] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r\throwinfinallynestedintry_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACA_ro.cmd_8431] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro\CGRecurseACA_ro.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollGenIEnumGetEnumerator.cmd_8432] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator\SystemCollGenIEnumGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesSub_Ovf.cmd_8433] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf\OpCodesSub_Ovf.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b188478.cmd_8434] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478\b188478.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh03_dynamic.cmd_8435] +RelativePath=JIT\jit64\localloc\eh\eh03_dynamic\eh03_dynamic.cmd +WorkingDir=JIT\jit64\localloc\eh\eh03_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interface_class02.cmd_8436] +RelativePath=JIT\Generics\MemberAccess\interface_class02\interface_class02.cmd +WorkingDir=JIT\Generics\MemberAccess\interface_class02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Deserialize.cmd_8437] +RelativePath=JIT\Performance\CodeQuality\Serialization\Deserialize\Deserialize.cmd +WorkingDir=JIT\Performance\CodeQuality\Serialization\Deserialize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b22521.cmd_8438] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521\b22521.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_i1.cmd_8439] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1\ldind_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedexcept_r.cmd_8440] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r\cascadedexcept_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivetry.cmd_8441] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivetry\keepalivetry.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivetry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated78.cmd_8442] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest78\Generated78\Generated78.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest78\Generated78 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructLayoutAttributeCharSet.cmd_8443] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet\StructLayoutAttributeCharSet.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[partialcompactiontest.cmd_8444] +RelativePath=GC\Features\PartialCompaction\partialcompactiontest\partialcompactiontest.cmd +WorkingDir=GC\Features\PartialCompaction\partialcompactiontest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrecurse.cmd_8445] +RelativePath=JIT\Methodical\Invoke\fptr\_relrecurse\_relrecurse.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_relrecurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_opt.cmd_8446] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt\rem_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_283.cmd_8447] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_283\GCSimulator_283.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_283 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dlbigleakthd.cmd_8448] +RelativePath=GC\Scenarios\DoublinkList\dlbigleakthd\dlbigleakthd.cmd +WorkingDir=GC\Scenarios\DoublinkList\dlbigleakthd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhugedim.cmd_8449] +RelativePath=JIT\Methodical\int64\arrays\_il_relhugedim\_il_relhugedim.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_relhugedim +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_r8.cmd_8450] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r8\blt_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadMax1.cmd_8451] +RelativePath=JIT\Regression\Dev11\External\dev11_111914\BadMax1\BadMax1.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_111914\BadMax1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32GetHashCode.cmd_8452] +RelativePath=CoreMangLib\cti\system\int\Int32GetHashCode\Int32GetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32GetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetGenerationWR2.cmd_8453] +RelativePath=GC\API\GC\GetGenerationWR2\GetGenerationWR2.cmd +WorkingDir=GC\API\GC\GetGenerationWR2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToUInt16.cmd_8454] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16\ByteIConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSeparator1.cmd_8455] +RelativePath=CoreMangLib\cti\system\char\CharIsSeparator1\CharIsSeparator1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsNumber2.cmd_8456] +RelativePath=CoreMangLib\cti\system\char\CharIsNumber2\CharIsNumber2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsNumber2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SecurityExceptionCtor3.cmd_8457] +RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3\SecurityExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpMembersOfStructLocal.cmd_8458] +RelativePath=JIT\CodeGenBringUpTests\OpMembersOfStructLocal\OpMembersOfStructLocal.cmd +WorkingDir=JIT\CodeGenBringUpTests\OpMembersOfStructLocal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase5_Nested_J_Nested_I.cmd_8459] +RelativePath=Loader\classloader\InterfaceFolding\TestCase5_Nested_J_Nested_I\TestCase5_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase5_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedDecrement1.cmd_8460] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1\InterlockedDecrement1.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_67.cmd_8461] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_67\GCSimulator_67.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_67 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated749.cmd_8462] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest749\Generated749\Generated749.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest749\Generated749 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox032.cmd_8463] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032\box-unbox032.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesInitOnly.cmd_8464] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly\FieldAttributesInitOnly.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bestfit-threaded.cmd_8465] +RelativePath=GC\Features\HeapExpansion\bestfit-threaded\bestfit-threaded.cmd +WorkingDir=GC\Features\HeapExpansion\bestfit-threaded +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[ConvertToSingle16.cmd_8466] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle16\ConvertToSingle16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Box_Unbox.cmd_8467] +RelativePath=JIT\Directed\PREFIX\unaligned\4\Box_Unbox\Box_Unbox.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\Box_Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[constructor_do.cmd_8468] +RelativePath=JIT\Directed\nullabletypes\constructor_do\constructor_do.cmd +WorkingDir=JIT\Directed\nullabletypes\constructor_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UserException.cmd_8469] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\UserException\UserException.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\UserException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublinkstay.cmd_8470] +RelativePath=GC\Scenarios\DoublinkList\doublinkstay\doublinkstay.cmd +WorkingDir=GC\Scenarios\DoublinkList\doublinkstay +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[b57516.cmd_8471] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516\b57516.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated148.cmd_8472] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest148\Generated148\Generated148.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest148\Generated148 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated813.cmd_8473] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest813\Generated813\Generated813.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest813\Generated813 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1320.cmd_8474] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1320\Generated1320\Generated1320.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1320\Generated1320 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19289.cmd_8475] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289\b19289.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_long_1_d.cmd_8476] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_d\seq_gc_long_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_8477] +RelativePath=JIT\jit64\regress\vsw\471729\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\471729\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhanoi2.cmd_8478] +RelativePath=JIT\Methodical\VT\etc\_il_relhanoi2\_il_relhanoi2.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28158.cmd_8479] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158\b28158.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_405.cmd_8480] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_405\GCSimulator_405.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_405 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated234.cmd_8481] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest234\Generated234\Generated234.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest234\Generated234 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[avtest.cmd_8482] +RelativePath=Regressions\common\avtest\avtest.cmd +WorkingDir=Regressions\common\avtest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface14.cmd_8483] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface14\MultipleInterface14.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8flat_cs_do.cmd_8484] +RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_do\r8flat_cs_do.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated57.cmd_8485] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest57\Generated57\Generated57.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest57\Generated57 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinally_ro.cmd_8486] +RelativePath=JIT\Methodical\eh\basics\tryfinally_ro\tryfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relldfld_mulovf.cmd_8487] +RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mulovf\_relldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgftn_t.cmd_8488] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgftn_t\_il_dbgftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b112982.cmd_8489] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982\b112982.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BitwiseOperations_ro.cmd_8490] +RelativePath=JIT\SIMD\BitwiseOperations_ro\BitwiseOperations_ro.cmd +WorkingDir=JIT\SIMD\BitwiseOperations_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794631_r.cmd_8491] +RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r\DevDiv_794631_r.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4rem_cs_d.cmd_8492] +RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_d\r4rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[init_uint32.cmd_8493] +RelativePath=JIT\Directed\zeroinit\init_uint32\init_uint32.cmd +WorkingDir=JIT\Directed\zeroinit\init_uint32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow0_cs_ro.cmd_8494] +RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_ro\pow0_cs_ro.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16499a.cmd_8495] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a\b16499a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relnestval_il.cmd_8496] +RelativePath=JIT\Methodical\Boxing\misc\_relnestval_il\_relnestval_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsbas.cmd_8497] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbas\_rellcsbas.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbas +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interface_class01.cmd_8498] +RelativePath=JIT\Generics\MemberAccess\interface_class01\interface_class01.cmd +WorkingDir=JIT\Generics\MemberAccess\interface_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated469.cmd_8499] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest469\Generated469\Generated469.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest469\Generated469 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated755.cmd_8500] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest755\Generated755\Generated755.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest755\Generated755 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated787.cmd_8501] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest787\Generated787\Generated787.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest787\Generated787 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated241.cmd_8502] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest241\Generated241\Generated241.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest241\Generated241 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_d.cmd_8503] +RelativePath=JIT\Directed\shift\uint16_d\uint16_d.cmd +WorkingDir=JIT\Directed\shift\uint16_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated690.cmd_8504] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest690\Generated690\Generated690.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest690\Generated690 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2B_r.cmd_8505] +RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_r\hfa_nd2B_r.cmd +WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVRefCnt0.cmd_8506] +RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt0\LVRefCnt0.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldrem_cs_d.cmd_8507] +RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_d\lclfldrem_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class05.cmd_8508] +RelativePath=JIT\Generics\Instantiation\Interfaces\class05\class05.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\class05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45270.cmd_8509] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270\b45270.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[general_class_static01.cmd_8510] +RelativePath=JIT\Generics\Exceptions\general_class_static01\general_class_static01.cmd +WorkingDir=JIT\Generics\Exceptions\general_class_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated244.cmd_8511] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest244\Generated244\Generated244.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest244\Generated244 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_87.cmd_8512] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_87\GCSimulator_87.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_87 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66533.cmd_8513] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533\b66533.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ushort_cs_do.cmd_8514] +RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_do\ushort_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CallOrder.cmd_8515] +RelativePath=JIT\Directed\FaultHandlers\CallOrder\CallOrder\CallOrder.cmd +WorkingDir=JIT\Directed\FaultHandlers\CallOrder\CallOrder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumeratorDispose.cmd_8516] +RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose\EnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated781.cmd_8517] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest781\Generated781\Generated781.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest781\Generated781 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reldeep2.cmd_8518] +RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep2\_il_reldeep2.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dup8.cmd_8519] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup8\dup8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesSwitch.cmd_8520] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch\OpCodesSwitch.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b61025.cmd_8521] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025\b61025.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nesting18.cmd_8522] +RelativePath=Loader\classloader\nesting\coreclr\nesting18\nesting18.cmd +WorkingDir=Loader\classloader\nesting\coreclr\nesting18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated513.cmd_8523] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest513\Generated513\Generated513.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest513\Generated513 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret.cmd_8524] +RelativePath=JIT\IL_Conformance\Old\Base\ret\ret.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated343.cmd_8525] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest343\Generated343\Generated343.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest343\Generated343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Locals.cmd_8526] +RelativePath=JIT\opt\perf\doublealign\Locals\Locals.cmd +WorkingDir=JIT\opt\perf\doublealign\Locals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_cs_d.cmd_8527] +RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_d\vt1_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated809.cmd_8528] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest809\Generated809\Generated809.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest809\Generated809 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intinc.cmd_8529] +RelativePath=baseservices\threading\interlocked\increment\intinc\intinc.cmd +WorkingDir=baseservices\threading\interlocked\increment\intinc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass018.cmd_8530] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018\castclass018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcreport.cmd_8531] +RelativePath=JIT\Methodical\refany\gcreport\gcreport.cmd +WorkingDir=JIT\Methodical\refany\gcreport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method011.cmd_8532] +RelativePath=Loader\classloader\generics\GenericMethods\method011\method011.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RngchkStress1_o.cmd_8533] +RelativePath=JIT\jit64\opt\rngchk\RngchkStress1_o\RngchkStress1_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\RngchkStress1_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated617.cmd_8534] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest617\Generated617\Generated617.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest617\Generated617 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated532.cmd_8535] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest532\Generated532\Generated532.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest532\Generated532 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytryfinally_r.cmd_8536] +RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_r\tryfinallytryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToSingle.cmd_8537] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle\Int16IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[params-varargs.cmd_8538] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs\params-varargs.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread01.cmd_8539] +RelativePath=baseservices\threading\generics\TimerCallback\thread01\thread01.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics015.cmd_8540] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015\castclass-generics015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltry_cs.cmd_8541] +RelativePath=JIT\Methodical\Boxing\seh\_reltry_cs\_reltry_cs.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_reltry_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59337.cmd_8542] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337\b59337.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b119538a.cmd_8543] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a\b119538a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Castable.cmd_8544] +RelativePath=Interop\ICastable\Castable\Castable.cmd +WorkingDir=Interop\ICastable\Castable +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b338014.cmd_8545] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014\b338014.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated441.cmd_8546] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest441\Generated441\Generated441.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest441\Generated441 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathCeiling.cmd_8547] +RelativePath=CoreMangLib\cti\system\math\MathCeiling\MathCeiling.cmd +WorkingDir=CoreMangLib\cti\system\math\MathCeiling +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalEquals1.cmd_8548] +RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals1\DecimalEquals1.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Polyrec.cmd_8549] +RelativePath=Loader\regressions\polyrec\Polyrec\Polyrec.cmd +WorkingDir=Loader\regressions\polyrec\Polyrec +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt6415.cmd_8550] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6415\ConvertToUInt6415.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6415 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoublePositiveInfinity.cmd_8551] +RelativePath=CoreMangLib\cti\system\double\DoublePositiveInfinity\DoublePositiveInfinity.cmd +WorkingDir=CoreMangLib\cti\system\double\DoublePositiveInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[XorRef.cmd_8552] +RelativePath=JIT\CodeGenBringUpTests\XorRef\XorRef.cmd +WorkingDir=JIT\CodeGenBringUpTests\XorRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intarr_cs_d.cmd_8553] +RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_d\intarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblFillArray.cmd_8554] +RelativePath=JIT\CodeGenBringUpTests\DblFillArray\DblFillArray.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblFillArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b83702.cmd_8555] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702\b83702.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblRoots.cmd_8556] +RelativePath=JIT\CodeGenBringUpTests\DblRoots\DblRoots.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblRoots +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relhanoi.cmd_8557] +RelativePath=JIT\Methodical\VT\etc\_speed_relhanoi\_speed_relhanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relhanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMethodExceptionCtor2.cmd_8558] +RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2\MissingMethodExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesUnmanagedExport.cmd_8559] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport\MethodAttributesUnmanagedExport.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case1.cmd_8560] +RelativePath=Loader\classloader\regressions\dev10_813331\Case1\Case1.cmd +WorkingDir=Loader\classloader\regressions\dev10_813331\Case1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated751.cmd_8561] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest751\Generated751\Generated751.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest751\Generated751 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_30_d.cmd_8562] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d\throwinfinallynestedintry_30_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfault_r.cmd_8563] +RelativePath=JIT\Methodical\eh\basics\throwinfault_r\throwinfault_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfault_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_I8.cmd_8564] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8\OpCodesStelem_I8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_float_1_d.cmd_8565] +RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_d\expl_float_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1414.cmd_8566] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1414\Generated1414\Generated1414.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1414\Generated1414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceCtor2b_PSC.cmd_8567] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC\WeakReferenceCtor2b_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnvironmentNewLine.cmd_8568] +RelativePath=CoreMangLib\cti\system\environment\EnvironmentNewLine\EnvironmentNewLine.cmd +WorkingDir=CoreMangLib\cti\system\environment\EnvironmentNewLine +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_r.cmd_8569] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r\staticFieldExprUnchecked1_r.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1364.cmd_8570] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1364\Generated1364\Generated1364.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1364\Generated1364 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hashcode_ro.cmd_8571] +RelativePath=JIT\Directed\nullabletypes\hashcode_ro\hashcode_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\hashcode_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated722.cmd_8572] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest722\Generated722\Generated722.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest722\Generated722 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit2.cmd_8573] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit2\_relexplicit2.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[shr_i8.cmd_8574] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i8\shr_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[property.cmd_8575] +RelativePath=JIT\opt\Inline\tests\property\property.cmd +WorkingDir=JIT\opt\Inline\tests\property +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated542.cmd_8576] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest542\Generated542\Generated542.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest542\Generated542 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8460.cmd_8577] +RelativePath=JIT\Regression\JitBlue\GitHub_8460\GitHub_8460\GitHub_8460.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8460\GitHub_8460 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro52.cmd_8578] +RelativePath=JIT\jit64\ebvts\cs\generics\generics\repro52\repro52.cmd +WorkingDir=JIT\jit64\ebvts\cs\generics\generics\repro52 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated688.cmd_8579] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest688\Generated688\Generated688.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest688\Generated688 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[opmul.cmd_8580] +RelativePath=JIT\jit64\regress\vsw\560402\opmul\opmul.cmd +WorkingDir=JIT\jit64\regress\vsw\560402\opmul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_r.cmd_8581] +RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_r\classarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated169.cmd_8582] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest169\Generated169\Generated169.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest169\Generated169 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b125091.cmd_8583] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091\b125091.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relu_seq.cmd_8584] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq\_il_relu_seq.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_12392.cmd_8585] +RelativePath=JIT\Regression\JitBlue\GitHub_12392\GitHub_12392\GitHub_12392.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_12392\GitHub_12392 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated584.cmd_8586] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest584\Generated584\Generated584.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest584\Generated584 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated558.cmd_8587] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest558\Generated558\Generated558.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest558\Generated558 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated771.cmd_8588] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest771\Generated771\Generated771.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest771\Generated771 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPop.cmd_8589] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop\OpCodesPop.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SeekOriginEnum.cmd_8590] +RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum\SeekOriginEnum.cmd +WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgunsafe-3.cmd_8591] +RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3\_speed_dbgunsafe-3.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arglist.cmd_8592] +RelativePath=JIT\Directed\PREFIX\unaligned\4\arglist\arglist.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\arglist +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated1384.cmd_8593] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1384\Generated1384\Generated1384.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1384\Generated1384 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_330.cmd_8594] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_330\GCSimulator_330.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_330 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-02_cs_r.cmd_8595] +RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_r\5w1d-02_cs_r.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_i1.cmd_8596] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1\mul_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_i8.cmd_8597] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8\ldc_sub_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_216.cmd_8598] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_216\GCSimulator_216.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1441.cmd_8599] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1441\Generated1441\Generated1441.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1441\Generated1441 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_r_try.cmd_8600] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_try\mixedexpr1_r_try.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[huge_struct.cmd_8601] +RelativePath=JIT\Methodical\Arrays\huge_struct\huge_struct.cmd +WorkingDir=JIT\Methodical\Arrays\huge_struct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean.cmd_8602] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean\ConvertToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanToString_str.cmd_8603] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanToString_str\TimeSpanToString_str.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanToString_str +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[date.cmd_8604] +RelativePath=Regressions\coreclr\0069\date\date.cmd +WorkingDir=Regressions\coreclr\0069\date +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35784.cmd_8605] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784\b35784.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[b30869.cmd_8606] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869\b30869.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeLong.cmd_8607] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong\CompareExchangeLong.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc3_cs_ro.cmd_8608] +RelativePath=JIT\Directed\localloc\localloc3_cs_ro\localloc3_cs_ro.cmd +WorkingDir=JIT\Directed\localloc\localloc3_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40496.cmd_8609] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496\b40496.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated445.cmd_8610] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest445\Generated445\Generated445.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest445\Generated445 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch1_d.cmd_8611] +RelativePath=JIT\Directed\leave\catch1_d\catch1_d.cmd +WorkingDir=JIT\Directed\leave\catch1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_val_1_d.cmd_8612] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_d\expl_gc_val_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_629953.cmd_8613] +RelativePath=reflection\regression\dev10bugs\Dev10_629953\Dev10_629953.cmd +WorkingDir=reflection\regression\dev10bugs\Dev10_629953 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70289.cmd_8614] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289\b70289.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FixedBufferAttributeElementType.cmd_8615] +RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType\FixedBufferAttributeElementType.cmd +WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread18.cmd_8616] +RelativePath=baseservices\threading\generics\TimerCallback\thread18\thread18.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_2a.cmd_8617] +RelativePath=JIT\Methodical\tailcall\_il_reltest_2a\_il_reltest_2a.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_2a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics010.cmd_8618] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010\box-unbox-generics010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_4.cmd_8619] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_4\ConvertToInt64_4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc.cmd_8620] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc\OpCodesStloc.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_switch.cmd_8621] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_switch\_il_dbgtest_switch.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_switch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case15.cmd_8622] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15\case15.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated424.cmd_8623] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest424\Generated424\Generated424.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest424\Generated424 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartGenerics_2.cmd_8624] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics_2\ThreadStartGenerics_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_o.cmd_8625] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o\_opt_dbgrefarg_o.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend3.cmd_8626] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3\StringBuilderAppend3.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated200.cmd_8627] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest200\Generated200\Generated200.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest200\Generated200 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThrowInCatch.cmd_8628] +RelativePath=baseservices\exceptions\unittests\ThrowInCatch\ThrowInCatch.cmd +WorkingDir=baseservices\exceptions\unittests\ThrowInCatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_110.cmd_8629] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_110\GCSimulator_110.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_110 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidToString1.cmd_8630] +RelativePath=CoreMangLib\cti\system\guid\GuidToString1\GuidToString1.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relfilter.cmd_8631] +RelativePath=JIT\Methodical\Boxing\seh\_relfilter\_relfilter.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_relfilter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16MaxValue.cmd_8632] +RelativePath=CoreMangLib\cti\system\int16\Int16MaxValue\Int16MaxValue.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16MaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxinterface_d.cmd_8633] +RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_d\boxunboxinterface_d.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldtokenmember.cmd_8634] +RelativePath=reflection\ldtoken\ldtokenmember\ldtokenmember.cmd +WorkingDir=reflection\ldtoken\ldtokenmember +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetDecoder.cmd_8635] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder\UnicodeEncodingGetDecoder.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80738.cmd_8636] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738\b80738.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated916.cmd_8637] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest916\Generated916\Generated916.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest916\Generated916 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttribytesNotPublic.cmd_8638] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic\TypeAttribytesNotPublic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31763.cmd_8639] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763\b31763.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated820.cmd_8640] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest820\Generated820\Generated820.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest820\Generated820 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1262.cmd_8641] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1262\Generated1262\Generated1262.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1262\Generated1262 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetBytes3.cmd_8642] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3\EncodingGetBytes3.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin4.cmd_8643] +RelativePath=CoreMangLib\cti\system\math\MathMin4\MathMin4.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_u8.cmd_8644] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u8\rem_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated717.cmd_8645] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest717\Generated717\Generated717.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest717\Generated717 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexpos2.cmd_8646] +RelativePath=baseservices\threading\mutex\openexisting\openmutexpos2\openmutexpos2.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexpos2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyIntPtrArray.cmd_8647] +RelativePath=Interop\MarshalAPI\Copy\CopyIntPtrArray\CopyIntPtrArray.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyIntPtrArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVNumCnt1.cmd_8648] +RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1\LVNumCnt1.cmd +WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListReverse2.cmd_8649] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse2\ListReverse2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetString.cmd_8650] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString\UTF8EncodingGetString.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct02.cmd_8651] +RelativePath=baseservices\exceptions\generics\try-catch-struct02\try-catch-struct02.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfaulttrycatch_r.cmd_8652] +RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_r\tryfaulttrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_i.cmd_8653] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i\ldloc_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[refanyval.cmd_8654] +RelativePath=JIT\Methodical\xxobj\operand\refanyval\refanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\refanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1086.cmd_8655] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1086\Generated1086\Generated1086.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1086\Generated1086 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullCheckAssertion7.cmd_8656] +RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion7\NullCheckAssertion7.cmd +WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_val_1_r.cmd_8657] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_r\seq_gc_val_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte6.cmd_8658] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte6\ConvertToSByte6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct1_5.cmd_8659] +RelativePath=JIT\jit64\gc\misc\struct1_5\struct1_5.cmd +WorkingDir=JIT\jit64\gc\misc\struct1_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1213.cmd_8660] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1213\Generated1213\Generated1213.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1213\Generated1213 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase4_Nested_J.cmd_8661] +RelativePath=Loader\classloader\InterfaceFolding\TestCase4_Nested_J\TestCase4_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase4_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[t2.cmd_8662] +RelativePath=Loader\classloader\SequentialLayout\Regress\217070\t2\t2.cmd +WorkingDir=Loader\classloader\SequentialLayout\Regress\217070\t2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_i2.cmd_8663] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i2\_relrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtry.cmd_8664] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtry\_il_dbgtry.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface03.cmd_8665] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface03\MultipleInterface03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1061.cmd_8666] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1061\Generated1061\Generated1061.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1061\Generated1061 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise2_cs_do.cmd_8667] +RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_do\xprecise2_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated110.cmd_8668] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest110\Generated110\Generated110.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest110\Generated110 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToDecimal.cmd_8669] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal\Int32IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_funcptr_gc_r.cmd_8670] +RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r\expl_funcptr_gc_r.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_20929_r.cmd_8671] +RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_r\dev11_20929_r.cmd +WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[caninline_r.cmd_8672] +RelativePath=JIT\jit64\opt\inl\caninline_r\caninline_r.cmd +WorkingDir=JIT\jit64\opt\inl\caninline_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated871.cmd_8673] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest871\Generated871\Generated871.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest871\Generated871 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit5.cmd_8674] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit5\_opt_dbgexplicit5.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublinkgen.cmd_8675] +RelativePath=GC\Scenarios\DoublinkList\doublinkgen\doublinkgen.cmd +WorkingDir=GC\Scenarios\DoublinkList\doublinkgen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString15.cmd_8676] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString15\ConvertToString15.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringJoin.cmd_8677] +RelativePath=CoreMangLib\cti\system\string\StringJoin\StringJoin.cmd +WorkingDir=CoreMangLib\cti\system\string\StringJoin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[StringWriterEncoding_PSC.cmd_8678] +RelativePath=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC\StringWriterEncoding_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ParameterAttributesNone.cmd_8679] +RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone\ParameterAttributesNone.cmd +WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_25.cmd_8680] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_25\GCSimulator_25.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_cs_ro.cmd_8681] +RelativePath=JIT\Directed\shift\int32_cs_ro\int32_cs_ro.cmd +WorkingDir=JIT\Directed\shift\int32_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpenDelegate.cmd_8682] +RelativePath=CoreMangLib\system\delegate\VSD\OpenDelegate\OpenDelegate.cmd +WorkingDir=CoreMangLib\system\delegate\VSD\OpenDelegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3c_il_d.cmd_8683] +RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_d\25param3c_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_obj_1_r.cmd_8684] +RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_r\seq_obj_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b57493.cmd_8685] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493\b57493.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToDouble.cmd_8686] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble\Int64IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct03.cmd_8687] +RelativePath=baseservices\exceptions\generics\try-catch-struct03\try-catch-struct03.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test359519.cmd_8688] +RelativePath=Loader\classloader\regressions\359519\test359519\test359519.cmd +WorkingDir=Loader\classloader\regressions\359519\test359519 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsAlive_neg.cmd_8689] +RelativePath=GC\API\WeakReference\IsAlive_neg\IsAlive_neg.cmd +WorkingDir=GC\API\WeakReference\IsAlive_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch2.cmd_8690] +RelativePath=JIT\Methodical\switch\switch2\switch2.cmd +WorkingDir=JIT\Methodical\switch\switch2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPMul.cmd_8691] +RelativePath=JIT\CodeGenBringUpTests\FPMul\FPMul.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPMul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp2_1.cmd_8692] +RelativePath=JIT\jit64\gc\misc\structfp2_1\structfp2_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp2_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_add_ovf_u4.cmd_8693] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4\ldc_add_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ResetGlobalFields.cmd_8694] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\ResetGlobalFields\ResetGlobalFields.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\ResetGlobalFields +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_259.cmd_8695] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_259\GCSimulator_259.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_259 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorZeroVal01.cmd_8696] +RelativePath=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal01\CctorZeroVal01.cmd +WorkingDir=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1A_r.cmd_8697] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_r\hfa_nf1A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingCtor.cmd_8698] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor\UTF8EncodingCtor.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated12.cmd_8699] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest12\Generated12\Generated12.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest12\Generated12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1244.cmd_8700] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1244\Generated1244\Generated1244.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1244\Generated1244 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionIsReadOnly.cmd_8701] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly\ICollectionIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05780.cmd_8702] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780\b05780.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListIsFixedSize.cmd_8703] +RelativePath=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize\IListIsFixedSize.cmd +WorkingDir=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq_i.cmd_8704] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i\beq_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListGetEnumerator.cmd_8705] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator\ListGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53226a.cmd_8706] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a\b53226a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53942a.cmd_8707] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a\b53942a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14314.cmd_8708] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314\b14314.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_815940_d.cmd_8709] +RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d\DevDiv_815940_d.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly3_il_d.cmd_8710] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d\switchdefaultonly3_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80365.cmd_8711] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365\b80365.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u8_i8.cmd_8712] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8\conv_ovf_u8_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test188892.cmd_8713] +RelativePath=Loader\classloader\generics\regressions\188892\test188892\test188892.cmd +WorkingDir=Loader\classloader\generics\regressions\188892\test188892 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch-struct01.cmd_8714] +RelativePath=baseservices\exceptions\generics\try-catch-struct01\try-catch-struct01.cmd +WorkingDir=baseservices\exceptions\generics\try-catch-struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPAvg2.cmd_8715] +RelativePath=JIT\CodeGenBringUpTests\FPAvg2\FPAvg2.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPAvg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[runmoduleconstructor.cmd_8716] +RelativePath=baseservices\compilerservices\modulector\runmoduleconstructor\runmoduleconstructor.cmd +WorkingDir=baseservices\compilerservices\modulector\runmoduleconstructor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pop4.cmd_8717] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop4\pop4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_r4.cmd_8718] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r4\_il_relrefloc_r4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf2b.cmd_8719] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2b\ArrayIndexOf2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Regula.cmd_8720] +RelativePath=JIT\Performance\CodeQuality\BenchF\Regula\Regula\Regula.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Regula\Regula +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_float_1_d.cmd_8721] +RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_d\seq_float_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_417.cmd_8722] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_417\GCSimulator_417.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_417 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToByte1.cmd_8723] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte1\DecimalToByte1.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1160.cmd_8724] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1160\Generated1160\Generated1160.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1160\Generated1160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ushort_cs_r.cmd_8725] +RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_r\ushort_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relinstftn_t.cmd_8726] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn_t\_il_relinstftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate029.cmd_8727] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate029\Delegate029.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[beq.cmd_8728] +RelativePath=JIT\IL_Conformance\Old\Base\beq\beq.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\beq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14624.cmd_8729] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624\b14624.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Ne1.cmd_8730] +RelativePath=JIT\CodeGenBringUpTests\Ne1\Ne1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Ne1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_10.cmd_8731] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_10\GCSimulator_10.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[445488.cmd_8732] +RelativePath=GC\Regressions\v2.0-beta2\445488\445488\445488.cmd +WorkingDir=GC\Regressions\v2.0-beta2\445488\445488 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[_dbgsizeof32.cmd_8733] +RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof32\_dbgsizeof32.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldnull_i.cmd_8734] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i\ldnull_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeoutExceptionCtor2.cmd_8735] +RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2\TimeoutExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1240.cmd_8736] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1240\Generated1240\Generated1240.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1240\Generated1240 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellcs_ulong.cmd_8737] +RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_ulong\_il_rellcs_ulong.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_ulong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind04_large.cmd_8738] +RelativePath=JIT\jit64\localloc\unwind\unwind04_large\unwind04_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind04_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reliface1.cmd_8739] +RelativePath=JIT\Methodical\casts\iface\_speed_reliface1\_speed_reliface1.cmd +WorkingDir=JIT\Methodical\casts\iface\_speed_reliface1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess2_cs_d.cmd_8740] +RelativePath=JIT\Directed\StrAccess\straccess2_cs_d\straccess2_cs_d.cmd +WorkingDir=JIT\Directed\StrAccess\straccess2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs1.cmd_8741] +RelativePath=CoreMangLib\cti\system\math\MathAbs1\MathAbs1.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_do.cmd_8742] +RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_do\structarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1341.cmd_8743] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1341\Generated1341\Generated1341.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1341\Generated1341 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b113239.cmd_8744] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239\b113239.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated39.cmd_8745] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest39\Generated39\Generated39.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest39\Generated39 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadImageFormatExceptionCtor1.cmd_8746] +RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1\BadImageFormatExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw188290.cmd_8747] +RelativePath=Loader\classloader\regressions\vsw188290\vsw188290\vsw188290.cmd +WorkingDir=Loader\classloader\regressions\vsw188290\vsw188290 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[33objref_cs_d.cmd_8748] +RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_d\33objref_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress3_d.cmd_8749] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_d\CgStress3_d.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble5.cmd_8750] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble5\ConvertToDouble5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1443.cmd_8751] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1443\Generated1443\Generated1443.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1443\Generated1443 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66679.cmd_8752] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679\b66679.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_122.cmd_8753] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_122\GCSimulator_122.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_122 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u4_u1.cmd_8754] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1\ldc_conv_ovf_u4_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32TryParse.cmd_8755] +RelativePath=CoreMangLib\cti\system\uint32\UInt32TryParse\UInt32TryParse.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_300.cmd_8756] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_300\GCSimulator_300.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_300 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpathfn_d.cmd_8757] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d\throwinfinallyerrpathfn_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overRepLocalOpt.cmd_8758] +RelativePath=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt\overRepLocalOpt.cmd +WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionCopyTo2.cmd_8759] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2\DictionaryICollectionCopyTo2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSuppressFinalize.cmd_8760] +RelativePath=CoreMangLib\cti\system\gc\GCSuppressFinalize\GCSuppressFinalize.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCSuppressFinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated727.cmd_8761] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest727\Generated727\Generated727.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest727\Generated727 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16071.cmd_8762] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071\b16071.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relbinop.cmd_8763] +RelativePath=JIT\Methodical\int64\misc\_il_relbinop\_il_relbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_il_relbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_RWHNullRefEx.cmd_8764] +RelativePath=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx\CS_RWHNullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41262.cmd_8765] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262\b41262.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleDangerousAddRef_PSC.cmd_8766] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC\SafeHandleDangerousAddRef_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call04_large.cmd_8767] +RelativePath=JIT\jit64\localloc\call\call04_large\call04_large.cmd +WorkingDir=JIT\jit64\localloc\call\call04_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueGtInt1.cmd_8768] +RelativePath=JIT\CodeGenBringUpTests\JTrueGtInt1\JTrueGtInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueGtInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAccessEnum.cmd_8769] +RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum\FileAccessEnum.cmd +WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch3b.cmd_8770] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3b\ArrayBinarySearch3b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xaddmuly_cs_r.cmd_8771] +RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r\xaddmuly_cs_r.cmd +WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublinknoleak.cmd_8772] +RelativePath=GC\Scenarios\DoublinkList\doublinknoleak\doublinknoleak.cmd +WorkingDir=GC\Scenarios\DoublinkList\doublinknoleak +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollGenericICollContains.cmd_8773] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains\SystemCollGenericICollContains.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPConvI2F.cmd_8774] +RelativePath=JIT\CodeGenBringUpTests\FPConvI2F\FPConvI2F.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPConvI2F +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-02_cs_do.cmd_8775] +RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_do\3w1d-02_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b178128.cmd_8776] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128\b178128.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i77.cmd_8777] +RelativePath=JIT\jit64\mcc\interop\mcc_i77\mcc_i77.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i77 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyValuePairToString.cmd_8778] +RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString\KeyValuePairToString.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesSpecialName.cmd_8779] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName\TypeAttributesSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizenested.cmd_8780] +RelativePath=GC\Features\Finalizer\finalizeother\finalizenested\finalizenested.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizenested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-enum003.cmd_8781] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003\castclass-enum003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i86.cmd_8782] +RelativePath=JIT\jit64\mcc\interop\mcc_i86\mcc_i86.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i86 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35486.cmd_8783] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486\b35486.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartShort_2.cmd_8784] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort_2\ThreadStartShort_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15864.cmd_8785] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864\b15864.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface04.cmd_8786] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface04\MultipleInterface04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourVarpop.cmd_8787] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop\StackBehaviourVarpop.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_5.cmd_8788] +RelativePath=JIT\jit64\gc\misc\structfp1_5\structfp1_5.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyaftercatch_do.cmd_8789] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do\rethrowinfinallyaftercatch_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base02b_seq_ser.cmd_8790] +RelativePath=Loader\classloader\generics\Layout\General\Base02b_seq_ser\Base02b_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base02b_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated411.cmd_8791] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest411\Generated411\Generated411.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest411\Generated411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToDouble.cmd_8792] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble\UInt16IConvertibleToDouble.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reldeep.cmd_8793] +RelativePath=JIT\Methodical\Invoke\deep\_reldeep\_reldeep.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_reldeep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[params-object.cmd_8794] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object\params-object.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b99667.cmd_8795] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667\b99667.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcompat_r4_r8_inl.cmd_8796] +RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl\_il_dbgcompat_r4_r8_inl.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise4_cs_r.cmd_8797] +RelativePath=JIT\Methodical\cctor\simple\precise4_cs_r\precise4_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass020.cmd_8798] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020\castclass020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SecurityExceptionCtor1.cmd_8799] +RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1\SecurityExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt645.cmd_8800] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt645\ConvertToUInt645.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt645 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_383.cmd_8801] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_383\GCSimulator_383.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_383 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated663.cmd_8802] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest663\Generated663\Generated663.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest663\Generated663 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b46292.cmd_8803] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292\b46292.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_f8.cmd_8804] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8\_il_dbgrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoConstructFalse.cmd_8805] +RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse\AutoConstructFalse.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32TryParse.cmd_8806] +RelativePath=CoreMangLib\cti\system\int\Int32TryParse\Int32TryParse.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32TryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16039.cmd_8807] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039\b16039.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HandleCopy.cmd_8808] +RelativePath=GC\API\GCHandle\HandleCopy\HandleCopy.cmd +WorkingDir=GC\API\GCHandle\HandleCopy +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dup_ro.cmd_8809] +RelativePath=JIT\SIMD\Dup_ro\Dup_ro.cmd +WorkingDir=JIT\SIMD\Dup_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgaccum.cmd_8810] +RelativePath=JIT\Methodical\VT\identity\_il_dbgaccum\_il_dbgaccum.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_dbgaccum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcsval.cmd_8811] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsval\_dbglcsval.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecoderCtor.cmd_8812] +RelativePath=CoreMangLib\cti\system\text\decoder\DecoderCtor\DecoderCtor.cmd +WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg7.cmd_8813] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg7\semaphoreopenneg7.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b460385.cmd_8814] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385\b460385.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFLog.cmd_8815] +RelativePath=CoreMangLib\cti\system\mathf\MathFLog\MathFLog.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFLog +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-01_cs_d.cmd_8816] +RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_d\5w1d-01_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Base_1.cmd_8817] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_1\Test_CSharp_Base_1.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddInt_2.cmd_8818] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_2\InterlockedAddInt_2.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relhan2.cmd_8819] +RelativePath=JIT\Methodical\VT\etc\_relhan2\_relhan2.cmd +WorkingDir=JIT\Methodical\VT\etc\_relhan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryIsReadOnly2.cmd_8820] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2\DictionaryIDictionaryIsReadOnly2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_250.cmd_8821] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_250\GCSimulator_250.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8rem_cs_r.cmd_8822] +RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_r\u8rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated391.cmd_8823] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest391\Generated391\Generated391.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest391\Generated391 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed3.cmd_8824] +RelativePath=JIT\Directed\ExcepFilters\mixed3\mixed3\mixed3.cmd +WorkingDir=JIT\Directed\ExcepFilters\mixed3\mixed3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIEnumerableGetEnumerator.cmd_8825] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator\DictionaryIEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass022.cmd_8826] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022\castclass022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetString.cmd_8827] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString\UnicodeEncodingGetString.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value025.cmd_8828] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025\box-unbox-value025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgnative.cmd_8829] +RelativePath=JIT\Methodical\refany\_il_dbgnative\_il_dbgnative.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgnative +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finallyclone.cmd_8830] +RelativePath=JIT\Methodical\flowgraph\bug619534\finallyclone\finallyclone.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\finallyclone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToInt16.cmd_8831] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16\DoubleIConvertibleToInt16.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUShort_2.cmd_8832] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort_2\ThreadStartUShort_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomSample.cmd_8833] +RelativePath=CoreMangLib\cti\system\random\RandomSample\RandomSample.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomSample +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtry_il.cmd_8834] +RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_il\_dbgtry_il.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderLength.cmd_8835] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength\StringBuilderLength.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array_tests.cmd_8836] +RelativePath=JIT\IL_Conformance\Old\objectmodel\array_tests\array_tests.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\array_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[am04waitany.cmd_8837] +RelativePath=baseservices\threading\mutex\abandonedmutex\am04waitany\am04waitany.cmd +WorkingDir=baseservices\threading\mutex\abandonedmutex\am04waitany +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Or_Op_cs_do.cmd_8838] +RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_do\Bool_Or_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumper5.cmd_8839] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumper5\_il_reljumper5.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca.cmd_8840] +RelativePath=JIT\Directed\PREFIX\unaligned\2\ldloca\ldloca.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\ldloca +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1347.cmd_8841] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1347\Generated1347\Generated1347.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1347\Generated1347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNsub_cs_d.cmd_8842] +RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_d\r4NaNsub_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch05.cmd_8843] +RelativePath=baseservices\exceptions\generics\try-catch05\try-catch05.cmd +WorkingDir=baseservices\exceptions\generics\try-catch05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b73786.cmd_8844] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786\b73786.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgaddress.cmd_8845] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbgaddress\_il_dbgaddress.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgaddress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplerethrow_r.cmd_8846] +RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_r\simplerethrow_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated918.cmd_8847] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest918\Generated918\Generated918.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest918\Generated918 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToDateTime.cmd_8848] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime\Int32IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[strswitchfinal_ro.cmd_8849] +RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_ro\strswitchfinal_ro.cmd +WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15539.cmd_8850] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539\b15539.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Localloc.cmd_8851] +RelativePath=JIT\CodeGenBringUpTests\Localloc\Localloc.cmd +WorkingDir=JIT\CodeGenBringUpTests\Localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString22.cmd_8852] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString22\ConvertToString22.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop2_cs_d.cmd_8853] +RelativePath=JIT\Directed\UnrollLoop\loop2_cs_d\loop2_cs_d.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldelemnullarr2_il_r.cmd_8854] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r\ldelemnullarr2_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated696.cmd_8855] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest696\Generated696\Generated696.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest696\Generated696 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrecurse_tail_call.cmd_8856] +RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call\_il_relrecurse_tail_call.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_i4_i1.cmd_8857] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1\ldc_conv_ovf_i4_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case11.cmd_8858] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11\case11.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[innerFinally_d.cmd_8859] +RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d\innerFinally_d.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_231.cmd_8860] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_231\GCSimulator_231.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_231 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1211.cmd_8861] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1211\Generated1211\Generated1211.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1211\Generated1211 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AVException02.cmd_8862] +RelativePath=baseservices\exceptions\AccessViolationException\AVException02\AVException02.cmd +WorkingDir=baseservices\exceptions\AccessViolationException\AVException02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_short_1_r.cmd_8863] +RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_r\expl_short_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderLength_cti.cmd_8864] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti\StringBuilderLength_cti.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw307137.cmd_8865] +RelativePath=Loader\classloader\regressions\307137\vsw307137\vsw307137.cmd +WorkingDir=Loader\classloader\regressions\307137\vsw307137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_282.cmd_8866] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_282\GCSimulator_282.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_282 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated577.cmd_8867] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest577\Generated577\Generated577.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest577\Generated577 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b20079.cmd_8868] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079\b20079.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCKeepAlive.cmd_8869] +RelativePath=CoreMangLib\cti\system\gc\GCKeepAlive\GCKeepAlive.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCKeepAlive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13586.cmd_8870] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586\b13586.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_16.cmd_8871] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_16\GCSimulator_16.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Haar-likeFeaturesGeneric_ro.cmd_8872] +RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_ro\Haar-likeFeaturesGeneric_ro.cmd +WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend19.cmd_8873] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19\StringBuilderAppend19.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt328.cmd_8874] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt328\ConvertToUInt328.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt328 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassenum_r.cmd_8875] +RelativePath=JIT\Directed\nullabletypes\castclassenum_r\castclassenum_r.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassenum_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally-struct02.cmd_8876] +RelativePath=baseservices\exceptions\generics\try-finally-struct02\try-finally-struct02.cmd +WorkingDir=baseservices\exceptions\generics\try-finally-struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0G_d.cmd_8877] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_d\hfa_nf0G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b191926.cmd_8878] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926\b191926.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14770.cmd_8879] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770\b14770.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37636.cmd_8880] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636\b37636.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNdiv_cs_do.cmd_8881] +RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_do\r4NaNdiv_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_do.cmd_8882] +RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_do\classarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated91.cmd_8883] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest91\Generated91\Generated91.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest91\Generated91 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated640.cmd_8884] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest640\Generated640\Generated640.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest640\Generated640 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated308.cmd_8885] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest308\Generated308\Generated308.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest308\Generated308 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leave1.cmd_8886] +RelativePath=JIT\Directed\IL\leave\leave1\leave1.cmd +WorkingDir=JIT\Directed\IL\leave\leave1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventAttributesSpecialName.cmd_8887] +RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName\EventAttributesSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow03_sub.cmd_8888] +RelativePath=JIT\jit64\rtchecks\overflow\overflow03_sub\overflow03_sub.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldc_mulovf.cmd_8889] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf\_speed_dbgs_ldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HeapSort.cmd_8890] +RelativePath=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort\HeapSort.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbghan3_ref.cmd_8891] +RelativePath=JIT\Methodical\VT\etc\_dbghan3_ref\_dbghan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh13_large.cmd_8892] +RelativePath=JIT\jit64\localloc\ehverify\eh13_large\eh13_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh13_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_cs_ro.cmd_8893] +RelativePath=JIT\Directed\shift\uint16_cs_ro\uint16_cs_ro.cmd +WorkingDir=JIT\Directed\shift\uint16_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1453.cmd_8894] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1453\Generated1453\Generated1453.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1453\Generated1453 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToBoolean.cmd_8895] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean\DoubleIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pointerexpr1.cmd_8896] +RelativePath=JIT\jit64\opt\cse\pointerexpr1\pointerexpr1.cmd +WorkingDir=JIT\jit64\opt\cse\pointerexpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObjectDisposedExceptionMessage.cmd_8897] +RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage\ObjectDisposedExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relgcreport.cmd_8898] +RelativePath=JIT\Methodical\refany\_relgcreport\_relgcreport.cmd +WorkingDir=JIT\Methodical\refany\_relgcreport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null021.cmd_8899] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021\box-unbox-null021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread11.cmd_8900] +RelativePath=baseservices\threading\generics\WaitCallback\thread11\thread11.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[severalnesteddeadehregions_d.cmd_8901] +RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d\severalnesteddeadehregions_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test10.cmd_8902] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test10\test10.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli4u4.cmd_8903] +RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u4\_il_reli4u4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1450.cmd_8904] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1450\Generated1450\Generated1450.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1450\Generated1450 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryContainsKey.cmd_8905] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey\DictionaryContainsKey.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CS_SLENullRefEx.cmd_8906] +RelativePath=baseservices\threading\coverage\Nullref\CS_SLENullRefEx\CS_SLENullRefEx.cmd +WorkingDir=baseservices\threading\coverage\Nullref\CS_SLENullRefEx +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleHandle_PSC.cmd_8907] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC\SafeHandleHandle_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b62498.cmd_8908] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498\b62498.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-04_cs_d.cmd_8909] +RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_d\5w1d-04_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionGetMessage.cmd_8910] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage\FileNotFoundExceptionGetMessage.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics034.cmd_8911] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034\castclass-generics034.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1473.cmd_8912] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1473\Generated1473\Generated1473.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1473\Generated1473 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineMethod.cmd_8913] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod\OperandTypeInlineMethod.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_253.cmd_8914] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_253\GCSimulator_253.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_253 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgshortsig.cmd_8915] +RelativePath=JIT\Methodical\refany\_il_dbgshortsig\_il_dbgshortsig.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgshortsig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringTrim2.cmd_8916] +RelativePath=CoreMangLib\cti\system\string\StringTrim2\StringTrim2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringTrim2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19112a.cmd_8917] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a\b19112a.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b347422.cmd_8918] +RelativePath=Loader\classloader\regressions\347422\b347422\b347422.cmd +WorkingDir=Loader\classloader\regressions\347422\b347422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PositiveCases.cmd_8919] +RelativePath=JIT\Directed\forceinlining\PositiveCases\PositiveCases.cmd +WorkingDir=JIT\Directed\forceinlining\PositiveCases +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix3.cmd_8920] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3\OpCodesPrefix3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryKeys2.cmd_8921] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2\DictionaryIDictionaryKeys2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8220.cmd_8922] +RelativePath=JIT\Regression\JitBlue\GitHub_8220\GitHub_8220\GitHub_8220.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8220\GitHub_8220 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1018.cmd_8923] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1018\Generated1018\Generated1018.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1018\Generated1018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToDecimal.cmd_8924] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal\UInt32IConvertibleToDecimal.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdloc_3.cmd_8925] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3\OpCodesLdloc_3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgbinop.cmd_8926] +RelativePath=JIT\Methodical\int64\misc\_speed_dbgbinop\_speed_dbgbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_class01.cmd_8927] +RelativePath=JIT\Generics\Parameters\instance_equalnull_class01\instance_equalnull_class01.cmd +WorkingDir=JIT\Generics\Parameters\instance_equalnull_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test13.cmd_8928] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test13\test13.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw536564.cmd_8929] +RelativePath=Loader\classloader\generics\regressions\536564\vsw536564\vsw536564.cmd +WorkingDir=Loader\classloader\generics\regressions\536564\vsw536564 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated187.cmd_8930] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest187\Generated187\Generated187.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest187\Generated187 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated506.cmd_8931] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest506\Generated506\Generated506.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest506\Generated506 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b309548.cmd_8932] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548\b309548.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hashcode_r.cmd_8933] +RelativePath=JIT\Directed\nullabletypes\hashcode_r\hashcode_r.cmd +WorkingDir=JIT\Directed\nullabletypes\hashcode_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_i2.cmd_8934] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i2\ldarg_s_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeByte.cmd_8935] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeByte\TypeCodeByte.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox001.cmd_8936] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox001\Unbox001.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-5-5-two.cmd_8937] +RelativePath=Loader\classloader\rmv\il\RMV-2-5-5-two\RMV-2-5-5-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-5-5-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1b_cs_do.cmd_8938] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_do\xprecise1b_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchincatch_r.cmd_8939] +RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_r\switchincatch_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-01_cs_do.cmd_8940] +RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_do\5w1d-01_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated769.cmd_8941] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest769\Generated769\Generated769.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest769\Generated769 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31748.cmd_8942] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748\b31748.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StoreElement_ro.cmd_8943] +RelativePath=JIT\SIMD\StoreElement_ro\StoreElement_ro.cmd +WorkingDir=JIT\SIMD\StoreElement_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12343.cmd_8944] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343\b12343.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullReferenceExceptionCtor1.cmd_8945] +RelativePath=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1\NullReferenceExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Filter.cmd_8946] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\Filter\Filter.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\Filter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefloc_u2.cmd_8947] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_u2\_il_relrefloc_u2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface08.cmd_8948] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface08\MultipleInterface08.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structva1_1.cmd_8949] +RelativePath=JIT\jit64\gc\misc\structva1_1\structva1_1.cmd +WorkingDir=JIT\jit64\gc\misc\structva1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_ro.cmd_8950] +RelativePath=JIT\Methodical\eh\basics\throwinfinally_ro\throwinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initobj.cmd_8951] +RelativePath=JIT\IL_Conformance\Old\objectmodel\initobj\initobj.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\initobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArgumentOutOfRangeExceptionCtor.cmd_8952] +RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor\ArgumentOutOfRangeExceptionCtor.cmd +WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1247.cmd_8953] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1247\Generated1247\Generated1247.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1247\Generated1247 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit03.cmd_8954] +RelativePath=baseservices\threading\generics\Monitor\EnterExit03\EnterExit03.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I4.cmd_8955] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4\OpCodesConv_Ovf_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIndexOf3b.cmd_8956] +RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3b\ArrayIndexOf3b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated533.cmd_8957] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest533\Generated533\Generated533.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest533\Generated533 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1022.cmd_8958] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1022\Generated1022\Generated1022.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1022\Generated1022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated102.cmd_8959] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest102\Generated102\Generated102.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest102\Generated102 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldfldr4_il_r.cmd_8960] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r\ldfldr4_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Simpletest2.cmd_8961] +RelativePath=JIT\Methodical\stringintern\_Simpletest2\_Simpletest2.cmd +WorkingDir=JIT\Methodical\stringintern\_Simpletest2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalgotoinatryblockinahandler_d.cmd_8962] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d\nonlocalgotoinatryblockinahandler_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypedReference.cmd_8963] +RelativePath=JIT\Directed\TypedReference\TypedReference\TypedReference.cmd +WorkingDir=JIT\Directed\TypedReference\TypedReference +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollGenericICollAdd.cmd_8964] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd\ValueCollGenericICollAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1036.cmd_8965] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1036\Generated1036\Generated1036.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1036\Generated1036 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface07.cmd_8966] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface07\MultipleInterface07.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1297.cmd_8967] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1297\Generated1297\Generated1297.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1297\Generated1297 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedfinally_ro.cmd_8968] +RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro\throwinnestedfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated579.cmd_8969] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest579\Generated579\Generated579.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest579\Generated579 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[endofstreamexceptionctor1_PSC.cmd_8970] +RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC\endofstreamexceptionctor1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baseclass03.cmd_8971] +RelativePath=JIT\Generics\Instantiation\Classes\baseclass03\baseclass03.cmd +WorkingDir=JIT\Generics\Instantiation\Classes\baseclass03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class06.cmd_8972] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06\class06.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovfldiv1_il_d.cmd_8973] +RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_d\ovfldiv1_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_flow.cmd_8974] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow\_il_reli_flow.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated288.cmd_8975] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest288\Generated288\Generated288.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest288\Generated288 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated786.cmd_8976] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest786\Generated786\Generated786.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest786\Generated786 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32ToString2.cmd_8977] +RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString2\UInt32ToString2.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_218.cmd_8978] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_218\GCSimulator_218.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated620.cmd_8979] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest620\Generated620\Generated620.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest620\Generated620 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox021.cmd_8980] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021\box-unbox021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-3.cmd_8981] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-3\_relunsafe-3.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictEnumIDictEnumget_Key.cmd_8982] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key\DictEnumIDictEnumget_Key.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[19896.cmd_8983] +RelativePath=baseservices\exceptions\regressions\v1.0\19896\19896.cmd +WorkingDir=baseservices\exceptions\regressions\v1.0\19896 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Target_neg.cmd_8984] +RelativePath=GC\API\GCHandle\Target_neg\Target_neg.cmd +WorkingDir=GC\API\GCHandle\Target_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b62145.cmd_8985] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145\b62145.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b423755.cmd_8986] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755\b423755.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Finalizer.cmd_8987] +RelativePath=GC\Features\HeapExpansion\Finalizer\Finalizer.cmd +WorkingDir=GC\Features\HeapExpansion\Finalizer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyProp.cmd_8988] +RelativePath=JIT\opt\AssertionPropagation\CopyProp\CopyProp.cmd +WorkingDir=JIT\opt\AssertionPropagation\CopyProp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LVRefCnt1.cmd_8989] +RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt1\LVRefCnt1.cmd +WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend16.cmd_8990] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16\StringBuilderAppend16.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I1.cmd_8991] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1\OpCodesConv_Ovf_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8_cs_d.cmd_8992] +RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_d\r8_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_314.cmd_8993] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_314\GCSimulator_314.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Peer_6.cmd_8994] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6\Generic_Test_CSharp_Peer_6.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics024.cmd_8995] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024\box-unbox-generics024.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1410.cmd_8996] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1410\Generated1410\Generated1410.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1410\Generated1410 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02.cmd_8997] +RelativePath=JIT\Generics\Instantiation\Interfaces\struct02\struct02.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgbox.cmd_8998] +RelativePath=JIT\Methodical\int64\misc\_speed_dbgbox\_speed_dbgbox.cmd +WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_long_1_r.cmd_8999] +RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_r\seq_long_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_passing_class01.cmd_9000] +RelativePath=JIT\Generics\Locals\static_passing_class01\static_passing_class01.cmd +WorkingDir=JIT\Generics\Locals\static_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_r4.cmd_9001] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r4\_il_dbghuge_r4.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hashcode_do.cmd_9002] +RelativePath=JIT\Directed\nullabletypes\hashcode_do\hashcode_do.cmd +WorkingDir=JIT\Directed\nullabletypes\hashcode_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsuperlong.cmd_9003] +RelativePath=JIT\Methodical\int64\superlong\_il_relsuperlong\_il_relsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_il_relsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array.cmd_9004] +RelativePath=JIT\opt\Inline\tests\array\array.cmd +WorkingDir=JIT\opt\Inline\tests\array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0A_r.cmd_9005] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_r\hfa_nf0A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdc_I4_8.cmd_9006] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8\OpCodesLdc_I4_8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetEventCtor.cmd_9007] +RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor\AutoResetEventCtor.cmd +WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1A_d.cmd_9008] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_d\hfa_nd1A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_r_try.cmd_9009] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try\staticFieldExprUnchecked1_r_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inlined_Multinested.cmd_9010] +RelativePath=Loader\classloader\TypeInitialization\Inlining\Inlined_Multinested\Inlined_Multinested.cmd +WorkingDir=Loader\classloader\TypeInitialization\Inlining\Inlined_Multinested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16386.cmd_9011] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386\b16386.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated574.cmd_9012] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest574\Generated574\Generated574.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest574\Generated574 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_calli.cmd_9013] +RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_calli\_il_relisinst_calli.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b57518.cmd_9014] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518\b57518.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMax_r.cmd_9015] +RelativePath=JIT\SIMD\VectorMax_r\VectorMax_r.cmd +WorkingDir=JIT\SIMD\VectorMax_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14325.cmd_9016] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325\b14325.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics006.cmd_9017] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006\box-unbox-generics006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACC_r.cmd_9018] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r\CGRecurseACC_r.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgconvovf_i8_i.cmd_9019] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i\_il_dbgconvovf_i8_i.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread30.cmd_9020] +RelativePath=baseservices\threading\generics\WaitCallback\thread30\thread30.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_seq.cmd_9021] +RelativePath=Loader\classloader\generics\Layout\General\class01_seq\class01_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class01_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4_cs_r.cmd_9022] +RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_r\r4_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relthisnull.cmd_9023] +RelativePath=JIT\Methodical\Invoke\thiscall\_speed_relthisnull\_speed_relthisnull.cmd +WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_relthisnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[superpmicollect.cmd_9024] +RelativePath=JIT\superpmi\superpmicollect\superpmicollect.cmd +WorkingDir=JIT\superpmi\superpmicollect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;EXCLUDED;REQUIRES_SOURCES +HostStyle=0 + +[ManualResetCast2.cmd_9025] +RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2\ManualResetCast2.cmd +WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgnestval_cs.cmd_9026] +RelativePath=JIT\Methodical\Boxing\misc\_odbgnestval_cs\_odbgnestval_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_odbgnestval_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1612.cmd_9027] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1612\ConvertToUInt1612.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1612 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ref2iu_il_d.cmd_9028] +RelativePath=JIT\Directed\refbyref\ref2iu_il_d\ref2iu_il_d.cmd +WorkingDir=JIT\Directed\refbyref\ref2iu_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_struct01.cmd_9029] +RelativePath=JIT\Generics\Parameters\instance_equalnull_struct01\instance_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Parameters\instance_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catch2_r.cmd_9030] +RelativePath=JIT\Directed\leave\catch2_r\catch2_r.cmd +WorkingDir=JIT\Directed\leave\catch2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToUInt16.cmd_9031] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16\Int64IConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct6_2.cmd_9032] +RelativePath=JIT\jit64\gc\misc\struct6_2\struct6_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct6_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_420.cmd_9033] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_420\GCSimulator_420.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_420 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated421.cmd_9034] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest421\Generated421\Generated421.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest421\Generated421 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated228.cmd_9035] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest228\Generated228\Generated228.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest228\Generated228 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test6_ImplementingClass.cmd_9036] +RelativePath=Loader\classloader\PrivateInterfaceImpl\Test6_ImplementingClass\Test6_ImplementingClass.cmd +WorkingDir=Loader\classloader\PrivateInterfaceImpl\Test6_ImplementingClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated564.cmd_9037] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest564\Generated564\Generated564.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest564\Generated564 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumeratorCurrent.cmd_9038] +RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent\EnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32CompareTo2.cmd_9039] +RelativePath=CoreMangLib\cti\system\uint32\UInt32CompareTo2\UInt32CompareTo2.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32CompareTo2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_u4.cmd_9040] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4\cgt_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b00722.cmd_9041] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722\b00722.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_397793.cmd_9042] +RelativePath=JIT\Regression\JitBlue\DevDiv_397793\DevDiv_397793\DevDiv_397793.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_397793\DevDiv_397793 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b111192.cmd_9043] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192\b111192.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finally.cmd_9044] +RelativePath=baseservices\exceptions\regressions\V1\SEH\COOL\finally\finally.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\COOL\finally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinclassconstructor_r.cmd_9045] +RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_r\throwinclassconstructor_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated137.cmd_9046] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest137\Generated137\Generated137.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest137\Generated137 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b180381a.cmd_9047] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a\b180381a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LargeArrayTest.cmd_9048] +RelativePath=Regressions\coreclr\0075\LargeArrayTest\LargeArrayTest.cmd +WorkingDir=Regressions\coreclr\0075\LargeArrayTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[caninline_ro.cmd_9049] +RelativePath=JIT\jit64\opt\inl\caninline_ro\caninline_ro.cmd +WorkingDir=JIT\jit64\opt\inl\caninline_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorHWAccel2_ro.cmd_9050] +RelativePath=JIT\SIMD\VectorHWAccel2_ro\VectorHWAccel2_ro.cmd +WorkingDir=JIT\SIMD\VectorHWAccel2_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32879.cmd_9051] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879\b32879.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hasvalue_r.cmd_9052] +RelativePath=JIT\Directed\nullabletypes\hasvalue_r\hasvalue_r.cmd +WorkingDir=JIT\Directed\nullabletypes\hasvalue_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallytrycatch_ro.cmd_9053] +RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_ro\tryfinallytrycatch_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamReadTimeOut_PSC.cmd_9054] +RelativePath=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC\StreamReadTimeOut_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relsuperlong.cmd_9055] +RelativePath=JIT\Methodical\int64\superlong\_speed_relsuperlong\_speed_relsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_speed_relsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldtokena.cmd_9056] +RelativePath=JIT\Methodical\ldtoken\_il_dbgldtokena\_il_dbgldtokena.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtokena +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[suppressfinalize.cmd_9057] +RelativePath=GC\LargeMemory\API\gc\suppressfinalize\suppressfinalize.cmd +WorkingDir=GC\LargeMemory\API\gc\suppressfinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[StringPadLeft.cmd_9058] +RelativePath=CoreMangLib\cti\system\string\StringPadLeft\StringPadLeft.cmd +WorkingDir=CoreMangLib\cti\system\string\StringPadLeft +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanEquals1.cmd_9059] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals1\TimeSpanEquals1.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBeq.cmd_9060] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq\OpCodesBeq.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglcs_long.cmd_9061] +RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_long\_il_dbglcs_long.cmd +WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_long +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41002.cmd_9062] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002\b41002.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTotalHours.cmd_9063] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalHours\TimeSpanTotalHours.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalHours +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrToUInt64.cmd_9064] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64\UIntPtrToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrecurse_tail_calli.cmd_9065] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli\_il_dbgrecurse_tail_calli.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch02.cmd_9066] +RelativePath=baseservices\exceptions\generics\nested-try-catch02\nested-try-catch02.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IFormatableToString.cmd_9067] +RelativePath=CoreMangLib\cti\system\iformatable\IFormatableToString\IFormatableToString.cmd +WorkingDir=CoreMangLib\cti\system\iformatable\IFormatableToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1003.cmd_9068] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1003\Generated1003\Generated1003.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1003\Generated1003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_i4.cmd_9069] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4\add_ovf_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface001.cmd_9070] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001\castclass-interface001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeOpCodeType.cmd_9071] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType\OpCodeOpCodeType.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callipinvoke_il_r.cmd_9072] +RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r\callipinvoke_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated993.cmd_9073] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest993\Generated993\Generated993.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest993\Generated993 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[format.cmd_9074] +RelativePath=JIT\Methodical\refany\format\format.cmd +WorkingDir=JIT\Methodical\refany\format +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldrem_cs_r.cmd_9075] +RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_r\lclfldrem_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b353858.cmd_9076] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858\b353858.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_b.cmd_9077] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_b\_il_dbghuge_b.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_423.cmd_9078] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_423\GCSimulator_423.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvtret2.cmd_9079] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret2\_il_dbgvtret2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetMaxByteCount.cmd_9080] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount\UnicodeEncodingGetMaxByteCount.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIsNegativeInfinity.cmd_9081] +RelativePath=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity\DoubleIsNegativeInfinity.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53995.cmd_9082] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995\b53995.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign5.cmd_9083] +RelativePath=CoreMangLib\cti\system\math\MathSign5\MathSign5.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_161.cmd_9084] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_161\GCSimulator_161.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_161 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10858.cmd_9085] +RelativePath=JIT\opt\Devirtualization\GitHub_10858\GitHub_10858.cmd +WorkingDir=JIT\opt\Devirtualization\GitHub_10858 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1197.cmd_9086] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1197\Generated1197\Generated1197.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1197\Generated1197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i57.cmd_9087] +RelativePath=JIT\jit64\mcc\interop\mcc_i57\mcc_i57.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i57 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PlatformNotSupportedExceptionCtor3.cmd_9088] +RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3\PlatformNotSupportedExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1b_cs_d.cmd_9089] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_d\xprecise1b_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_3.cmd_9090] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_3\ConvertToInt64_3.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localgotoinahandler_do.cmd_9091] +RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_do\localgotoinahandler_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct5_2.cmd_9092] +RelativePath=JIT\jit64\gc\misc\struct5_2\struct5_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct5_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1204.cmd_9093] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1204\Generated1204\Generated1204.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1204\Generated1204 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated225.cmd_9094] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest225\Generated225\Generated225.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest225\Generated225 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_r.cmd_9095] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_r\mixedexpr1_r.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_351.cmd_9096] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_351\GCSimulator_351.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_351 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsReturnValue.cmd_9097] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue\AttributeTargetsReturnValue.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax5.cmd_9098] +RelativePath=CoreMangLib\cti\system\math\MathMax5\MathMax5.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41990.cmd_9099] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990\b41990.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_141.cmd_9100] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_141\GCSimulator_141.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_141 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStatic03.cmd_9101] +RelativePath=baseservices\threading\threadstatic\ThreadStatic03\ThreadStatic03.cmd +WorkingDir=baseservices\threading\threadstatic\ThreadStatic03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_ro_loop.cmd_9102] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop\staticFieldExpr1_ro_loop.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToSingle.cmd_9103] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle\UInt32IConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated365.cmd_9104] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest365\Generated365\Generated365.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest365\Generated365 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayTypeMismatchExceptionctor1.cmd_9105] +RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1\ArrayTypeMismatchExceptionctor1.cmd +WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_il_il.cmd_9106] +RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_il\_relsin_il_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class04.cmd_9107] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04\class04.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticCalls.cmd_9108] +RelativePath=JIT\CodeGenBringUpTests\StaticCalls\StaticCalls.cmd +WorkingDir=JIT\CodeGenBringUpTests\StaticCalls +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToDouble.cmd_9109] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToDouble\DecimalToDouble.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_flood.cmd_9110] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood\_il_reli_flood.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-33-two.cmd_9111] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-33-two\RMV-2-8-33-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-33-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug62403.cmd_9112] +RelativePath=Loader\classloader\generics\Constraints\Regressions\ddb62403\bug62403\bug62403.cmd +WorkingDir=Loader\classloader\generics\Constraints\Regressions\ddb62403\bug62403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[self_override1.cmd_9113] +RelativePath=Loader\classloader\MethodImpl\self_override1\self_override1.cmd +WorkingDir=Loader\classloader\MethodImpl\self_override1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[endfinallyinloop_r.cmd_9114] +RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_r\endfinallyinloop_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorDiv_ro.cmd_9115] +RelativePath=JIT\SIMD\VectorDiv_ro\VectorDiv_ro.cmd +WorkingDir=JIT\SIMD\VectorDiv_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1338.cmd_9116] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1338\Generated1338\Generated1338.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1338\Generated1338 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToSingle.cmd_9117] +RelativePath=CoreMangLib\cti\system\single\SingleToSingle\SingleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45535.cmd_9118] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535\b45535.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16238.cmd_9119] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238\b16238.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27811.cmd_9120] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811\b27811.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumToString3.cmd_9121] +RelativePath=CoreMangLib\cti\system\enum\EnumToString3\EnumToString3.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[devdiv_815942.cmd_9122] +RelativePath=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942\devdiv_815942.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne.cmd_9123] +RelativePath=JIT\IL_Conformance\Old\Base\bne\bne.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bne +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4rem_cs_r.cmd_9124] +RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_r\i4rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_194.cmd_9125] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_194\GCSimulator_194.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_194 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FixedBufferAttributeCtor.cmd_9126] +RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor\FixedBufferAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_121.cmd_9127] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_121\GCSimulator_121.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_121 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Serialize.cmd_9128] +RelativePath=JIT\Performance\CodeQuality\Serialization\Serialize\Serialize.cmd +WorkingDir=JIT\Performance\CodeQuality\Serialization\Serialize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated571.cmd_9129] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest571\Generated571\Generated571.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest571\Generated571 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MemoryStreamCtor5.cmd_9130] +RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5\MemoryStreamCtor5.cmd +WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics2_d.cmd_9131] +RelativePath=JIT\Methodical\nonvirtualcall\generics2_d\generics2_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PlatformNotSupportedExceptionCtor2.cmd_9132] +RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2\PlatformNotSupportedExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89600.cmd_9133] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600\b89600.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_r4.cmd_9134] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r4\bge_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEnumeratorMoveNext.cmd_9135] +RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext\CharEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparisonCurrentCulture.cmd_9136] +RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture\StringComparisonCurrentCulture.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesClassSemanticsMask.cmd_9137] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask\TypeAttributesClassSemanticsMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i17.cmd_9138] +RelativePath=JIT\jit64\mcc\interop\mcc_i17\mcc_i17.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i17 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPush0.cmd_9139] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0\StackBehaviourPush0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryEnter05.cmd_9140] +RelativePath=baseservices\threading\generics\Monitor\TryEnter05\TryEnter05.cmd +WorkingDir=baseservices\threading\generics\Monitor\TryEnter05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAtan.cmd_9141] +RelativePath=CoreMangLib\cti\system\math\MathAtan\MathAtan.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAtan +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveTailCall.cmd_9142] +RelativePath=JIT\CodeGenBringUpTests\RecursiveTailCall\RecursiveTailCall.cmd +WorkingDir=JIT\CodeGenBringUpTests\RecursiveTailCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics004.cmd_9143] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004\castclass-generics004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueCtor2.cmd_9144] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2\QueueCtor2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnmanagedToManaged.cmd_9145] +RelativePath=baseservices\exceptions\regressions\V1\SEH\VJ\UnmanagedToManaged\UnmanagedToManaged.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\VJ\UnmanagedToManaged +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;EXCLUDED;RVA_STATIC +HostStyle=0 + +[_il_dbgisinst_catch.cmd_9146] +RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch\_il_dbgisinst_catch.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly2_il_r.cmd_9147] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r\switchdefaultonly2_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relfibo_il.cmd_9148] +RelativePath=JIT\Methodical\Boxing\functional\_relfibo_il\_relfibo_il.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b34953.cmd_9149] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953\b34953.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToType.cmd_9150] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToType\Int16IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault-struct02.cmd_9151] +RelativePath=baseservices\exceptions\generics\try-fault-struct02\try-fault-struct02.cmd +WorkingDir=baseservices\exceptions\generics\try-fault-struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hello.cmd_9152] +RelativePath=Regressions\coreclr\0416\hello\hello.cmd +WorkingDir=Regressions\coreclr\0416\hello +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend1.cmd_9153] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1\StringBuilderAppend1.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case1.cmd_9154] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1\case1.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics033.cmd_9155] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033\box-unbox-generics033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfault_tail.cmd_9156] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail\_il_dbgcatchfault_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b76267.cmd_9157] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267\b76267.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_i8.cmd_9158] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8\ldarga_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_b400971b400971.cmd_9159] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971\_b400971b400971.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated838.cmd_9160] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest838\Generated838\Generated838.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest838\Generated838 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions01.cmd_9161] +RelativePath=baseservices\exceptions\generics\GenericExceptions01\GenericExceptions01.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i65.cmd_9162] +RelativePath=JIT\jit64\mcc\interop\mcc_i65\mcc_i65.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i65 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MainApp.cmd_9163] +RelativePath=Loader\classloader\nesting\Regressions\dev10_602978\MainApp\MainApp.cmd +WorkingDir=Loader\classloader\nesting\Regressions\dev10_602978\MainApp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_i2.cmd_9164] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2\ldc_sub_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated115.cmd_9165] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest115\Generated115\Generated115.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest115\Generated115 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefanyval.cmd_9166] +RelativePath=JIT\Methodical\xxobj\operand\_dbgrefanyval\_dbgrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_dbgrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated856.cmd_9167] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest856\Generated856\Generated856.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest856\Generated856 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reljumper4.cmd_9168] +RelativePath=JIT\Methodical\VT\callconv\_il_reljumper4\_il_reljumper4.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null026.cmd_9169] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026\box-unbox-null026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1G_d.cmd_9170] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_d\hfa_nd1G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[longinc.cmd_9171] +RelativePath=baseservices\threading\interlocked\increment\longinc\longinc.cmd +WorkingDir=baseservices\threading\interlocked\increment\longinc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventHandlerBeginInvoke.cmd_9172] +RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke\EventHandlerBeginInvoke.cmd +WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2E_r.cmd_9173] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_r\hfa_nd2E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[strswitchfinal_r.cmd_9174] +RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_r\strswitchfinal_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1115.cmd_9175] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1115\Generated1115\Generated1115.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1115\Generated1115 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1217.cmd_9176] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1217\Generated1217\Generated1217.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1217\Generated1217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MulticastDelegateGetHashCode.cmd_9177] +RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode\MulticastDelegateGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf2E_r.cmd_9178] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_r\hfa_sf2E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_157.cmd_9179] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_157\GCSimulator_157.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_157 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04914.cmd_9180] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914\b04914.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_i.cmd_9181] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i\ldarg_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ModConst.cmd_9182] +RelativePath=JIT\CodeGenBringUpTests\ModConst\ModConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\ModConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null042.cmd_9183] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042\box-unbox-null042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_5.cmd_9184] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_5\GCSimulator_5.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[u8div_cs_d.cmd_9185] +RelativePath=JIT\Methodical\divrem\div\u8div_cs_d\u8div_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\div\u8div_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleCtor_cti_PSC.cmd_9186] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC\SafeHandleCtor_cti_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorCast_ro.cmd_9187] +RelativePath=JIT\SIMD\VectorCast_ro\VectorCast_ro.cmd +WorkingDir=JIT\SIMD\VectorCast_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_do.cmd_9188] +RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do\structarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Base_2.cmd_9189] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_2\Test_CSharp_Base_2.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsDigit2.cmd_9190] +RelativePath=CoreMangLib\cti\system\char\CharIsDigit2\CharIsDigit2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsDigit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated475.cmd_9191] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest475\Generated475\Generated475.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest475\Generated475 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw1dimarray_d.cmd_9192] +RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_d\throw1dimarray_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated592.cmd_9193] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest592\Generated592\Generated592.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest592\Generated592 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw583649.cmd_9194] +RelativePath=Loader\classloader\regressions\583649\vsw583649\vsw583649.cmd +WorkingDir=Loader\classloader\regressions\583649\vsw583649 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relldobj_R4.cmd_9195] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4\_il_relldobj_R4.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[field_tests.cmd_9196] +RelativePath=JIT\Directed\PREFIX\unaligned\4\field_tests\field_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\field_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call05_small.cmd_9197] +RelativePath=JIT\jit64\localloc\call\call05_small\call05_small.cmd +WorkingDir=JIT\jit64\localloc\call\call05_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_u8.cmd_9198] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8\sub_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_8.cmd_9199] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_8\GCSimulator_8.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10894.cmd_9200] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894\b10894.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relunsafe-6.cmd_9201] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-6\_relunsafe-6.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b448208.cmd_9202] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208\b448208.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbggcval.cmd_9203] +RelativePath=JIT\Methodical\tailcall\_il_dbggcval\_il_dbggcval.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbggcval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14428.cmd_9204] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428\b14428.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadInitExcepBFI.cmd_9205] +RelativePath=Loader\classloader\TypeInitialization\CctorsWithSideEffects\TypeLoadInitExcepBFI\TypeLoadInitExcepBFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CctorsWithSideEffects\TypeLoadInitExcepBFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_i1.cmd_9206] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i1\ldloc_s_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimal_cs_r.cmd_9207] +RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_r\decimal_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated378.cmd_9208] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest378\Generated378\Generated378.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest378\Generated378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_d.cmd_9209] +RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d\stfldstatic1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class_ExplicitOverrideVirtualNewslotFinal.cmd_9210] +RelativePath=Loader\classloader\generics\VSD\Class_ExplicitOverrideVirtualNewslotFinal\Class_ExplicitOverrideVirtualNewslotFinal.cmd +WorkingDir=Loader\classloader\generics\VSD\Class_ExplicitOverrideVirtualNewslotFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3217.cmd_9211] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3217\ConvertToUInt3217.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3217 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvtret.cmd_9212] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret\_il_dbgvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExitNull.cmd_9213] +RelativePath=baseservices\threading\monitor\exit\ExitNull\ExitNull.cmd +WorkingDir=baseservices\threading\monitor\exit\ExitNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_ro.cmd_9214] +RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro\classarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySetValue2b.cmd_9215] +RelativePath=CoreMangLib\cti\system\array\ArraySetValue2b\ArraySetValue2b.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InProd.cmd_9216] +RelativePath=JIT\Performance\CodeQuality\BenchF\InProd\InProd\InProd.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\InProd\InProd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rels_ldc_mul.cmd_9217] +RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mul\_rels_ldc_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LargeNumberOfArgs.cmd_9218] +RelativePath=JIT\Directed\forceinlining\LargeNumberOfArgs\LargeNumberOfArgs.cmd +WorkingDir=JIT\Directed\forceinlining\LargeNumberOfArgs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48929.cmd_9219] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929\b48929.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal5.cmd_9220] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal5\ConvertToDecimal5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relpointer_i.cmd_9221] +RelativePath=JIT\Methodical\tailcall\_il_relpointer_i\_il_relpointer_i.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relpointer_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[_relunsafe-5.cmd_9222] +RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-5\_relunsafe-5.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case1.cmd_9223] +RelativePath=Loader\classloader\v1\M10\Acceptance\Case1\Case1.cmd +WorkingDir=Loader\classloader\v1\M10\Acceptance\Case1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DllNotFoundExceptionCtor3.cmd_9224] +RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3\DllNotFoundExceptionCtor3.cmd +WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartString.cmd_9225] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartString\ThreadStartString.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldc_mulovf.cmd_9226] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mulovf\_dbgldc_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDouble9.cmd_9227] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble9\ConvertToDouble9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89546.cmd_9228] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546\b89546.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_112.cmd_9229] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_112\GCSimulator_112.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_112 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i54.cmd_9230] +RelativePath=JIT\jit64\mcc\interop\mcc_i54\mcc_i54.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i54 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrCtor_Int32.cmd_9231] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32\IntPtrCtor_Int32.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-catch04.cmd_9232] +RelativePath=baseservices\exceptions\generics\try-catch04\try-catch04.cmd +WorkingDir=baseservices\exceptions\generics\try-catch04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CreateGeneric_ro.cmd_9233] +RelativePath=JIT\SIMD\CreateGeneric_ro\CreateGeneric_ro.cmd +WorkingDir=JIT\SIMD\CreateGeneric_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgisinst_ldloc.cmd_9234] +RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldloc\_dbgisinst_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_331.cmd_9235] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_331\GCSimulator_331.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_331 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reltest_2b.cmd_9236] +RelativePath=JIT\Methodical\tailcall\_il_reltest_2b\_il_reltest_2b.cmd +WorkingDir=JIT\Methodical\tailcall\_il_reltest_2b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch6.cmd_9237] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch6\ArrayBinarySearch6.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b51515.cmd_9238] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515\b51515.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samerethrowtwice_d.cmd_9239] +RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_d\samerethrowtwice_d.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeTypePrefix.cmd_9240] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix\OpCodeTypePrefix.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i84.cmd_9241] +RelativePath=JIT\jit64\mcc\interop\mcc_i84\mcc_i84.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i84 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[newarr.cmd_9242] +RelativePath=JIT\Directed\newarr\newarr\newarr.cmd +WorkingDir=JIT\Directed\newarr\newarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_16.cmd_9243] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_16\ConvertToInt32_16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated955.cmd_9244] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest955\Generated955\Generated955.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest955\Generated955 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FlowControlCall.cmd_9245] +RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall\FlowControlCall.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase0_Nested_I_Nested_J.cmd_9246] +RelativePath=Loader\classloader\InterfaceFolding\TestCase0_Nested_I_Nested_J\TestCase0_Nested_I_Nested_J.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase0_Nested_I_Nested_J +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method007.cmd_9247] +RelativePath=Loader\classloader\generics\GenericMethods\method007\method007.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-9-3.cmd_9248] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-9-3\L-2-9-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-9-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RethrowAndFinally.cmd_9249] +RelativePath=baseservices\exceptions\unittests\RethrowAndFinally\RethrowAndFinally.cmd +WorkingDir=baseservices\exceptions\unittests\RethrowAndFinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StreamDispose1_PSC.cmd_9250] +RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC\StreamDispose1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_192.cmd_9251] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_192\GCSimulator_192.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_192 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldargs_stargs.cmd_9252] +RelativePath=JIT\IL_Conformance\Old\Base\ldargs_stargs\ldargs_stargs.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldargs_stargs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface09.cmd_9253] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface09\MultipleInterface09.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgsizeof64.cmd_9254] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64\_il_dbgsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadtryfinally_r.cmd_9255] +RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_r\deadtryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex6a.cmd_9256] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex6a\waitanyex6a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex6a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow04_sub.cmd_9257] +RelativePath=JIT\jit64\rtchecks\overflow\overflow04_sub\overflow04_sub.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_sub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelinstance_cs.cmd_9258] +RelativePath=JIT\Methodical\Boxing\callconv\_orelinstance_cs\_orelinstance_cs.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_orelinstance_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk3_il_r.cmd_9259] +RelativePath=JIT\Methodical\xxblk\initblk3_il_r\initblk3_il_r.cmd +WorkingDir=JIT\Methodical\xxblk\initblk3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12686 +HostStyle=0 + +[Generated721.cmd_9260] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest721\Generated721\Generated721.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest721\Generated721 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LogicArray.cmd_9261] +RelativePath=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray\LogicArray.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchtrycatch_do.cmd_9262] +RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_do\trycatchtrycatch_do.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null005.cmd_9263] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005\box-unbox-null005.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localgotoinahandler_d.cmd_9264] +RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_d\localgotoinahandler_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit2_do.cmd_9265] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do\tryCatchFinallyThrow_nonlocalexit2_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_struct01.cmd_9266] +RelativePath=JIT\Generics\Fields\instance_equalnull_struct01\instance_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Fields\instance_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Co9600Ctor.cmd_9267] +RelativePath=CoreMangLib\components\stopwatch\Co9600Ctor\Co9600Ctor.cmd +WorkingDir=CoreMangLib\components\stopwatch\Co9600Ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorForwarder.cmd_9268] +RelativePath=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder\VectorForwarder.cmd +WorkingDir=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated215.cmd_9269] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest215\Generated215\Generated215.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest215\Generated215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated531.cmd_9270] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest531\Generated531\Generated531.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest531\Generated531 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_neg_i4.cmd_9271] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4\ldc_neg_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1153.cmd_9272] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1153\Generated1153\Generated1153.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1153\Generated1153 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8div_cs_r.cmd_9273] +RelativePath=JIT\Methodical\divrem\div\r8div_cs_r\r8div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\r8div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclflddiv_cs_r.cmd_9274] +RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_r\lclflddiv_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp3_1.cmd_9275] +RelativePath=JIT\jit64\gc\misc\structfp3_1\structfp3_1.cmd +WorkingDir=JIT\jit64\gc\misc\structfp3_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_421.cmd_9276] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_421\GCSimulator_421.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_421 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm32_cs_d.cmd_9277] +RelativePath=JIT\Methodical\NaN\arithm32_cs_d\arithm32_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\arithm32_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b426654.cmd_9278] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654\b426654.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics018.cmd_9279] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018\castclass-generics018.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinally_d.cmd_9280] +RelativePath=JIT\Methodical\eh\basics\tryfinally_d\tryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox037.cmd_9281] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037\box-unbox037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetType2.cmd_9282] +RelativePath=CoreMangLib\cti\system\type\TypeGetType2\TypeGetType2.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetType2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[452950.cmd_9283] +RelativePath=GC\Regressions\v2.0-beta2\452950\452950\452950.cmd +WorkingDir=GC\Regressions\v2.0-beta2\452950\452950 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct01.cmd_9284] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01\Struct01.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteToString4.cmd_9285] +RelativePath=CoreMangLib\cti\system\byte\ByteToString4\ByteToString4.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteToString4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_virt.cmd_9286] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_virt\_il_dbgdeep_virt.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_virt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StructLayoutAttributeSize.cmd_9287] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize\StructLayoutAttributeSize.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgconst.cmd_9288] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbgconst\_il_dbgconst.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgconst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ndpin.cmd_9289] +RelativePath=GC\Scenarios\NDPin\ndpin\ndpin.cmd +WorkingDir=GC\Scenarios\NDPin\ndpin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow0_cs_r.cmd_9290] +RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_r\pow0_cs_r.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FiltCatch.cmd_9291] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\FiltCatch\FiltCatch.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\FiltCatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanEquals_Boolean.cmd_9292] +RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean\BooleanEquals_Boolean.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfloat64_range2.cmd_9293] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2\_il_dbgfloat64_range2.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59953.cmd_9294] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953\b59953.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated59.cmd_9295] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest59\Generated59\Generated59.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest59\Generated59 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread18.cmd_9296] +RelativePath=baseservices\threading\generics\threadstart\GThread18\GThread18.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated711.cmd_9297] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest711\Generated711\Generated711.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest711\Generated711 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventHandlerInvoke.cmd_9298] +RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke\EventHandlerInvoke.cmd +WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpath_do.cmd_9299] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_do\throwinfinallyerrpath_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1434.cmd_9300] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1434\Generated1434\Generated1434.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1434\Generated1434 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1058.cmd_9301] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1058\Generated1058\Generated1058.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1058\Generated1058 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72164.cmd_9302] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164\b72164.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value038.cmd_9303] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038\box-unbox-value038.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null030.cmd_9304] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030\box-unbox-null030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartObject.cmd_9305] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject\ThreadStartObject.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relhan2.cmd_9306] +RelativePath=JIT\Methodical\VT\etc\_speed_relhan2\_speed_relhan2.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relhan2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldsub_cs_do.cmd_9307] +RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_do\lclfldsub_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharCompateTo1.cmd_9308] +RelativePath=CoreMangLib\cti\system\char\CharCompateTo1\CharCompateTo1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharCompateTo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchangeint.cmd_9309] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchangeint\compareexchangeint.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchangeint +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated125.cmd_9310] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest125\Generated125\Generated125.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest125\Generated125 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringSplit1.cmd_9311] +RelativePath=CoreMangLib\cti\system\string\StringSplit1\StringSplit1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringSplit1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fielda_tests.cmd_9312] +RelativePath=JIT\Directed\PREFIX\unaligned\4\fielda_tests\fielda_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\fielda_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorDispose.cmd_9313] +RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated959.cmd_9314] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest959\Generated959\Generated959.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest959\Generated959 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26496.cmd_9315] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496\b26496.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[33objref_cs_do.cmd_9316] +RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_do\33objref_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated184.cmd_9317] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest184\Generated184\Generated184.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest184\Generated184 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_un_i8.cmd_9318] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8\bge_un_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_d.cmd_9319] +RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_d\classarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OverflowExceptionCtor1.cmd_9320] +RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1\OverflowExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1105.cmd_9321] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1105\Generated1105\Generated1105.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1105\Generated1105 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_9322] +RelativePath=JIT\IL_Conformance\Old\objectmodel\localloc\localloc.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret.cmd_9323] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret\ret.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EqualityComparerGetHashCode.cmd_9324] +RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode\EqualityComparerGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method004.cmd_9325] +RelativePath=Loader\classloader\generics\GenericMethods\method004\method004.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relconvovf_i8_u.cmd_9326] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u\_il_relconvovf_i8_u.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAA_d.cmd_9327] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d\CGRecurseAAA_d.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteParse2.cmd_9328] +RelativePath=CoreMangLib\cti\system\sbyte\SByteParse2\SByteParse2.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated67.cmd_9329] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest67\Generated67\Generated67.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest67\Generated67 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_794943.cmd_9330] +RelativePath=Loader\classloader\regressions\dev10_794943\dev10_794943\dev10_794943.cmd +WorkingDir=Loader\classloader\regressions\dev10_794943\dev10_794943 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated842.cmd_9331] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest842\Generated842\Generated842.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest842\Generated842 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedPublic.cmd_9332] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic\TypeAttributesNestedPublic.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vararystress.cmd_9333] +RelativePath=GC\Scenarios\Boxing\vararystress\vararystress.cmd +WorkingDir=GC\Scenarios\Boxing\vararystress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint64_ro.cmd_9334] +RelativePath=JIT\Directed\shift\uint64_ro\uint64_ro.cmd +WorkingDir=JIT\Directed\shift\uint64_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RankExceptionCtor1.cmd_9335] +RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor1\RankExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeSizeParamIndex.cmd_9336] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex\MarshalAsAttributeSizeParamIndex.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderToString2.cmd_9337] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2\StringBuilderToString2.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedBaseClass03.cmd_9338] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass03\NestedBaseClass03.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedBaseClass03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[varargsupport.cmd_9339] +RelativePath=baseservices\varargs\varargsupport\varargsupport.cmd +WorkingDir=baseservices\varargs\varargsupport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_d.cmd_9340] +RelativePath=JIT\Directed\shift\uint8_d\uint8_d.cmd +WorkingDir=JIT\Directed\shift\uint8_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumeratorCurrent.cmd_9341] +RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48864.cmd_9342] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864\b48864.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b18857.cmd_9343] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857\b18857.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesPinvokeImpl.cmd_9344] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl\FieldAttributesPinvokeImpl.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar5.cmd_9345] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar5\ConvertToChar5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testExplicitOverride2.cmd_9346] +RelativePath=Loader\classloader\generics\regressions\vsw395780\testExplicitOverride2\testExplicitOverride2.cmd +WorkingDir=Loader\classloader\generics\regressions\vsw395780\testExplicitOverride2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[HelloWorld.cmd_9347] +RelativePath=Loader\classloader\TSAmbiguities\CollapsedMethods\Override\HelloWorld\HelloWorld.cmd +WorkingDir=Loader\classloader\TSAmbiguities\CollapsedMethods\Override\HelloWorld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgstress1.cmd_9348] +RelativePath=JIT\Methodical\refany\_speed_dbgstress1\_speed_dbgstress1.cmd +WorkingDir=JIT\Methodical\refany\_speed_dbgstress1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_382.cmd_9349] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_382\GCSimulator_382.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_382 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foo_opt.cmd_9350] +RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt\foo_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated231.cmd_9351] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest231\Generated231\Generated231.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest231\Generated231 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_u8.cmd_9352] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8\ldc_mul_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally03.cmd_9353] +RelativePath=baseservices\exceptions\generics\try-finally03\try-finally03.cmd +WorkingDir=baseservices\exceptions\generics\try-finally03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated782.cmd_9354] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest782\Generated782\Generated782.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest782\Generated782 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1470.cmd_9355] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1470\Generated1470\Generated1470.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1470\Generated1470 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b44224.cmd_9356] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224\b44224.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP1d.cmd_9357] +RelativePath=JIT\Directed\StructPromote\SP1d\SP1d.cmd +WorkingDir=JIT\Directed\StructPromote\SP1d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1166.cmd_9358] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1166\Generated1166\Generated1166.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1166\Generated1166 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesSpecialName.cmd_9359] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName\FieldAttributesSpecialName.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dynamicmethodliveness.cmd_9360] +RelativePath=baseservices\exceptions\regressions\Dev11\154243\dynamicmethodliveness\dynamicmethodliveness.cmd +WorkingDir=baseservices\exceptions\regressions\Dev11\154243\dynamicmethodliveness +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_247.cmd_9361] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_247\GCSimulator_247.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_247 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt_u4.cmd_9362] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4\bgt_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchangefloat.cmd_9363] +RelativePath=baseservices\threading\interlocked\exchange\exchangefloat\exchangefloat.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchangefloat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test0829.cmd_9364] +RelativePath=Regressions\coreclr\0829\Test0829\Test0829.cmd +WorkingDir=Regressions\coreclr\0829\Test0829 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct3.cmd_9365] +RelativePath=JIT\jit64\gc\misc\struct3\struct3.cmd +WorkingDir=JIT\jit64\gc\misc\struct3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rvastatic1.cmd_9366] +RelativePath=JIT\Directed\rvastatics\rvastatic1\rvastatic1.cmd +WorkingDir=JIT\Directed\rvastatics\rvastatic1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Generated708.cmd_9367] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest708\Generated708\Generated708.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest708\Generated708 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalTryParse.cmd_9368] +RelativePath=CoreMangLib\cti\system\decimal\DecimalTryParse\DecimalTryParse.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ClosedStatic.cmd_9369] +RelativePath=CoreMangLib\system\delegate\miscellaneous\ClosedStatic\ClosedStatic.cmd +WorkingDir=CoreMangLib\system\delegate\miscellaneous\ClosedStatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1242.cmd_9370] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1242\Generated1242\Generated1242.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1242\Generated1242 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDecimal6.cmd_9371] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal6\ConvertToDecimal6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFAcos.cmd_9372] +RelativePath=CoreMangLib\cti\system\mathf\MathFAcos\MathFAcos.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFAcos +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionCopyTo.cmd_9373] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo\KeyCollectionCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetChars2.cmd_9374] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars2\EncodingGetChars2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_U8.cmd_9375] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8\OpCodesConv_U8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b67744.cmd_9376] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744\b67744.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_i4.cmd_9377] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4\_il_dbgrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread10.cmd_9378] +RelativePath=baseservices\threading\generics\syncdelegate\GThread10\GThread10.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinst_d.cmd_9379] +RelativePath=JIT\Directed\nullabletypes\isinst_d\isinst_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinst_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate022.cmd_9380] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate022\Delegate022.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1362.cmd_9381] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1362\Generated1362\Generated1362.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1362\Generated1362 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CompareExchangeTString.cmd_9382] +RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTString\CompareExchangeTString.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[castclass011.cmd_9383] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011\castclass011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsin_cs.cmd_9384] +RelativePath=JIT\Methodical\Boxing\functional\_relsin_cs\_relsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_relsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_val_1_r.cmd_9385] +RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_r\expl_val_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59554.cmd_9386] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554\b59554.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_i2.cmd_9387] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2\_il_dbgrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetLowerBound.cmd_9388] +RelativePath=CoreMangLib\cti\system\array\ArrayGetLowerBound\ArrayGetLowerBound.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetLowerBound +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31423.cmd_9389] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423\b31423.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalConstantAttributeValue.cmd_9390] +RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue\DecimalConstantAttributeValue.cmd +WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated396.cmd_9391] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest396\Generated396\Generated396.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest396\Generated396 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesHasDefault.cmd_9392] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault\FieldAttributesHasDefault.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringEmpty.cmd_9393] +RelativePath=CoreMangLib\cti\system\string\StringEmpty\StringEmpty.cmd +WorkingDir=CoreMangLib\cti\system\string\StringEmpty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b32614.cmd_9394] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614\b32614.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_246.cmd_9395] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_246\GCSimulator_246.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_246 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax3.cmd_9396] +RelativePath=CoreMangLib\cti\system\math\MathMax3\MathMax3.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblSubConst.cmd_9397] +RelativePath=JIT\CodeGenBringUpTests\DblSubConst\DblSubConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblSubConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax9.cmd_9398] +RelativePath=CoreMangLib\cti\system\math\MathMax9\MathMax9.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics025.cmd_9399] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025\castclass-generics025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated758.cmd_9400] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest758\Generated758\Generated758.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest758\Generated758 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_R4.cmd_9401] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4\_il_dbgldobj_R4.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentogen01.cmd_9402] +RelativePath=JIT\Generics\Conversions\Reference\gentogen01\gentogen01.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentogen01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26332.cmd_9403] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332\b26332.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relcastclass_ldloc.cmd_9404] +RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc\_speed_relcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcincatch_do.cmd_9405] +RelativePath=JIT\Methodical\eh\interactions\gcincatch_do\gcincatch_do.cmd +WorkingDir=JIT\Methodical\eh\interactions\gcincatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_i4_u4.cmd_9406] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4\ldc_conv_ovf_i4_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1339.cmd_9407] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1339\Generated1339\Generated1339.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1339\Generated1339 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated352.cmd_9408] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest352\Generated352\Generated352.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest352\Generated352 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated882.cmd_9409] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest882\Generated882\Generated882.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest882\Generated882 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_funcptr_gc_d.cmd_9410] +RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d\expl_funcptr_gc_d.cmd +WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1276.cmd_9411] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1276\Generated1276\Generated1276.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1276\Generated1276 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_cs_ro.cmd_9412] +RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_ro\vt3_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoLayoutStructure.cmd_9413] +RelativePath=Interop\MarshalAPI\Miscellaneous\AutoLayoutStructure\AutoLayoutStructure.cmd +WorkingDir=Interop\MarshalAPI\Miscellaneous\AutoLayoutStructure +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05784.cmd_9414] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784\b05784.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_9415] +RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\struct01\struct01.cmd +WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_429.cmd_9416] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_429\GCSimulator_429.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_429 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b79418.cmd_9417] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418\b79418.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div_i4.cmd_9418] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i4\div_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-8-31-two.cmd_9419] +RelativePath=Loader\classloader\rmv\il\RMV-2-8-31-two\RMV-2-8-31-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-8-31-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_79.cmd_9420] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_79\GCSimulator_79.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_79 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate018.cmd_9421] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate018\Delegate018.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate018 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesNewarr.cmd_9422] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr\OpCodesNewarr.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated265.cmd_9423] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest265\Generated265\Generated265.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest265\Generated265 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocCnstB5001.cmd_9424] +RelativePath=JIT\CodeGenBringUpTests\LocallocCnstB5001\LocallocCnstB5001.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocCnstB5001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegate_r.cmd_9425] +RelativePath=JIT\Methodical\nonvirtualcall\delegate_r\delegate_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\delegate_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfault.cmd_9426] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault\_il_dbgcatchfault.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathTanh.cmd_9427] +RelativePath=CoreMangLib\cti\system\math\MathTanh\MathTanh.cmd +WorkingDir=CoreMangLib\cti\system\math\MathTanh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_ldarg.cmd_9428] +RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg\_il_relcastclass_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01c_seq_ser.cmd_9429] +RelativePath=Loader\classloader\generics\Layout\General\Base01c_seq_ser\Base01c_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01c_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeCtor1.cmd_9430] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1\AttributeCtor1.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-enum003.cmd_9431] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003\box-unbox-enum003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b69225.cmd_9432] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225\b69225.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NoEnterNewObject.cmd_9433] +RelativePath=baseservices\threading\monitor\unownedlock\NoEnterNewObject\NoEnterNewObject.cmd +WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterNewObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgseq.cmd_9434] +RelativePath=JIT\Methodical\refany\_il_dbgseq\_il_dbgseq.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgseq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Regression_Dev10_609271.cmd_9435] +RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271\Regression_Dev10_609271.cmd +WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceeillegal_il_d.cmd_9436] +RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d\ceeillegal_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix7.cmd_9437] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7\OpCodesPrefix7.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_376.cmd_9438] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_376\GCSimulator_376.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_376 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gettypetypeofmatrix.cmd_9439] +RelativePath=JIT\Directed\Misc\gettype\gettypetypeofmatrix\gettypetypeofmatrix.cmd +WorkingDir=JIT\Directed\Misc\gettype\gettypetypeofmatrix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesNotContentIndexed.cmd_9440] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed\FileAttributesNotContentIndexed.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b19679.cmd_9441] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679\b19679.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threads2_cs_d.cmd_9442] +RelativePath=JIT\Methodical\cctor\misc\threads2_cs_d\threads2_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box_unbox01.cmd_9443] +RelativePath=JIT\Generics\Conversions\Boxing\box_unbox01\box_unbox01.cmd +WorkingDir=JIT\Generics\Conversions\Boxing\box_unbox01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListIndexOf.cmd_9444] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf\ListIListIndexOf.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrefarg_c.cmd_9445] +RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_c\_dbgrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1500.cmd_9446] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1500\Generated1500\Generated1500.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1500\Generated1500 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToSByte.cmd_9447] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte\UInt32IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1154.cmd_9448] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1154\Generated1154\Generated1154.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1154\Generated1154 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_U2.cmd_9449] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2\OpCodesLdelem_U2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_9450] +RelativePath=JIT\jit64\regress\vsw\517867\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\517867\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_0_5a.cmd_9451] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a\_il_dbgint32_0_5a.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b392262.cmd_9452] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262\b392262.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter3_d.cmd_9453] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d\throwinfinallyintryfilter3_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise2_cs_ro.cmd_9454] +RelativePath=JIT\Methodical\cctor\simple\precise2_cs_ro\precise2_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbggcreport.cmd_9455] +RelativePath=JIT\Methodical\refany\_speed_dbggcreport\_speed_dbggcreport.cmd +WorkingDir=JIT\Methodical\refany\_speed_dbggcreport +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelfibo_cs.cmd_9456] +RelativePath=JIT\Methodical\Boxing\functional\_orelfibo_cs\_orelfibo_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_orelfibo_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call07_small.cmd_9457] +RelativePath=JIT\jit64\localloc\call\call07_small\call07_small.cmd +WorkingDir=JIT\jit64\localloc\call\call07_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString24.cmd_9458] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString24\ConvertToString24.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArray_r.cmd_9459] +RelativePath=JIT\SIMD\VectorArray_r\VectorArray_r.cmd +WorkingDir=JIT\SIMD\VectorArray_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16335.cmd_9460] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335\b16335.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RecursiveConstraints.cmd_9461] +RelativePath=Loader\classloader\generics\Constraints\Recursion\RecursiveConstraints\RecursiveConstraints.cmd +WorkingDir=Loader\classloader\generics\Constraints\Recursion\RecursiveConstraints +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4rem_cs_d.cmd_9462] +RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_d\i4rem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface004.cmd_9463] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004\box-unbox-interface004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1418.cmd_9464] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1418\Generated1418\Generated1418.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1418\Generated1418 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread21.cmd_9465] +RelativePath=baseservices\threading\generics\TimerCallback\thread21\thread21.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsSurrogate2.cmd_9466] +RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate2\CharIsSurrogate2.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SByteParse1.cmd_9467] +RelativePath=CoreMangLib\cti\system\sbyte\SByteParse1\SByteParse1.cmd +WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84909.cmd_9468] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909\b84909.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subovfun1_il_r.cmd_9469] +RelativePath=JIT\Directed\coverage\importer\subovfun1_il_r\subovfun1_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ckfinite_r8.cmd_9470] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8\ckfinite_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-8-3.cmd_9471] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-8-3\L-1-8-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-8-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated630.cmd_9472] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest630\Generated630\Generated630.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest630\Generated630 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueClear.cmd_9473] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueClear\QueueClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interlock.cmd_9474] +RelativePath=Regressions\common\interlock\interlock.cmd +WorkingDir=Regressions\common\interlock +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameVersion.cmd_9475] +RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion\AssemblyNameVersion.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_s.cmd_9476] +RelativePath=JIT\IL_Conformance\Old\Base\bge_s\bge_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bge_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stind_i1.cmd_9477] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i1\stind_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter011.cmd_9478] +RelativePath=baseservices\exceptions\generics\TypeParameter011\TypeParameter011.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26155.cmd_9479] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155\b26155.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1491.cmd_9480] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1491\Generated1491\Generated1491.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1491\Generated1491 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i13.cmd_9481] +RelativePath=JIT\jit64\mcc\interop\mcc_i13\mcc_i13.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i13 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[c_nop.cmd_9482] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_nop\c_nop.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_nop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_ovf_i2.cmd_9483] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2\sub_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I.cmd_9484] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I\OpCodesConv_Ovf_I.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b440158.cmd_9485] +RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158\b440158.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43069.cmd_9486] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069\b43069.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b539509.cmd_9487] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509\b539509.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[DevDiv_816617_ro.cmd_9488] +RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro\DevDiv_816617_ro.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListICollectionIsSynchronized.cmd_9489] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized\ListICollectionIsSynchronized.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b82866.cmd_9490] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866\b82866.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated568.cmd_9491] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest568\Generated568\Generated568.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest568\Generated568 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[baduwinfo1.cmd_9492] +RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1\baduwinfo1.cmd +WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1043.cmd_9493] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1043\Generated1043\Generated1043.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1043\Generated1043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_struct_test4.cmd_9494] +RelativePath=JIT\jit64\gc\misc\ret_struct_test4\ret_struct_test4.cmd +WorkingDir=JIT\jit64\gc\misc\ret_struct_test4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPZero.cmd_9495] +RelativePath=JIT\Directed\Convert\FPZero\FPZero.cmd +WorkingDir=JIT\Directed\Convert\FPZero +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertChangeType2.cmd_9496] +RelativePath=CoreMangLib\cti\system\convert\ConvertChangeType2\ConvertChangeType2.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertChangeType2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simple.cmd_9497] +RelativePath=JIT\jit64\regress\ndpw\160545\simple\simple.cmd +WorkingDir=JIT\jit64\regress\ndpw\160545\simple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgvtret.cmd_9498] +RelativePath=JIT\Methodical\VT\callconv\_speed_dbgvtret\_speed_dbgvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorectorneg1.cmd_9499] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorectorneg1\semaphorectorneg1.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorectorneg1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated507.cmd_9500] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest507\Generated507\Generated507.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest507\Generated507 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_i4.cmd_9501] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i4\_il_relrefarg_i4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatOvfToInt2_do.cmd_9502] +RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_do\FloatOvfToInt2_do.cmd +WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct9.cmd_9503] +RelativePath=JIT\jit64\gc\misc\struct9\struct9.cmd +WorkingDir=JIT\jit64\gc\misc\struct9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value037.cmd_9504] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037\box-unbox-value037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Secant.cmd_9505] +RelativePath=JIT\Performance\CodeQuality\BenchF\Secant\Secant\Secant.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Secant\Secant +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringFormat2.cmd_9506] +RelativePath=CoreMangLib\cti\system\string\StringFormat2\StringFormat2.cmd +WorkingDir=CoreMangLib\cti\system\string\StringFormat2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U8.cmd_9507] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8\OpCodesConv_Ovf_U8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox023.cmd_9508] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023\box-unbox023.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddrOfPinnedObject_neg.cmd_9509] +RelativePath=GC\API\GCHandle\AddrOfPinnedObject_neg\AddrOfPinnedObject_neg.cmd +WorkingDir=GC\API\GCHandle\AddrOfPinnedObject_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharTryParse.cmd_9510] +RelativePath=CoreMangLib\cti\system\char\CharTryParse\CharTryParse.cmd +WorkingDir=CoreMangLib\cti\system\char\CharTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowinfinallyaftercatch_r.cmd_9511] +RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r\rethrowinfinallyaftercatch_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array_tests.cmd_9512] +RelativePath=JIT\Directed\PREFIX\unaligned\2\array_tests\array_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\array_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Default_2.cmd_9513] +RelativePath=GC\API\GC\Collect_Default_2\Collect_Default_2.cmd +WorkingDir=GC\API\GC\Collect_Default_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated428.cmd_9514] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest428\Generated428\Generated428.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest428\Generated428 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Free_neg.cmd_9515] +RelativePath=GC\API\GCHandle\Free_neg\Free_neg.cmd +WorkingDir=GC\API\GCHandle\Free_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_9516] +RelativePath=JIT\jit64\gc\misc\test1\test1.cmd +WorkingDir=JIT\jit64\gc\misc\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableCtor.cmd_9517] +RelativePath=CoreMangLib\cti\system\nullable\NullableCtor\NullableCtor.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b79250.cmd_9518] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250\b79250.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleDangerousGetHandle_PSC.cmd_9519] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC\SafeHandleDangerousGetHandle_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1188.cmd_9520] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1188\Generated1188\Generated1188.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1188\Generated1188 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BubbleSort.cmd_9521] +RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort\BubbleSort.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0G_d.cmd_9522] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_d\hfa_sf0G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesNoInlining.cmd_9523] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining\MethodImplAttributesNoInlining.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04538.cmd_9524] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538\b04538.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_160.cmd_9525] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_160\GCSimulator_160.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_160 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_exception_opt.cmd_9526] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt\mul_exception_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[double_cs_do.cmd_9527] +RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_do\double_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter009.cmd_9528] +RelativePath=baseservices\exceptions\generics\TypeParameter009\TypeParameter009.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArrayInit_ro.cmd_9529] +RelativePath=JIT\SIMD\VectorArrayInit_ro\VectorArrayInit_ro.cmd +WorkingDir=JIT\SIMD\VectorArrayInit_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_cs_r.cmd_9530] +RelativePath=JIT\Methodical\NaN\intrinsic_cs_r\intrinsic_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1c_il_d.cmd_9531] +RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_d\25param1c_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit4_d.cmd_9532] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d\tryCatchFinallyThrow_nonlocalexit4_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Or_Op_cs_ro.cmd_9533] +RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_ro\Bool_Or_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalParse4.cmd_9534] +RelativePath=CoreMangLib\cti\system\decimal\DecimalParse4\DecimalParse4.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesLayoutMask.cmd_9535] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask\TypeAttributesLayoutMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_ro.cmd_9536] +RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro\doublearr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionAdd.cmd_9537] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd\DictionaryICollectionAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26560.cmd_9538] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560\b26560.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_15.cmd_9539] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_15\GCSimulator_15.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_15 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldtoken.cmd_9540] +RelativePath=JIT\Methodical\ldtoken\_il_dbgldtoken\_il_dbgldtoken.cmd +WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtoken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1b_il_r.cmd_9541] +RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_r\25param1b_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt1_cs_do.cmd_9542] +RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_do\vt1_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01a_auto.cmd_9543] +RelativePath=Loader\classloader\generics\Layout\General\Base01a_auto\Base01a_auto.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01a_auto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_cs_d.cmd_9544] +RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_d\vt4_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint8_cs_ro.cmd_9545] +RelativePath=JIT\Directed\shift\uint8_cs_ro\uint8_cs_ro.cmd +WorkingDir=JIT\Directed\shift\uint8_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListAddRange.cmd_9546] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAddRange\ListAddRange.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAddRange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated802.cmd_9547] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest802\Generated802\Generated802.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest802\Generated802 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_u1.cmd_9548] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1\add_ovf_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_popr4.cmd_9549] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4\StackBehaviourPopi_popr4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37256.cmd_9550] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256\b37256.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badtailcall_il_d.cmd_9551] +RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d\badtailcall_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[blt_u4.cmd_9552] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u4\blt_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteTryParse.cmd_9553] +RelativePath=CoreMangLib\cti\system\byte\ByteTryParse\ByteTryParse.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise2_cs_d.cmd_9554] +RelativePath=JIT\Methodical\cctor\simple\precise2_cs_d\precise2_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[reregisterforfinalize.cmd_9555] +RelativePath=GC\LargeMemory\API\gc\reregisterforfinalize\reregisterforfinalize.cmd +WorkingDir=GC\LargeMemory\API\gc\reregisterforfinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LocallocB_N_PSP.cmd_9556] +RelativePath=JIT\CodeGenBringUpTests\LocallocB_N_PSP\LocallocB_N_PSP.cmd +WorkingDir=JIT\CodeGenBringUpTests\LocallocB_N_PSP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitfromnestedcatch_ro.cmd_9557] +RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro\nonlocalexitfromnestedcatch_ro.cmd +WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString16.cmd_9558] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString16\ConvertToString16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relval_ctor_newobj.cmd_9559] +RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj\_il_relval_ctor_newobj.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimalrem_cs_d.cmd_9560] +RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_d\decimalrem_cs_d.cmd +WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch7.cmd_9561] +RelativePath=JIT\Methodical\switch\switch7\switch7.cmd +WorkingDir=JIT\Methodical\switch\switch7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59947.cmd_9562] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947\b59947.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_d.cmd_9563] +RelativePath=JIT\Methodical\eh\generics\throwincatch_d\throwincatch_d.cmd +WorkingDir=JIT\Methodical\eh\generics\throwincatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array_tests.cmd_9564] +RelativePath=JIT\Directed\PREFIX\unaligned\4\array_tests\array_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\4\array_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02_seq_ser.cmd_9565] +RelativePath=Loader\classloader\generics\Layout\General\struct02_seq_ser\struct02_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct02_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[and_u4.cmd_9566] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u4\and_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit2_d.cmd_9567] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d\tryCatchFinallyThrow_nonlocalexit2_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollectionEnumeratorIEnumeratorReset.cmd_9568] +RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_911875_do.cmd_9569] +RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do\DevDiv_911875_do.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36301.cmd_9570] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301\b36301.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mutexctor1.cmd_9571] +RelativePath=baseservices\threading\mutex\misc\mutexctor1\mutexctor1.cmd +WorkingDir=baseservices\threading\mutex\misc\mutexctor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testeit_d.cmd_9572] +RelativePath=JIT\Methodical\eh\disconnected\testeit_d\testeit_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\testeit_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RefCharArrayTest.cmd_9573] +RelativePath=Interop\RefCharArray\RefCharArrayTest\RefCharArrayTest.cmd +WorkingDir=Interop\RefCharArray\RefCharArrayTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesShl.cmd_9574] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl\OpCodesShl.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToUInt32.cmd_9575] +RelativePath=CoreMangLib\cti\system\single\SingleToUInt32\SingleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorArray_ro.cmd_9576] +RelativePath=JIT\SIMD\VectorArray_ro\VectorArray_ro.cmd +WorkingDir=JIT\SIMD\VectorArray_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ret_i8.cmd_9577] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i8\ret_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated52.cmd_9578] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest52\Generated52\Generated52.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest52\Generated52 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem_Ref.cmd_9579] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref\OpCodesLdelem_Ref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_9580] +RelativePath=JIT\jit64\regress\vsw\460412\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\460412\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstboxed_d.cmd_9581] +RelativePath=JIT\Directed\nullabletypes\isinstboxed_d\isinstboxed_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstboxed_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc.cmd_9582] +RelativePath=JIT\Directed\PREFIX\unaligned\1\localloc\localloc.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\localloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread05.cmd_9583] +RelativePath=baseservices\threading\generics\syncdelegate\GThread05\GThread05.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1346.cmd_9584] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1346\Generated1346\Generated1346.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1346\Generated1346 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_ref.cmd_9585] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref\_il_dbgi_ref.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated664.cmd_9586] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest664\Generated664\Generated664.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest664\Generated664 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1455.cmd_9587] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1455\Generated1455\Generated1455.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1455\Generated1455 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_630880.cmd_9588] +RelativePath=reflection\regression\dev10bugs\Dev10_630880\Dev10_630880.cmd +WorkingDir=reflection\regression\dev10bugs\Dev10_630880 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharEquals1.cmd_9589] +RelativePath=CoreMangLib\cti\system\char\CharEquals1\CharEquals1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox006.cmd_9590] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006\box-unbox006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated926.cmd_9591] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest926\Generated926\Generated926.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest926\Generated926 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated172.cmd_9592] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest172\Generated172\Generated172.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest172\Generated172 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48990b.cmd_9593] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b\b48990b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblCall1.cmd_9594] +RelativePath=JIT\CodeGenBringUpTests\DblCall1\DblCall1.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblCall1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSinh.cmd_9595] +RelativePath=CoreMangLib\cti\system\math\MathSinh\MathSinh.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSinh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1c_il_r.cmd_9596] +RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_r\25param1c_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_329.cmd_9597] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_329\GCSimulator_329.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_11804.cmd_9598] +RelativePath=JIT\Regression\JitBlue\GitHub_11804\GitHub_11804\GitHub_11804.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_11804\GitHub_11804 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated974.cmd_9599] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest974\Generated974\Generated974.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest974\Generated974 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15155.cmd_9600] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155\b15155.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Exception.cmd_9601] +RelativePath=Loader\lowlevel\regress\105736\Exception\Exception.cmd +WorkingDir=Loader\lowlevel\regress\105736\Exception +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16499b.cmd_9602] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b\b16499b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_9603] +RelativePath=JIT\jit64\regress\vsw\102964\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\102964\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh06_small.cmd_9604] +RelativePath=JIT\jit64\localloc\ehverify\eh06_small\eh06_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh06_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphorectorneg2.cmd_9605] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphorectorneg2\semaphorectorneg2.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphorectorneg2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs_gcref.cmd_9606] +RelativePath=JIT\Methodical\VT\port\_dbglcs_gcref\_dbglcs_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_dbglcs_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_3449.cmd_9607] +RelativePath=JIT\Regression\JitBlue\GitHub_3449\GitHub_3449\GitHub_3449.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_3449\GitHub_3449 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[Generated155.cmd_9608] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest155\Generated155\Generated155.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest155\Generated155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08944b.cmd_9609] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b\b08944b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg1.cmd_9610] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg1\semaphoreopenneg1.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgarray.cmd_9611] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgarray\_il_dbgarray.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_911875_d.cmd_9612] +RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d\DevDiv_911875_d.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_d.cmd_9613] +RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_d\callconv1_cs_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs.cmd_9614] +RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs\_dbglcs.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relstress3.cmd_9615] +RelativePath=JIT\Methodical\refany\_relstress3\_relstress3.cmd +WorkingDir=JIT\Methodical\refany\_relstress3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class2_ImplicitOverrideVirtual_Interface.cmd_9616] +RelativePath=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtual_Interface\Class2_ImplicitOverrideVirtual_Interface.cmd +WorkingDir=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtual_Interface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32MinValue.cmd_9617] +RelativePath=CoreMangLib\cti\system\int\Int32MinValue\Int32MinValue.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32MinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbginstftn.cmd_9618] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn\_il_dbginstftn.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_gc_short_1_r.cmd_9619] +RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_r\expl_gc_short_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfilter_r.cmd_9620] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_r\badcodeafterfilter_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[readthreads.cmd_9621] +RelativePath=baseservices\threading\interlocked\read\readthreads\readthreads.cmd +WorkingDir=baseservices\threading\interlocked\read\readthreads +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated886.cmd_9622] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest886\Generated886\Generated886.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest886\Generated886 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated274.cmd_9623] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest274\Generated274\Generated274.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest274\Generated274 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-02_cs_d.cmd_9624] +RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_d\5w1d-02_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPushr4.cmd_9625] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4\StackBehaviourPushr4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_class01.cmd_9626] +RelativePath=JIT\Generics\Fields\instance_passing_class01\instance_passing_class01.cmd +WorkingDir=JIT\Generics\Fields\instance_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41234.cmd_9627] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234\b41234.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1169.cmd_9628] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1169\Generated1169\Generated1169.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1169\Generated1169 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldfld_mul.cmd_9629] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mul\_dbgs_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleDispose1_PSC.cmd_9630] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC\SafeHandleDispose1_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BadRegArgs.cmd_9631] +RelativePath=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs\BadRegArgs.cmd +WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIsDefined.cmd_9632] +RelativePath=CoreMangLib\cti\system\enum\EnumIsDefined\EnumIsDefined.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIsDefined +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetEnumerator.cmd_9633] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator\GetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind05_small.cmd_9634] +RelativePath=JIT\jit64\localloc\unwind\unwind05_small\unwind05_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind05_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4_cs_ro.cmd_9635] +RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_ro\i4_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivefinalize.cmd_9636] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivefinalize\keepalivefinalize.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivefinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_r.cmd_9637] +RelativePath=JIT\Methodical\NaN\arithm64_r\arithm64_r.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8flat_cs_r.cmd_9638] +RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_r\i8flat_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct02.cmd_9639] +RelativePath=JIT\Generics\Instantiation\Structs\struct02\struct02.cmd +WorkingDir=JIT\Generics\Instantiation\Structs\struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01.cmd_9640] +RelativePath=JIT\Generics\Instantiation\Interfaces\class01\class01.cmd +WorkingDir=JIT\Generics\Instantiation\Interfaces\class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_96.cmd_9641] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_96\GCSimulator_96.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_96 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_10940.cmd_9642] +RelativePath=JIT\Regression\JitBlue\GitHub_10940\GitHub_10940\GitHub_10940.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_10940\GitHub_10940 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71120.cmd_9643] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120\b71120.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b09495.cmd_9644] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495\b09495.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_412.cmd_9645] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_412\GCSimulator_412.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_412 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrToPointer.cmd_9646] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToPointer\UIntPtrToPointer.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToPointer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1294.cmd_9647] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1294\Generated1294\Generated1294.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1294\Generated1294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value021.cmd_9648] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021\box-unbox-value021.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated911.cmd_9649] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest911\Generated911\Generated911.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest911\Generated911 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToType.cmd_9650] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToType\CharIConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest_cs_r.cmd_9651] +RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r\ctest_cs_r.cmd +WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNadd_cs_d.cmd_9652] +RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_d\r8NaNadd_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hasvalue_ro.cmd_9653] +RelativePath=JIT\Directed\nullabletypes\hasvalue_ro\hasvalue_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\hasvalue_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharSetUnicode.cmd_9654] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode\CharSetUnicode.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_280127.cmd_9655] +RelativePath=JIT\Regression\JitBlue\DevDiv_280127\DevDiv_280127\DevDiv_280127.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_280127\DevDiv_280127 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-12-1.cmd_9656] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-12-1\L-1-12-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-12-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div1.cmd_9657] +RelativePath=JIT\CodeGenBringUpTests\div1\div1.cmd +WorkingDir=JIT\CodeGenBringUpTests\div1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b22290.cmd_9658] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290\b22290.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07458.cmd_9659] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458\b07458.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroinit_il_r.cmd_9660] +RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_r\zeroinit_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1243.cmd_9661] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1243\Generated1243\Generated1243.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1243\Generated1243 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf2E_r.cmd_9662] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_r\hfa_nf2E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetByteCount1.cmd_9663] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1\UnicodeEncodingGetByteCount1.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02762.cmd_9664] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762\b02762.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_0.cmd_9665] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0\_il_dbgint32_0.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14068.cmd_9666] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068\b14068.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relsizeof.cmd_9667] +RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof\_il_relsizeof.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_213.cmd_9668] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_213\GCSimulator_213.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_213 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value001.cmd_9669] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001\box-unbox-value001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf.cmd_9670] +RelativePath=JIT\IL_Conformance\Old\Base\mul_ovf\mul_ovf.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\mul_ovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b70994.cmd_9671] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994\b70994.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generic_Test_CSharp_Base_4.cmd_9672] +RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4\Generic_Test_CSharp_Base_4.cmd +WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bigdat.cmd_9673] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\bigdat\bigdat.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\bigdat +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLtInt1.cmd_9674] +RelativePath=JIT\CodeGenBringUpTests\JTrueLtInt1\JTrueLtInt1.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLtInt1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor6.cmd_9675] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6\DictionaryCtor6.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lifetime2.cmd_9676] +RelativePath=JIT\Directed\lifetime\lifetime2\lifetime2.cmd +WorkingDir=JIT\Directed\lifetime\lifetime2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfinally_ind.cmd_9677] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind\_il_dbgcatchfinally_ind.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i67.cmd_9678] +RelativePath=JIT\jit64\mcc\interop\mcc_i67\mcc_i67.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i67 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayClear.cmd_9679] +RelativePath=CoreMangLib\cti\system\array\ArrayClear\ArrayClear.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8div_cs_ro.cmd_9680] +RelativePath=JIT\Methodical\divrem\div\r8div_cs_ro\r8div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\r8div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListReverse.cmd_9681] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse\ListReverse.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-enum001.cmd_9682] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001\castclass-enum001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated31.cmd_9683] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest31\Generated31\Generated31.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest31\Generated31 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trythrowcatch_do.cmd_9684] +RelativePath=JIT\Methodical\eh\basics\trythrowcatch_do\trythrowcatch_do.cmd +WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatch_r.cmd_9685] +RelativePath=JIT\Methodical\eh\basics\trycatch_r\trycatch_r.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[leaveintotrybody_r.cmd_9686] +RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_r\leaveintotrybody_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertFromBase64CharArray.cmd_9687] +RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray\ConvertFromBase64CharArray.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange1_cti.cmd_9688] +RelativePath=baseservices\threading\interlocked\exchange\exchange1_cti\exchange1_cti.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange1_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[494226.cmd_9689] +RelativePath=GC\Regressions\v2.0-rtm\494226\494226\494226.cmd +WorkingDir=GC\Regressions\v2.0-rtm\494226\494226 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface012.cmd_9690] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012\box-unbox-interface012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated177.cmd_9691] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest177\Generated177\Generated177.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest177\Generated177 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b223932.cmd_9692] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932\b223932.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThrowInFinallyNestedInTry.cmd_9693] +RelativePath=baseservices\exceptions\unittests\ThrowInFinallyNestedInTry\ThrowInFinallyNestedInTry.cmd +WorkingDir=baseservices\exceptions\unittests\ThrowInFinallyNestedInTry +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_9.cmd_9694] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_9\ConvertToInt32_9.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox015.cmd_9695] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015\box-unbox015.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[overflow03_mul.cmd_9696] +RelativePath=JIT\jit64\rtchecks\overflow\overflow03_mul\overflow03_mul.cmd +WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1411.cmd_9697] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1411\Generated1411\Generated1411.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1411\Generated1411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign3.cmd_9698] +RelativePath=CoreMangLib\cti\system\math\MathSign3\MathSign3.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryfinallywith2endfinally_d.cmd_9699] +RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d\tryfinallywith2endfinally_d.cmd +WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method002.cmd_9700] +RelativePath=Loader\classloader\generics\Variance\Methods\Method002\Method002.cmd +WorkingDir=Loader\classloader\generics\Variance\Methods\Method002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetCharCount2.cmd_9701] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2\EncodingGetCharCount2.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstructFalse.cmd_9702] +RelativePath=baseservices\threading\events\ManualResetEvent\ConstructFalse\ConstructFalse.cmd +WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructFalse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev11_95728.cmd_9703] +RelativePath=Loader\classloader\regressions\dev11_95728\dev11_95728\dev11_95728.cmd +WorkingDir=Loader\classloader\regressions\dev11_95728\dev11_95728 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unsafe.cmd_9704] +RelativePath=Regressions\coreclr\0342\unsafe\unsafe.cmd +WorkingDir=Regressions\coreclr\0342\unsafe +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b141358.cmd_9705] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358\b141358.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh02_small.cmd_9706] +RelativePath=JIT\jit64\localloc\eh\eh02_small\eh02_small.cmd +WorkingDir=JIT\jit64\localloc\eh\eh02_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_902271.cmd_9707] +RelativePath=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271\DevDiv_902271.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesThrow.cmd_9708] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow\OpCodesThrow.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[long_cs_ro.cmd_9709] +RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_ro\long_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_passing_class01.cmd_9710] +RelativePath=JIT\Generics\Parameters\instance_passing_class01\instance_passing_class01.cmd +WorkingDir=JIT\Generics\Parameters\instance_passing_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToType.cmd_9711] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToType\Int32IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFExp.cmd_9712] +RelativePath=CoreMangLib\cti\system\mathf\MathFExp\MathFExp.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFExp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Array2.cmd_9713] +RelativePath=JIT\Performance\CodeQuality\BenchI\Array2\Array2\Array2.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Array2\Array2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToBoolean.cmd_9714] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean\UInt16IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_initblk.cmd_9715] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_initblk\c_initblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowwithhandlerscatchingbase_r.cmd_9716] +RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r\rethrowwithhandlerscatchingbase_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_118.cmd_9717] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_118\GCSimulator_118.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_118 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToSByte.cmd_9718] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte\ByteIConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_r8_r4.cmd_9719] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4\_il_relcompat_r8_r4.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToUInt64.cmd_9720] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64\ByteIConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b148815.cmd_9721] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815\b148815.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8div_cs_do.cmd_9722] +RelativePath=JIT\Methodical\divrem\div\r8div_cs_do\r8div_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\r8div_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30892.cmd_9723] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892\b30892.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopEH.cmd_9724] +RelativePath=JIT\jit64\eh\basics\loopEH\loopEH.cmd +WorkingDir=JIT\jit64\eh\basics\loopEH +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Xor_Op_cs_ro.cmd_9725] +RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_ro\Bool_Xor_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_c.cmd_9726] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_c\_relrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[minleakgen.cmd_9727] +RelativePath=GC\Scenarios\MinLeakGen\minleakgen\minleakgen.cmd +WorkingDir=GC\Scenarios\MinLeakGen\minleakgen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread14.cmd_9728] +RelativePath=baseservices\threading\generics\syncdelegate\GThread14\GThread14.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[debug.cmd_9729] +RelativePath=JIT\opt\Inline\tests\debug\debug.cmd +WorkingDir=JIT\opt\Inline\tests\debug +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassvaluetype_r.cmd_9730] +RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_r\castclassvaluetype_r.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStfld.cmd_9731] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld\OpCodesStfld.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[twoEndFinallys_il.cmd_9732] +RelativePath=JIT\Methodical\flowgraph\bug619534\twoEndFinallys_il\twoEndFinallys_il.cmd +WorkingDir=JIT\Methodical\flowgraph\bug619534\twoEndFinallys_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefixref.cmd_9733] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref\OpCodesPrefixref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convert_instance01.cmd_9734] +RelativePath=JIT\Generics\Constraints\convert_instance01\convert_instance01.cmd +WorkingDir=JIT\Generics\Constraints\convert_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbglcs.cmd_9735] +RelativePath=JIT\Methodical\VT\port\_dbglcs\_dbglcs.cmd +WorkingDir=JIT\Methodical\VT\port\_dbglcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16378.cmd_9736] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378\b16378.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedPrivate.cmd_9737] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate\TypeAttributesNestedPrivate.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghuge_i4.cmd_9738] +RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_i4\_il_dbghuge_i4.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_i4_n.cmd_9739] +RelativePath=JIT\IL_Conformance\Old\Base\ldc_i4_n\ldc_i4_n.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldc_i4_n +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[constructor_r.cmd_9740] +RelativePath=JIT\Directed\nullabletypes\constructor_r\constructor_r.cmd +WorkingDir=JIT\Directed\nullabletypes\constructor_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finalizeinherit.cmd_9741] +RelativePath=GC\Features\Finalizer\finalizeother\finalizeinherit\finalizeinherit.cmd +WorkingDir=GC\Features\Finalizer\finalizeother\finalizeinherit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated303.cmd_9742] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest303\Generated303\Generated303.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest303\Generated303 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated36.cmd_9743] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest36\Generated36\Generated36.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest36\Generated36 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToInt32.cmd_9744] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt32\StringIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1437.cmd_9745] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1437\Generated1437\Generated1437.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1437\Generated1437 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated960.cmd_9746] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest960\Generated960\Generated960.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest960\Generated960 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_I8_Un.cmd_9747] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un\OpCodesConv_Ovf_I8_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated321.cmd_9748] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest321\Generated321\Generated321.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest321\Generated321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct2_5_2.cmd_9749] +RelativePath=JIT\jit64\gc\misc\struct2_5_2\struct2_5_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct2_5_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcastclass_ldloc.cmd_9750] +RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc\_il_relcastclass_ldloc.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartShort_1.cmd_9751] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort_1\ThreadStartShort_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1436.cmd_9752] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1436\Generated1436\Generated1436.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1436\Generated1436 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_ovf_i2.cmd_9753] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2\mul_ovf_i2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AddrOfPinnedObject.cmd_9754] +RelativePath=GC\API\GCHandle\AddrOfPinnedObject\AddrOfPinnedObject.cmd +WorkingDir=GC\API\GCHandle\AddrOfPinnedObject +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static-mixed.cmd_9755] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed\static-mixed.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex4.cmd_9756] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex4\waitanyex4.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sbyte_cs_d.cmd_9757] +RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d\sbyte_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14059.cmd_9758] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059\b14059.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct06.cmd_9759] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06\struct06.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_255.cmd_9760] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_255\GCSimulator_255.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_255 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b93027.cmd_9761] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027\b93027.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated333.cmd_9762] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest333\Generated333\Generated333.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest333\Generated333 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foo.cmd_9763] +RelativePath=JIT\jit64\regress\asurt\143616\foo\foo.cmd +WorkingDir=JIT\jit64\regress\asurt\143616\foo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesPrivateScope.cmd_9764] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope\FieldAttributesPrivateScope.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartFloat_2.cmd_9765] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat_2\ThreadStartFloat_2.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekMonday.cmd_9766] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday\DayOfWeekMonday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated915.cmd_9767] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest915\Generated915\Generated915.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest915\Generated915 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deadnonlocalexit_d.cmd_9768] +RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_d\deadnonlocalexit_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileShareEnum.cmd_9769] +RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareEnum\FileShareEnum.cmd +WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[prefldinit1_il_d.cmd_9770] +RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_d\prefldinit1_il_d.cmd +WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[call03_dynamic.cmd_9771] +RelativePath=JIT\jit64\localloc\call\call03_dynamic\call03_dynamic.cmd +WorkingDir=JIT\jit64\localloc\call\call03_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b74937.cmd_9772] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937\b74937.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToBoolean.cmd_9773] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToBoolean\StringIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1378.cmd_9774] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1378\Generated1378\Generated1378.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1378\Generated1378 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated680.cmd_9775] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest680\Generated680\Generated680.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest680\Generated680 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[zeroinit01_small.cmd_9776] +RelativePath=JIT\Methodical\localloc\zeroinit\zeroinit01_small\zeroinit01_small.cmd +WorkingDir=JIT\Methodical\localloc\zeroinit\zeroinit01_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface01.cmd_9777] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface01\MultipleInterface01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated747.cmd_9778] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest747\Generated747\Generated747.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest747\Generated747 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1237.cmd_9779] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1237\Generated1237\Generated1237.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1237\Generated1237 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1241.cmd_9780] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1241\Generated1241\Generated1241.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1241\Generated1241 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit3_d.cmd_9781] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d\tryCatchFinallyThrow_nonlocalexit3_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1074.cmd_9782] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1074\Generated1074\Generated1074.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1074\Generated1074 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated712.cmd_9783] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest712\Generated712\Generated712.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest712\Generated712 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteParse3.cmd_9784] +RelativePath=CoreMangLib\cti\system\byte\ByteParse3\ByteParse3.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteParse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated735.cmd_9785] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest735\Generated735\Generated735.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest735\Generated735 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02_auto_ser.cmd_9786] +RelativePath=Loader\classloader\generics\Layout\General\class02_auto_ser\class02_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class02_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated858.cmd_9787] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest858\Generated858\Generated858.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest858\Generated858 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relarrays.cmd_9788] +RelativePath=JIT\Methodical\casts\array\_il_relarrays\_il_relarrays.cmd +WorkingDir=JIT\Methodical\casts\array\_il_relarrays +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59858.cmd_9789] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858\b59858.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[genrecur.cmd_9790] +RelativePath=Regressions\coreclr\0211\genrecur\genrecur.cmd +WorkingDir=Regressions\coreclr\0211\genrecur +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_cs_ro.cmd_9791] +RelativePath=JIT\Directed\shift\int16_cs_ro\int16_cs_ro.cmd +WorkingDir=JIT\Directed\shift\int16_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated272.cmd_9792] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest272\Generated272\Generated272.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest272\Generated272 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall.cmd_9793] +RelativePath=JIT\Methodical\nonvirtualcall\tailcall\tailcall.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\tailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesForwardRef.cmd_9794] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef\MethodImplAttributesForwardRef.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated239.cmd_9795] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest239\Generated239\Generated239.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest239\Generated239 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_class_static02.cmd_9796] +RelativePath=JIT\Generics\Exceptions\specific_class_static02\specific_class_static02.cmd +WorkingDir=JIT\Generics\Exceptions\specific_class_static02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[finallybeforetrybody_d.cmd_9797] +RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_d\finallybeforetrybody_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_9798] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test\test.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02352.cmd_9799] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352\b02352.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relii2.cmd_9800] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relii2\_il_relii2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated777.cmd_9801] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest777\Generated777\Generated777.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest777\Generated777 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem.cmd_9802] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem\OpCodesStelem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_i4.cmd_9803] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i4\starg_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect.cmd_9804] +RelativePath=GC\API\GC\Collect\Collect.cmd +WorkingDir=GC\API\GC\Collect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_class_instance01.cmd_9805] +RelativePath=JIT\Generics\Exceptions\specific_class_instance01\specific_class_instance01.cmd +WorkingDir=JIT\Generics\Exceptions\specific_class_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i4rem_cs_ro.cmd_9806] +RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_ro\i4rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryTryGetValue.cmd_9807] +RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue\IDictionaryTryGetValue.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass002.cmd_9808] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002\castclass002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1480.cmd_9809] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1480\Generated1480\Generated1480.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1480\Generated1480 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-02_cs_do.cmd_9810] +RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_do\200w1d-02_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionBuild.cmd_9811] +RelativePath=CoreMangLib\cti\system\version\VersionBuild\VersionBuild.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionBuild +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1a_cs_ro.cmd_9812] +RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_ro\25param1a_cs_ro.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated499.cmd_9813] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest499\Generated499\Generated499.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest499\Generated499 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgs_ldfld_mulovf.cmd_9814] +RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf\_dbgs_ldfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivConst.cmd_9815] +RelativePath=JIT\CodeGenBringUpTests\DivConst\DivConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\DivConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1111.cmd_9816] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1111\Generated1111\Generated1111.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1111\Generated1111 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_i4.cmd_9817] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4\ldloc_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_i8.cmd_9818] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8\ldc_ret_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[div2.cmd_9819] +RelativePath=JIT\CodeGenBringUpTests\div2\div2.cmd +WorkingDir=JIT\CodeGenBringUpTests\div2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincatch_ro.cmd_9820] +RelativePath=JIT\Methodical\eh\generics\throwincatch_ro\throwincatch_ro.cmd +WorkingDir=JIT\Methodical\eh\generics\throwincatch_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b65423.cmd_9821] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423\b65423.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_ldarg.cmd_9822] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg\_il_dbgisinst_ldarg.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopinfinally_ro.cmd_9823] +RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_ro\loopinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relinstance_cs.cmd_9824] +RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_cs\_relinstance_cs.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc_3.cmd_9825] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3\OpCodesStloc_3.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics017.cmd_9826] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017\box-unbox-generics017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0C_d.cmd_9827] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_d\hfa_nf0C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samethrowtwice_r.cmd_9828] +RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_r\samethrowtwice_r.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BoxUnbox_ro.cmd_9829] +RelativePath=JIT\SIMD\BoxUnbox_ro\BoxUnbox_ro.cmd +WorkingDir=JIT\SIMD\BoxUnbox_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUShort_1.cmd_9830] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort_1\ThreadStartUShort_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Simpsn.cmd_9831] +RelativePath=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn\Simpsn.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated35.cmd_9832] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest35\Generated35\Generated35.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest35\Generated35 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ckfinite.cmd_9833] +RelativePath=JIT\IL_Conformance\Old\Base\ckfinite\ckfinite.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ckfinite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated127.cmd_9834] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest127\Generated127\Generated127.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest127\Generated127 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int_cs_do.cmd_9835] +RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_do\int_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array1.cmd_9836] +RelativePath=JIT\Methodical\refany\array1\array1.cmd +WorkingDir=JIT\Methodical\refany\array1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_I1.cmd_9837] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1\OpCodesStelem_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_321.cmd_9838] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_321\GCSimulator_321.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated433.cmd_9839] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest433\Generated433\Generated433.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest433\Generated433 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[doublearr_cs_r.cmd_9840] +RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_r\doublearr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh06_large.cmd_9841] +RelativePath=JIT\jit64\localloc\ehverify\eh06_large\eh06_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh06_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineType.cmd_9842] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType\OperandTypeInlineType.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72986.cmd_9843] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986\b72986.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated403.cmd_9844] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest403\Generated403\Generated403.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest403\Generated403 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_int_1_r.cmd_9845] +RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_r\expl_int_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldAttributesLiteral.cmd_9846] +RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral\FieldAttributesLiteral.cmd +WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[foo2_dbg.cmd_9847] +RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg\foo2_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13509.cmd_9848] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509\b13509.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackClear.cmd_9849] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackClear\StackClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91859.cmd_9850] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859\b91859.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[13662-b.cmd_9851] +RelativePath=baseservices\threading\regressions\13662\13662-b\13662-b.cmd +WorkingDir=baseservices\threading\regressions\13662\13662-b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value033.cmd_9852] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033\box-unbox-value033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEmpty.cmd_9853] +RelativePath=CoreMangLib\cti\system\guid\GuidEmpty\GuidEmpty.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEmpty +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated224.cmd_9854] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest224\Generated224\Generated224.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest224\Generated224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ptuple_lost.cmd_9855] +RelativePath=JIT\Methodical\flowgraph\bug621705\ptuple_lost\ptuple_lost.cmd +WorkingDir=JIT\Methodical\flowgraph\bug621705\ptuple_lost +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated920.cmd_9856] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest920\Generated920\Generated920.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest920\Generated920 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method010.cmd_9857] +RelativePath=Loader\classloader\generics\GenericMethods\method010\method010.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ref2byref_il_d.cmd_9858] +RelativePath=JIT\Directed\refbyref\ref2byref_il_d\ref2byref_il_d.cmd +WorkingDir=JIT\Directed\refbyref\ref2byref_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExprUnchecked1_r_loop_try.cmd_9859] +RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try\staticFieldExprUnchecked1_r_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_U2.cmd_9860] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2\OpCodesConv_U2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase1_Nested_J_Nested_I.cmd_9861] +RelativePath=Loader\classloader\InterfaceFolding\TestCase1_Nested_J_Nested_I\TestCase1_Nested_J_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase1_Nested_J_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated906.cmd_9862] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest906\Generated906\Generated906.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest906\Generated906 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[localloc3_cs_do.cmd_9863] +RelativePath=JIT\Directed\localloc\localloc3_cs_do\localloc3_cs_do.cmd +WorkingDir=JIT\Directed\localloc\localloc3_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4div_cs_r.cmd_9864] +RelativePath=JIT\Methodical\divrem\div\r4div_cs_r\r4div_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\div\r4div_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_stind.cmd_9865] +RelativePath=JIT\Directed\PREFIX\unaligned\2\ldind_stind\ldind_stind.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\ldind_stind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeDecimal.cmd_9866] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDecimal\TypeCodeDecimal.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDecimal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_286.cmd_9867] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_286\GCSimulator_286.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_286 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackPeek.cmd_9868] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPeek\StackPeek.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPeek +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nativeint_il_d.cmd_9869] +RelativePath=JIT\Directed\shift\nativeint_il_d\nativeint_il_d.cmd +WorkingDir=JIT\Directed\shift\nativeint_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b113493.cmd_9870] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493\b113493.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b31749.cmd_9871] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749\b31749.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b68872.cmd_9872] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872\b68872.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001b.cmd_9873] +RelativePath=Loader\classloader\generics\GenericMethods\method001b\method001b.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanDuration.cmd_9874] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanDuration\TimeSpanDuration.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanDuration +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise4_cs_ro.cmd_9875] +RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_ro\xprecise4_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadCulture.cmd_9876] +RelativePath=Regressions\coreclr\0202\ThreadCulture\ThreadCulture.cmd +WorkingDir=Regressions\coreclr\0202\ThreadCulture +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b103846.cmd_9877] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846\b103846.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableCompare.cmd_9878] +RelativePath=CoreMangLib\cti\system\nullable\NullableCompare\NullableCompare.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableCompare +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1136.cmd_9879] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1136\Generated1136\Generated1136.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1136\Generated1136 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XModuletest4-xmod.cmd_9880] +RelativePath=JIT\Methodical\stringintern\_XModuletest4-xmod\_XModuletest4-xmod.cmd +WorkingDir=JIT\Methodical\stringintern\_XModuletest4-xmod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1.cmd_9881] +RelativePath=Loader\classloader\TypeInitialization\backpatching\test1\test1.cmd +WorkingDir=Loader\classloader\TypeInitialization\backpatching\test1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated232.cmd_9882] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest232\Generated232\Generated232.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest232\Generated232 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Call1.cmd_9883] +RelativePath=JIT\CodeGenBringUpTests\Call1\Call1.cmd +WorkingDir=JIT\CodeGenBringUpTests\Call1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1497.cmd_9884] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1497\Generated1497\Generated1497.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1497\Generated1497 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_191.cmd_9885] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_191\GCSimulator_191.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_191 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingConvert1.cmd_9886] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert1\EncodingConvert1.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_r.cmd_9887] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_r\throwinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BitwiseOperations_r.cmd_9888] +RelativePath=JIT\SIMD\BitwiseOperations_r\BitwiseOperations_r.cmd +WorkingDir=JIT\SIMD\BitwiseOperations_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartFloat_1.cmd_9889] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat_1\ThreadStartFloat_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstvaluetype_r.cmd_9890] +RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_r\isinstvaluetype_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_u4_u1.cmd_9891] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1\conv_ovf_u4_u1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgtailjump_cs.cmd_9892] +RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_cs\_dbgtailjump_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDefaultAliasAttributeCtor.cmd_9893] +RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor\AssemblyDefaultAliasAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex8.cmd_9894] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex8\waitanyex8.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread21.cmd_9895] +RelativePath=baseservices\threading\generics\syncdelegate\GThread21\GThread21.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-fault01.cmd_9896] +RelativePath=baseservices\exceptions\generics\try-fault01\try-fault01.cmd +WorkingDir=baseservices\exceptions\generics\try-fault01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Or_Op_cs_do.cmd_9897] +RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_do\Float_Or_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeInt64.cmd_9898] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt64\TypeCodeInt64.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85316.cmd_9899] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316\b85316.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgselfref.cmd_9900] +RelativePath=JIT\Methodical\Arrays\misc\_dbgselfref\_dbgselfref.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_dbgselfref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RCAttrWrapNEThrows.cmd_9901] +RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows\RCAttrWrapNEThrows.cmd +WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filter2_d.cmd_9902] +RelativePath=JIT\Directed\leave\filter2_d\filter2_d.cmd +WorkingDir=JIT\Directed\leave\filter2_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface013.cmd_9903] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013\box-unbox-interface013.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated199.cmd_9904] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest199\Generated199\Generated199.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest199\Generated199 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldind_stind.cmd_9905] +RelativePath=JIT\Directed\PREFIX\volatile\1\ldind_stind\ldind_stind.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\ldind_stind +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_cs_do.cmd_9906] +RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_do\vt4_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartString_1.cmd_9907] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_1\ThreadStartString_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RandomNext3.cmd_9908] +RelativePath=CoreMangLib\cti\system\random\RandomNext3\RandomNext3.cmd +WorkingDir=CoreMangLib\cti\system\random\RandomNext3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relenum_il.cmd_9909] +RelativePath=JIT\Methodical\Boxing\misc\_relenum_il\_relenum_il.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_relenum_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28042.cmd_9910] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042\b28042.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_ro.cmd_9911] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_ro\throwinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1363.cmd_9912] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1363\Generated1363\Generated1363.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1363\Generated1363 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sustainedlowlatency_race.cmd_9913] +RelativePath=GC\Features\SustainedLowLatency\sustainedlowlatency_race\sustainedlowlatency_race.cmd +WorkingDir=GC\Features\SustainedLowLatency\sustainedlowlatency_race +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i30.cmd_9914] +RelativePath=JIT\jit64\mcc\interop\mcc_i30\mcc_i30.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i30 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[hfa_nf1E_r.cmd_9915] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_r\hfa_nf1E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[box-unbox003.cmd_9916] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003\box-unbox003.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_d.cmd_9917] +RelativePath=JIT\Directed\shift\int16_d\int16_d.cmd +WorkingDir=JIT\Directed\shift\int16_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics042.cmd_9918] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042\castclass-generics042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest1_cs_r.cmd_9919] +RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r\ctest1_cs_r.cmd +WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated597.cmd_9920] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest597\Generated597\Generated597.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest597\Generated597 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated356.cmd_9921] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest356\Generated356\Generated356.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest356\Generated356 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_d.cmd_9922] +RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_d\stfldstatic1_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics031.cmd_9923] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031\castclass-generics031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_call.cmd_9924] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_call\c_call.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[transitive_instance01.cmd_9925] +RelativePath=JIT\Generics\Constraints\transitive_instance01\transitive_instance01.cmd +WorkingDir=JIT\Generics\Constraints\transitive_instance01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_204.cmd_9926] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_204\GCSimulator_204.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_204 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtrycatch_d.cmd_9927] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d\throwinnestedtrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4NaNdiv_cs_r.cmd_9928] +RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_r\r4NaNdiv_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_NormalizeStack.cmd_9929] +RelativePath=JIT\opt\Inline\tests\Inline_NormalizeStack\Inline_NormalizeStack.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_NormalizeStack +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr1_1.cmd_9930] +RelativePath=JIT\jit64\opt\cse\simpleexpr1_1\simpleexpr1_1.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingManifestResourceExceptionCtor1.cmd_9931] +RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1\MissingManifestResourceExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltest1.cmd_9932] +RelativePath=JIT\Methodical\Invoke\callvirt\_reltest1\_reltest1.cmd +WorkingDir=JIT\Methodical\Invoke\callvirt\_reltest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794115_r.cmd_9933] +RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r\DevDiv_794115_r.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin3.cmd_9934] +RelativePath=CoreMangLib\cti\system\math\MathMin3\MathMin3.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91944.cmd_9935] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944\b91944.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b36471.cmd_9936] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471\b36471.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8Test.cmd_9937] +RelativePath=Interop\StringMarshalling\UTF8\UTF8Test\UTF8Test.cmd +WorkingDir=Interop\StringMarshalling\UTF8\UTF8Test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SimpleStruct.cmd_9938] +RelativePath=Interop\SimpleStruct\SimpleStruct\SimpleStruct.cmd +WorkingDir=Interop\SimpleStruct\SimpleStruct +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1063.cmd_9939] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1063\Generated1063\Generated1063.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1063\Generated1063 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated675.cmd_9940] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest675\Generated675\Generated675.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest675\Generated675 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleGetHashCode.cmd_9941] +RelativePath=CoreMangLib\cti\system\single\SingleGetHashCode\SingleGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase4.cmd_9942] +RelativePath=Loader\classloader\InterfaceFolding\TestCase4\TestCase4.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1352.cmd_9943] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1352\Generated1352\Generated1352.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1352\Generated1352 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated496.cmd_9944] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest496\Generated496\Generated496.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest496\Generated496 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b74939.cmd_9945] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939\b74939.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b37830.cmd_9946] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830\b37830.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102962c.cmd_9947] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c\b102962c.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_c_cpblk.cmd_9948] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk\ldc_c_cpblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToSingle.cmd_9949] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle\EnumIConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Simple.cmd_9950] +RelativePath=JIT\Directed\FaultHandlers\Simple\Simple\Simple.cmd +WorkingDir=JIT\Directed\FaultHandlers\Simple\Simple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SystemCollICollectionSyncRoot.cmd_9951] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot\SystemCollICollectionSyncRoot.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[getclassfrommethodparam.cmd_9952] +RelativePath=JIT\Generics\Fields\getclassfrommethodparam\getclassfrommethodparam.cmd +WorkingDir=JIT\Generics\Fields\getclassfrommethodparam +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint16_r.cmd_9953] +RelativePath=JIT\Directed\shift\uint16_r\uint16_r.cmd +WorkingDir=JIT\Directed\shift\uint16_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleToString1.cmd_9954] +RelativePath=CoreMangLib\cti\system\double\DoubleToString1\DoubleToString1.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleToString1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06730.cmd_9955] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730\b06730.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter007.cmd_9956] +RelativePath=baseservices\exceptions\generics\TypeParameter007\TypeParameter007.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter007 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_100.cmd_9957] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_100\GCSimulator_100.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_100 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1484.cmd_9958] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1484\Generated1484\Generated1484.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1484\Generated1484 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetByteCount2.cmd_9959] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2\UnicodeEncodingGetByteCount2.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated897.cmd_9960] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest897\Generated897\Generated897.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest897\Generated897 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarga_r8.cmd_9961] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8\ldarga_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null002.cmd_9962] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002\box-unbox-null002.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcsmixed.cmd_9963] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed\_speed_rellcsmixed.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderctor4.cmd_9964] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4\StringBuilderctor4.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1235.cmd_9965] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1235\Generated1235\Generated1235.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1235\Generated1235 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeUsageAttributeAllowMultiple.cmd_9966] +RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple\AttributeUsageAttributeAllowMultiple.cmd +WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gentogen02.cmd_9967] +RelativePath=JIT\Generics\Conversions\Reference\gentogen02\gentogen02.cmd +WorkingDir=JIT\Generics\Conversions\Reference\gentogen02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b602182.cmd_9968] +RelativePath=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182\b602182.cmd +WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated636.cmd_9969] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest636\Generated636\Generated636.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest636\Generated636 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Parse4.cmd_9970] +RelativePath=CoreMangLib\cti\system\int\Int32Parse4\Int32Parse4.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Parse4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50033.cmd_9971] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033\b50033.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldsfld_mul.cmd_9972] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul\_il_dbgs_ldsfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort7.cmd_9973] +RelativePath=CoreMangLib\cti\system\array\ArraySort7\ArraySort7.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcastclass_newobj.cmd_9974] +RelativePath=JIT\Methodical\casts\coverage\_relcastclass_newobj\_relcastclass_newobj.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_newobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpobj.cmd_9975] +RelativePath=JIT\IL_Conformance\Old\objectmodel\cpobj\cpobj.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\cpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1079.cmd_9976] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1079\Generated1079\Generated1079.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1079\Generated1079 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_popi8.cmd_9977] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8\StackBehaviourPopi_popi8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_r4.cmd_9978] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4\_il_dbgrefloc_r4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringComparerEquals1.cmd_9979] +RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1\StringComparerEquals1.cmd +WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DDB113347.cmd_9980] +RelativePath=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347\DDB113347.cmd +WorkingDir=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated89.cmd_9981] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest89\Generated89\Generated89.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest89\Generated89 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_2c.cmd_9982] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2c\_il_dbgtest_2c.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[1000w1d_cs_ro.cmd_9983] +RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_ro\1000w1d_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange5_cti.cmd_9984] +RelativePath=baseservices\threading\interlocked\exchange\exchange5_cti\exchange5_cti.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange5_cti +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[generics2.cmd_9985] +RelativePath=JIT\Methodical\nonvirtualcall\generics2\generics2.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\generics2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated159.cmd_9986] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest159\Generated159\Generated159.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest159\Generated159 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileModeAppend.cmd_9987] +RelativePath=CoreMangLib\cti\system\io\filemode\FileModeAppend\FileModeAppend.cmd +WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeAppend +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xaddmuly_cs_do.cmd_9988] +RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do\xaddmuly_cs_do.cmd +WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated828.cmd_9989] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest828\Generated828\Generated828.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest828\Generated828 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryIsReadOnly.cmd_9990] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly\IDictionaryIsReadOnly.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated275.cmd_9991] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest275\Generated275\Generated275.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest275\Generated275 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhan3_ctor.cmd_9992] +RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ctor\_il_relhan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1C_r.cmd_9993] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_r\hfa_sf1C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1422.cmd_9994] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1422\Generated1422\Generated1422.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1422\Generated1422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated359.cmd_9995] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest359\Generated359\Generated359.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest359\Generated359 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated50.cmd_9996] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest50\Generated50\Generated50.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest50\Generated50 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b163200.cmd_9997] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200\b163200.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32IConvertibleToInt32.cmd_9998] +RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt32\Int32IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b26558.cmd_9999] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558\b26558.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[weakreffinal.cmd_10000] +RelativePath=GC\Scenarios\WeakReference\weakreffinal\weakreffinal.cmd +WorkingDir=GC\Scenarios\WeakReference\weakreffinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_seq.cmd_10001] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq\_il_reli_seq.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBase64String1.cmd_10002] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String1\ConvertToBase64String1.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanTicksPerHour.cmd_10003] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour\TimeSpanTicksPerHour.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated975.cmd_10004] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest975\Generated975\Generated975.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest975\Generated975 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro237932.cmd_10005] +RelativePath=Loader\classloader\generics\regressions\237932\repro237932\repro237932.cmd +WorkingDir=Loader\classloader\generics\regressions\237932\repro237932 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_346.cmd_10006] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_346\GCSimulator_346.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_346 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unregister03.cmd_10007] +RelativePath=baseservices\threading\threadpool\unregister\unregister03\unregister03.cmd +WorkingDir=baseservices\threading\threadpool\unregister\unregister03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8_cs_ro.cmd_10008] +RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_ro\i8_cs_ro.cmd +WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1C_d.cmd_10009] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_d\hfa_nf1C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgsuperlong.cmd_10010] +RelativePath=JIT\Methodical\int64\superlong\_speed_dbgsuperlong\_speed_dbgsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_speed_dbgsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglocalloc.cmd_10011] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc\_il_dbglocalloc.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_f4.cmd_10012] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f4\_il_relrefarg_f4.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b81618.cmd_10013] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618\b81618.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgfibo_cs.cmd_10014] +RelativePath=JIT\Methodical\Boxing\functional\_odbgfibo_cs\_odbgfibo_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_odbgfibo_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionSyncRoot2.cmd_10015] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2\DictionaryICollectionSyncRoot2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-41g-two.cmd_10016] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-41g-two\RMV-2-13-41g-two.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-41g-two +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arithm64_cs_do.cmd_10017] +RelativePath=JIT\Methodical\NaN\arithm64_cs_do\arithm64_cs_do.cmd +WorkingDir=JIT\Methodical\NaN\arithm64_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MultipleInterface12.cmd_10018] +RelativePath=Loader\classloader\generics\Instantiation\Positive\MultipleInterface12\MultipleInterface12.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\MultipleInterface12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated216.cmd_10019] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest216\Generated216\Generated216.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest216\Generated216 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesAbstract.cmd_10020] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract\TypeAttributesAbstract.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_v.cmd_10021] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_v\_il_relcompat_v.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_v +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingManifestResourceExceptionCtor2.cmd_10022] +RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2\MissingManifestResourceExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryIDictionaryValue3.cmd_10023] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3\DictionaryIDictionaryValue3.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vsw543506.cmd_10024] +RelativePath=Loader\classloader\generics\Variance\IL\vsw543506\vsw543506.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\vsw543506 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetGeneration_fail.cmd_10025] +RelativePath=GC\API\GC\GetGeneration_fail\GetGeneration_fail.cmd +WorkingDir=GC\API\GC\GetGeneration_fail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_r.cmd_10026] +RelativePath=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_r\callconv1_cs_r.cmd +WorkingDir=JIT\Directed\PREFIX\PrimitiveVT\callconv1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[verify01_dynamic.cmd_10027] +RelativePath=JIT\jit64\localloc\verify\verify01_dynamic\verify01_dynamic.cmd +WorkingDir=JIT\jit64\localloc\verify\verify01_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;4851;EXCLUDED;VERIFY +HostStyle=0 + +[stind_i4.cmd_10028] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i4\stind_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null020.cmd_10029] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020\box-unbox-null020.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter002.cmd_10030] +RelativePath=baseservices\exceptions\generics\TypeParameter002\TypeParameter002.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter002 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanCtor2.cmd_10031] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor2\TimeSpanCtor2.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex9a.cmd_10032] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex9a\waitanyex9a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex9a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PinnedMultiple.cmd_10033] +RelativePath=GC\Features\Pinning\PinningOther\PinnedMultiple\PinnedMultiple.cmd +WorkingDir=GC\Features\Pinning\PinningOther\PinnedMultiple +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1094.cmd_10034] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1094\Generated1094\Generated1094.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1094\Generated1094 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IDictionaryGetEnumerator.cmd_10035] +RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator\IDictionaryGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated48.cmd_10036] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest48\Generated48\Generated48.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest48\Generated48 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b39946.cmd_10037] +RelativePath=JIT\Methodical\Coverage\b39946\b39946.cmd +WorkingDir=JIT\Methodical\Coverage\b39946 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate030.cmd_10038] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate030\Delegate030.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_And_Op_cs_do.cmd_10039] +RelativePath=JIT\Directed\cmov\Double_And_Op_cs_do\Double_And_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Conv_I8.cmd_10040] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8\Conv_I8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess1_cs_ro.cmd_10041] +RelativePath=JIT\Directed\StrAccess\straccess1_cs_ro\straccess1_cs_ro.cmd +WorkingDir=JIT\Directed\StrAccess\straccess1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byref2iu_il_r.cmd_10042] +RelativePath=JIT\Directed\refbyref\byref2iu_il_r\byref2iu_il_r.cmd +WorkingDir=JIT\Directed\refbyref\byref2iu_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated796.cmd_10043] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest796\Generated796\Generated796.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest796\Generated796 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos56200037cs_o.cmd_10044] +RelativePath=JIT\Generics\Coverage\chaos56200037cs_o\chaos56200037cs_o.cmd +WorkingDir=JIT\Generics\Coverage\chaos56200037cs_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineString.cmd_10045] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString\OperandTypeInlineString.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param1a_cs_do.cmd_10046] +RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_do\25param1a_cs_do.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b69528.cmd_10047] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528\b69528.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated697.cmd_10048] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest697\Generated697\Generated697.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest697\Generated697 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1412.cmd_10049] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1412\Generated1412\Generated1412.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1412\Generated1412 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[multihandler_r.cmd_10050] +RelativePath=JIT\Methodical\eh\basics\multihandler_r\multihandler_r.cmd +WorkingDir=JIT\Methodical\eh\basics\multihandler_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtrycatch_r.cmd_10051] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r\nestedtrycatch_r.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated924.cmd_10052] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest924\Generated924\Generated924.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest924\Generated924 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-11-3.cmd_10053] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-11-3\L-1-11-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-11-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAccessExceptionCtor2.cmd_10054] +RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2\MethodAccessExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated657.cmd_10055] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest657\Generated657\Generated657.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest657\Generated657 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intdeccheckreturn.cmd_10056] +RelativePath=baseservices\threading\interlocked\checkreturn\intdeccheckreturn\intdeccheckreturn.cmd +WorkingDir=baseservices\threading\interlocked\checkreturn\intdeccheckreturn +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgdeep.cmd_10057] +RelativePath=JIT\Methodical\Invoke\deep\_speed_dbgdeep\_speed_dbgdeep.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_speed_dbgdeep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwwithhandlerscatchingbase_ro.cmd_10058] +RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro\throwwithhandlerscatchingbase_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated865.cmd_10059] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest865\Generated865\Generated865.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest865\Generated865 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop1_cs_do.cmd_10060] +RelativePath=JIT\Directed\UnrollLoop\loop1_cs_do\loop1_cs_do.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivehandle.cmd_10061] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivehandle\keepalivehandle.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivehandle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relgc_nested.cmd_10062] +RelativePath=JIT\Methodical\VT\etc\_speed_relgc_nested\_speed_relgc_nested.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_relgc_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MissingMemberExceptionCtor1.cmd_10063] +RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1\MissingMemberExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XAssemblytest2-xassem.cmd_10064] +RelativePath=JIT\Methodical\stringintern\_XAssemblytest2-xassem\_XAssemblytest2-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\_XAssemblytest2-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_343.cmd_10065] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_343\GCSimulator_343.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_343 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[9_and_alloca2.cmd_10066] +RelativePath=JIT\jit64\gc\misc\9_and_alloca2\9_and_alloca2.cmd +WorkingDir=JIT\jit64\gc\misc\9_and_alloca2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgthrow.cmd_10067] +RelativePath=JIT\Methodical\casts\SEH\_speed_dbgthrow\_speed_dbgthrow.cmd +WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgthrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellcs_ldlen.cmd_10068] +RelativePath=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen\_il_rellcs_ldlen.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionCtor.cmd_10069] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor\FileNotFoundExceptionCtor.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_ro.cmd_10070] +RelativePath=JIT\Methodical\cctor\misc\throw_cs_ro\throw_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\misc\throw_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[smalloom.cmd_10071] +RelativePath=GC\Coverage\smalloom\smalloom.cmd +WorkingDir=GC\Coverage\smalloom +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[b12425.cmd_10072] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425\b12425.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_dbg.cmd_10073] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg\conv_dbg.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Fib.cmd_10074] +RelativePath=JIT\Performance\CodeQuality\BenchI\Fib\Fib\Fib.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Fib\Fib +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated94.cmd_10075] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest94\Generated94\Generated94.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest94\Generated94 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b611219.cmd_10076] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219\b611219.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionSyncRoot.cmd_10077] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot\DictionaryICollectionSyncRoot.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_31.cmd_10078] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_31\GCSimulator_31.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_31 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFPow.cmd_10079] +RelativePath=CoreMangLib\cti\system\mathf\MathFPow\MathFPow.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFPow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_prop.cmd_10080] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop\_il_dbgi_prop.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit1_d.cmd_10081] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d\tryCatchFinallyThrow_nonlocalexit1_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated99.cmd_10082] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest99\Generated99\Generated99.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest99\Generated99 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_268.cmd_10083] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_268\GCSimulator_268.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_268 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_6.cmd_10084] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_6\ConvertToInt64_6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xor.cmd_10085] +RelativePath=JIT\IL_Conformance\Old\Base\xor\xor.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\xor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[innerFinally_ro.cmd_10086] +RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro\innerFinally_ro.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01a_seq.cmd_10087] +RelativePath=Loader\classloader\generics\Layout\General\Base01a_seq\Base01a_seq.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01a_seq +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_381.cmd_10088] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_381\GCSimulator_381.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_381 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf0E_r.cmd_10089] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_r\hfa_nf0E_r.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12684 +HostStyle=0 + +[Generated237.cmd_10090] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest237\Generated237\Generated237.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest237\Generated237 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testInterface.cmd_10091] +RelativePath=Regressions\coreclr\1333\testInterface\testInterface.cmd +WorkingDir=Regressions\coreclr\1333\testInterface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_muldiv.cmd_10092] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_muldiv\_speed_rels_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrefarg_f8.cmd_10093] +RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8\_opt_dbgrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b80737.cmd_10094] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737\b80737.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[covariance.cmd_10095] +RelativePath=JIT\opt\Devirtualization\covariance\covariance.cmd +WorkingDir=JIT\opt\Devirtualization\covariance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated109.cmd_10096] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest109\Generated109\Generated109.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest109\Generated109 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b67987.cmd_10097] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987\b67987.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated263.cmd_10098] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest263\Generated263\Generated263.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest263\Generated263 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglengthm2.cmd_10099] +RelativePath=JIT\Methodical\Arrays\misc\_il_dbglengthm2\_il_dbglengthm2.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglengthm2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated851.cmd_10100] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest851\Generated851\Generated851.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest851\Generated851 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesEndfilter.cmd_10101] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter\OpCodesEndfilter.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated832.cmd_10102] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest832\Generated832\Generated832.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest832\Generated832 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28141.cmd_10103] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141\b28141.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1469.cmd_10104] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1469\Generated1469\Generated1469.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1469\Generated1469 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bug.cmd_10105] +RelativePath=Loader\classloader\regressions\208900\bug\bug.cmd +WorkingDir=Loader\classloader\regressions\208900\bug +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread08.cmd_10106] +RelativePath=baseservices\threading\generics\WaitCallback\thread08\thread08.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unbox006.cmd_10107] +RelativePath=Loader\classloader\generics\Variance\IL\Unbox006\Unbox006.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\Unbox006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b10940a.cmd_10108] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a\b10940a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanTryParse.cmd_10109] +RelativePath=CoreMangLib\cti\system\boolean\BooleanTryParse\BooleanTryParse.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh09_dynamic.cmd_10110] +RelativePath=JIT\jit64\localloc\ehverify\eh09_dynamic\eh09_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh09_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_u.cmd_10111] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u\ble_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidCtor3.cmd_10112] +RelativePath=CoreMangLib\cti\system\guid\GuidCtor3\GuidCtor3.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgtest_implicit.cmd_10113] +RelativePath=JIT\Methodical\tailcall\_il_dbgtest_implicit\_il_dbgtest_implicit.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_implicit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1400.cmd_10114] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1400\Generated1400\Generated1400.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1400\Generated1400 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Or_Op_cs_r.cmd_10115] +RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_r\Double_Or_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated75.cmd_10116] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest75\Generated75\Generated75.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest75\Generated75 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Lorenz.cmd_10117] +RelativePath=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz\Lorenz.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd2E_d.cmd_10118] +RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_d\hfa_sd2E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relnested.cmd_10119] +RelativePath=JIT\Methodical\VT\etc\_il_relnested\_il_relnested.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relnested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesVtableLayoutMask.cmd_10120] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask\MethodAttributesVtableLayoutMask.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28805.cmd_10121] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805\b28805.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartUShort.cmd_10122] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort\ThreadStartUShort.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbsGeneric_ro.cmd_10123] +RelativePath=JIT\SIMD\AbsGeneric_ro\AbsGeneric_ro.cmd +WorkingDir=JIT\SIMD\AbsGeneric_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64Equals1.cmd_10124] +RelativePath=CoreMangLib\cti\system\int64\Int64Equals1\Int64Equals1.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64Equals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switchdefaultonly2_il_d.cmd_10125] +RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d\switchdefaultonly2_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[app.cmd_10126] +RelativePath=JIT\Regression\Dev11\External\Dev11_243742\app\app.cmd +WorkingDir=JIT\Regression\Dev11\External\Dev11_243742\app +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_equalnull_struct01.cmd_10127] +RelativePath=JIT\Generics\Fields\static_equalnull_struct01\static_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Fields\static_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_I4.cmd_10128] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4\OpCodesConv_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fastaredux.cmd_10129] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux\fastaredux.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathTan.cmd_10130] +RelativePath=CoreMangLib\cti\system\math\MathTan\MathTan.cmd +WorkingDir=CoreMangLib\cti\system\math\MathTan +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b473131_intptr.cmd_10131] +RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr\b473131_intptr.cmd +WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgjumps.cmd_10132] +RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumps\_speed_dbgjumps.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumps +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1397.cmd_10133] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1397\Generated1397\Generated1397.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1397\Generated1397 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badcodeafterfinally_d.cmd_10134] +RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_d\badcodeafterfinally_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2444;EXCLUDED +HostStyle=0 + +[GCSimulator_358.cmd_10135] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_358\GCSimulator_358.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_358 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Box_Unbox.cmd_10136] +RelativePath=JIT\Directed\PREFIX\volatile\1\Box_Unbox\Box_Unbox.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\Box_Unbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated643.cmd_10137] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest643\Generated643\Generated643.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest643\Generated643 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated893.cmd_10138] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest893\Generated893\Generated893.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest893\Generated893 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1097.cmd_10139] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1097\Generated1097\Generated1097.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1097\Generated1097 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread02.cmd_10140] +RelativePath=baseservices\threading\generics\TimerCallback\thread02\thread02.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIListRemove.cmd_10141] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListRemove\ListIListRemove.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PInvokeTail.cmd_10142] +RelativePath=JIT\Directed\IL\PInvokeTail\PInvokeTail\PInvokeTail.cmd +WorkingDir=JIT\Directed\IL\PInvokeTail\PInvokeTail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b106272.cmd_10143] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272\b106272.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated123.cmd_10144] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest123\Generated123\Generated123.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest123\Generated123 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex4.cmd_10145] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex4\waitoneex4.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b11878.cmd_10146] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878\b11878.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64MaxValue.cmd_10147] +RelativePath=CoreMangLib\cti\system\int64\Int64MaxValue\Int64MaxValue.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64MaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface06.cmd_10148] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface06\NestedInterface06.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[strswitchfinal_d.cmd_10149] +RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_d\strswitchfinal_d.cmd +WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relbinop.cmd_10150] +RelativePath=JIT\Methodical\int64\misc\_relbinop\_relbinop.cmd +WorkingDir=JIT\Methodical\int64\misc\_relbinop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initobj.cmd_10151] +RelativePath=JIT\Directed\PREFIX\volatile\1\initobj\initobj.cmd +WorkingDir=JIT\Directed\PREFIX\volatile\1\initobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[interface_struct02.cmd_10152] +RelativePath=JIT\Generics\MemberAccess\interface_struct02\interface_struct02.cmd +WorkingDir=JIT\Generics\MemberAccess\interface_struct02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relstress1.cmd_10153] +RelativePath=JIT\Methodical\refany\_relstress1\_relstress1.cmd +WorkingDir=JIT\Methodical\refany\_relstress1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector4_ro.cmd_10154] +RelativePath=JIT\SIMD\Vector4_ro\Vector4_ro.cmd +WorkingDir=JIT\SIMD\Vector4_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf1C_d.cmd_10155] +RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_d\hfa_sf1C_d.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test16.cmd_10156] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test16\test16.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i62.cmd_10157] +RelativePath=JIT\jit64\mcc\interop\mcc_i62\mcc_i62.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i62 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[GCSimulator_266.cmd_10158] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_266\GCSimulator_266.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_266 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IListItem.cmd_10159] +RelativePath=CoreMangLib\cti\system\collections\ilist\IListItem\IListItem.cmd +WorkingDir=CoreMangLib\cti\system\collections\ilist\IListItem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_43.cmd_10160] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_43\GCSimulator_43.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_43 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WaitHandleCtor.cmd_10161] +RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor\WaitHandleCtor.cmd +WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DblNeg.cmd_10162] +RelativePath=JIT\CodeGenBringUpTests\DblNeg\DblNeg.cmd +WorkingDir=JIT\CodeGenBringUpTests\DblNeg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface014.cmd_10163] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014\castclass-interface014.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b565808.cmd_10164] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808\b565808.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean4.cmd_10165] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean4\ConvertToBoolean4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Guid_Parsing.cmd_10166] +RelativePath=CoreMangLib\system\guid\Guid_Parsing\Guid_Parsing.cmd +WorkingDir=CoreMangLib\system\guid\Guid_Parsing +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1398.cmd_10167] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1398\Generated1398\Generated1398.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1398\Generated1398 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3.cmd_10168] +RelativePath=Regressions\coreclr\0138\pow3\pow3.cmd +WorkingDir=Regressions\coreclr\0138\pow3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exec16.cmd_10169] +RelativePath=Loader\classloader\nesting\coreclr\exec16\exec16.cmd +WorkingDir=Loader\classloader\nesting\coreclr\exec16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglocalloc.cmd_10170] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbglocalloc\_il_dbglocalloc.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbglocalloc +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2444;EXCLUDED +HostStyle=0 + +[ConvertToUInt6414.cmd_10171] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6414\ConvertToUInt6414.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byte_cs_do.cmd_10172] +RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_do\byte_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbstractBase02.cmd_10173] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase02\AbstractBase02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01.cmd_10174] +RelativePath=JIT\Generics\Typeof\struct01\struct01.cmd +WorkingDir=JIT\Generics\Typeof\struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharMinValue.cmd_10175] +RelativePath=CoreMangLib\cti\system\char\CharMinValue\CharMinValue.cmd +WorkingDir=CoreMangLib\cti\system\char\CharMinValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8nanconv_il_d.cmd_10176] +RelativePath=JIT\Methodical\NaN\r8nanconv_il_d\r8nanconv_il_d.cmd +WorkingDir=JIT\Methodical\NaN\r8nanconv_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_21.cmd_10177] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_21\GCSimulator_21.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_21 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14616.cmd_10178] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616\b14616.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated341.cmd_10179] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest341\Generated341\Generated341.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest341\Generated341 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b00719.cmd_10180] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719\b00719.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2b_il_r.cmd_10181] +RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_r\25param2b_il_r.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgrotarg_double.cmd_10182] +RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double\_opt_dbgrotarg_double.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeStackBehaviourPush.cmd_10183] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush\OpCodeStackBehaviourPush.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchtryintryfinally_d.cmd_10184] +RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_d\catchtryintryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringConcat3.cmd_10185] +RelativePath=CoreMangLib\cti\system\string\StringConcat3\StringConcat3.cmd +WorkingDir=CoreMangLib\cti\system\string\StringConcat3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionClear.cmd_10186] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear\ICollectionClear.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated253.cmd_10187] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest253\Generated253\Generated253.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest253\Generated253 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyCharArray.cmd_10188] +RelativePath=Interop\MarshalAPI\Copy\CopyCharArray\CopyCharArray.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyCharArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NullableValue.cmd_10189] +RelativePath=CoreMangLib\cti\system\nullable\NullableValue\NullableValue.cmd +WorkingDir=CoreMangLib\cti\system\nullable\NullableValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStobj.cmd_10190] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj\OpCodesStobj.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated211.cmd_10191] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest211\Generated211\Generated211.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest211\Generated211 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgldobj_R8.cmd_10192] +RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8\_il_dbgldobj_R8.cmd +WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_i4.cmd_10193] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4\ldc_ret_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_ro.cmd_10194] +RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_ro\structarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InputValidation.cmd_10195] +RelativePath=GC\API\GCSettings\InputValidation\InputValidation.cmd +WorkingDir=GC\API\GCSettings\InputValidation +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeInt16.cmd_10196] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt16\TypeCodeInt16.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesTailcall.cmd_10197] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall\OpCodesTailcall.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics006.cmd_10198] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006\castclass-generics006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_143.cmd_10199] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_143\GCSimulator_143.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_143 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated46.cmd_10200] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest46\Generated46\Generated46.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest46\Generated46 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass017.cmd_10201] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017\castclass017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMul_ro.cmd_10202] +RelativePath=JIT\SIMD\VectorMul_ro\VectorMul_ro.cmd +WorkingDir=JIT\SIMD\VectorMul_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_cs.cmd_10203] +RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_cs\_dbgsin_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated494.cmd_10204] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest494\Generated494\Generated494.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest494\Generated494 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LdfldaHack.cmd_10205] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack\LdfldaHack.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBgt_S.cmd_10206] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S\OpCodesBgt_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldfld_mul.cmd_10207] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mul\_speed_relldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VersionToString2.cmd_10208] +RelativePath=CoreMangLib\cti\system\version\VersionToString2\VersionToString2.cmd +WorkingDir=CoreMangLib\cti\system\version\VersionToString2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldc_div.cmd_10209] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_div\_speed_rels_ldc_div.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_div +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated972.cmd_10210] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest972\Generated972\Generated972.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest972\Generated972 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedexceptnofin_r.cmd_10211] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r\throwincascadedexceptnofin_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeWrappedException.cmd_10212] +RelativePath=baseservices\compilerservices\RuntimeWrappedException\RuntimeWrappedException\RuntimeWrappedException.cmd +WorkingDir=baseservices\compilerservices\RuntimeWrappedException\RuntimeWrappedException +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin10.cmd_10213] +RelativePath=CoreMangLib\cti\system\math\MathMin10\MathMin10.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value028.cmd_10214] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028\box-unbox-value028.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass009.cmd_10215] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009\castclass009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0A_d.cmd_10216] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_d\hfa_nd0A_d.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b77806.cmd_10217] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806\b77806.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50145b.cmd_10218] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b\b50145b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFloor.cmd_10219] +RelativePath=CoreMangLib\cti\system\math\MathFloor\MathFloor.cmd +WorkingDir=CoreMangLib\cti\system\math\MathFloor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdflda.cmd_10220] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda\OpCodesLdflda.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8div_cs_ro.cmd_10221] +RelativePath=JIT\Methodical\divrem\div\i8div_cs_ro\i8div_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\div\i8div_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72218.cmd_10222] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218\b72218.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated163.cmd_10223] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest163\Generated163\Generated163.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest163\Generated163 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircleInConvex_ro.cmd_10224] +RelativePath=JIT\SIMD\CircleInConvex_ro\CircleInConvex_ro.cmd +WorkingDir=JIT\SIMD\CircleInConvex_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XAssemblytest4-xassem.cmd_10225] +RelativePath=JIT\Methodical\stringintern\_XAssemblytest4-xassem\_XAssemblytest4-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\_XAssemblytest4-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[field_tests.cmd_10226] +RelativePath=JIT\Directed\PREFIX\unaligned\1\field_tests\field_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\field_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayClone.cmd_10227] +RelativePath=CoreMangLib\cti\system\array\ArrayClone\ArrayClone.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayClone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8flat_cs_d.cmd_10228] +RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_d\r8flat_cs_d.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox033.cmd_10229] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033\box-unbox033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface016.cmd_10230] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016\box-unbox-interface016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test0576.cmd_10231] +RelativePath=Regressions\coreclr\0576\Test0576\Test0576.cmd +WorkingDir=Regressions\coreclr\0576\Test0576 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh05_small.cmd_10232] +RelativePath=JIT\jit64\localloc\ehverify\eh05_small\eh05_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh05_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldmul_cs_do.cmd_10233] +RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_do\lclfldmul_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated324.cmd_10234] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest324\Generated324\Generated324.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest324\Generated324 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt166.cmd_10235] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt166\ConvertToUInt166.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt166 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-interface006.cmd_10236] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006\box-unbox-interface006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToBoolean.cmd_10237] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToBoolean\DecimalToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1157.cmd_10238] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1157\Generated1157\Generated1157.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1157\Generated1157 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int32Parse3.cmd_10239] +RelativePath=CoreMangLib\cti\system\int\Int32Parse3\Int32Parse3.cmd +WorkingDir=CoreMangLib\cti\system\int\Int32Parse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate003.cmd_10240] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate003\Delegate003.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate003 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_229.cmd_10241] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_229\GCSimulator_229.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_229 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_10242] +RelativePath=JIT\jit64\regress\vsw\102974\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\102974\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359737.cmd_10243] +RelativePath=JIT\Regression\JitBlue\DevDiv_359737\DevDiv_359737\DevDiv_359737.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359737\DevDiv_359737 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated92.cmd_10244] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest92\Generated92\Generated92.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest92\Generated92 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread07.cmd_10245] +RelativePath=baseservices\threading\generics\WaitCallback\thread07\thread07.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend.cmd_10246] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend\StringBuilderAppend.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop2_cs_r.cmd_10247] +RelativePath=JIT\Directed\UnrollLoop\loop2_cs_r\loop2_cs_r.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated613.cmd_10248] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest613\Generated613\Generated613.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest613\Generated613 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4rem_cs_r.cmd_10249] +RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_r\r4rem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass029.cmd_10250] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029\castclass029.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[self_override5.cmd_10251] +RelativePath=Loader\classloader\MethodImpl\self_override5\self_override5.cmd +WorkingDir=Loader\classloader\MethodImpl\self_override5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_4044.cmd_10252] +RelativePath=JIT\Regression\JitBlue\GitHub_4044\GitHub_4044\GitHub_4044.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_4044\GitHub_4044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b05933.cmd_10253] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933\b05933.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IComparableCompareTo.cmd_10254] +RelativePath=CoreMangLib\cti\system\icomparable\IComparableCompareTo\IComparableCompareTo.cmd +WorkingDir=CoreMangLib\cti\system\icomparable\IComparableCompareTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15203.cmd_10255] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203\b15203.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated602.cmd_10256] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest602\Generated602\Generated602.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest602\Generated602 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrBoundUnsigned.cmd_10257] +RelativePath=JIT\opt\AssertionPropagation\ArrBoundUnsigned\ArrBoundUnsigned.cmd +WorkingDir=JIT\opt\AssertionPropagation\ArrBoundUnsigned +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_187.cmd_10258] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_187\GCSimulator_187.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_187 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesNestedFamily.cmd_10259] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily\TypeAttributesNestedFamily.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test1-xassem.cmd_10260] +RelativePath=JIT\Methodical\stringintern\test1-xassem\test1-xassem.cmd +WorkingDir=JIT\Methodical\stringintern\test1-xassem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimalrem_cs_do.cmd_10261] +RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_do\decimalrem_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Xor_Op_cs_r.cmd_10262] +RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_r\Double_Xor_Op_cs_r.cmd +WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul_r8.cmd_10263] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r8\mul_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegates001.cmd_10264] +RelativePath=Loader\classloader\generics\Variance\Delegates\Delegates001\Delegates001.cmd +WorkingDir=Loader\classloader\generics\Variance\Delegates\Delegates001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_ro.cmd_10265] +RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro\structarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeepAliveNull.cmd_10266] +RelativePath=GC\API\GC\KeepAliveNull\KeepAliveNull.cmd +WorkingDir=GC\API\GC\KeepAliveNull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[starg_r4.cmd_10267] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r4\starg_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_il.cmd_10268] +RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_il\_dbgsin_il.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchtrycatch_d.cmd_10269] +RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_d\trycatchtrycatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_s_i1.cmd_10270] +RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i1\ldarg_s_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IniArray.cmd_10271] +RelativePath=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray\IniArray.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_10272] +RelativePath=JIT\Methodical\inlining\bug505642\test\test.cmd +WorkingDir=JIT\Methodical\inlining\bug505642\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpobj.cmd_10273] +RelativePath=JIT\Directed\PREFIX\unaligned\2\cpobj\cpobj.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\2\cpobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads01.cmd_10274] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads01\CircularCctorThreeThreads01.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GetGenerationWR.cmd_10275] +RelativePath=GC\API\GC\GetGenerationWR\GetGenerationWR.cmd +WorkingDir=GC\API\GC\GetGenerationWR +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow0_cs_d.cmd_10276] +RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_d\pow0_cs_d.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rethrowwithhandlerscatchingbase_ro.cmd_10277] +RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro\rethrowwithhandlerscatchingbase_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_198.cmd_10278] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_198\GCSimulator_198.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_198 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102759.cmd_10279] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759\b102759.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30251.cmd_10280] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251\b30251.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33928.cmd_10281] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928\b33928.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1286.cmd_10282] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1286\Generated1286\Generated1286.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1286\Generated1286 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_No_Op_cs_ro.cmd_10283] +RelativePath=JIT\Directed\cmov\Int_No_Op_cs_ro\Int_No_Op_cs_ro.cmd +WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinclassconstructor_do.cmd_10284] +RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_do\throwinclassconstructor_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1141.cmd_10285] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1141\Generated1141\Generated1141.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1141\Generated1141 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1132.cmd_10286] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1132\Generated1132\Generated1132.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1132\Generated1132 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_305.cmd_10287] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_305\GCSimulator_305.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_305 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIsNaN.cmd_10288] +RelativePath=CoreMangLib\cti\system\double\DoubleIsNaN\DoubleIsNaN.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIsNaN +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_139.cmd_10289] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_139\GCSimulator_139.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_139 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null006.cmd_10290] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006\box-unbox-null006.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b124232.cmd_10291] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232\b124232.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Negative004.cmd_10292] +RelativePath=Loader\classloader\generics\Layout\Specific\Negative004\Negative004.cmd +WorkingDir=Loader\classloader\generics\Layout\Specific\Negative004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated935.cmd_10293] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest935\Generated935\Generated935.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest935\Generated935 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[openmutexneg3.cmd_10294] +RelativePath=baseservices\threading\mutex\openexisting\openmutexneg3\openmutexneg3.cmd +WorkingDir=baseservices\threading\mutex\openexisting\openmutexneg3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated866.cmd_10295] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest866\Generated866\Generated866.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest866\Generated866 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNsub_cs_r.cmd_10296] +RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_r\r8NaNsub_cs_r.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1_cs_r.cmd_10297] +RelativePath=JIT\Methodical\cctor\simple\precise1_cs_r\precise1_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyDelaySignAttributeDelaySign.cmd_10298] +RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign\AssemblyDelaySignAttributeDelaySign.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated53.cmd_10299] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest53\Generated53\Generated53.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest53\Generated53 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACC_ro.cmd_10300] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro\CGRecurseACC_ro.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringLength.cmd_10301] +RelativePath=CoreMangLib\cti\system\string\StringLength\StringLength.cmd +WorkingDir=CoreMangLib\cti\system\string\StringLength +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ble_s.cmd_10302] +RelativePath=JIT\IL_Conformance\Old\Base\ble_s\ble_s.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ble_s +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DayOfWeekThursday.cmd_10303] +RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday\DayOfWeekThursday.cmd +WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[437044.cmd_10304] +RelativePath=baseservices\threading\regressions\beta2\437044\437044.cmd +WorkingDir=baseservices\threading\regressions\beta2\437044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[KeyCollectionCtor.cmd_10305] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor\KeyCollectionCtor.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[methodthrowsinfinally_d.cmd_10306] +RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d\methodthrowsinfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sf0A_r.cmd_10307] +RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_r\hfa_sf0A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IUnknownTest.cmd_10308] +RelativePath=Interop\MarshalAPI\IUnknown\IUnknownTest\IUnknownTest.cmd +WorkingDir=Interop\MarshalAPI\IUnknown\IUnknownTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_U.cmd_10309] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U\OpCodesConv_U.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch4.cmd_10310] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4\ArrayBinarySearch4.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[filterfiltercatchcatch_d.cmd_10311] +RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d\filterfiltercatchcatch_d.cmd +WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43115.cmd_10312] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115\b43115.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1178.cmd_10313] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1178\Generated1178\Generated1178.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1178\Generated1178 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated691.cmd_10314] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest691\Generated691\Generated691.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest691\Generated691 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgiu4.cmd_10315] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu4\_il_dbgiu4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListClear.cmd_10316] +RelativePath=CoreMangLib\cti\system\array\ArrayIListClear\ArrayIListClear.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListClear +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84962.cmd_10317] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962\b84962.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[3w1d-01_cs_do.cmd_10318] +RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_do\3w1d-01_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated305.cmd_10319] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest305\Generated305\Generated305.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest305\Generated305 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedExchange7.cmd_10320] +RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7\InterlockedExchange7.cmd +WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind01_large.cmd_10321] +RelativePath=JIT\jit64\localloc\unwind\unwind01_large\unwind01_large.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind01_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1321.cmd_10322] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1321\Generated1321\Generated1321.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1321\Generated1321 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[valuetype_r.cmd_10323] +RelativePath=JIT\Methodical\nonvirtualcall\valuetype_r\valuetype_r.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgfibo_cs.cmd_10324] +RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_cs\_dbgfibo_cs.cmd +WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case6.cmd_10325] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6\case6.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Call_instance01_r.cmd_10326] +RelativePath=JIT\Generics\Constraints\Call_instance01_r\Call_instance01_r.cmd +WorkingDir=JIT\Generics\Constraints\Call_instance01_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_un_r8.cmd_10327] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8\bne_un_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesAutoClass.cmd_10328] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass\TypeAttributesAutoClass.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_5696.cmd_10329] +RelativePath=JIT\Regression\JitBlue\GitHub_5696\GitHub_5696\GitHub_5696.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_5696\GitHub_5696 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToUInt32.cmd_10330] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32\Int16IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated204.cmd_10331] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest204\Generated204\Generated204.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest204\Generated204 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq_i4.cmd_10332] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4\ceq_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b108129.cmd_10333] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129\b108129.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated698.cmd_10334] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest698\Generated698\Generated698.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest698\Generated698 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delete_next_card_table.cmd_10335] +RelativePath=Regressions\coreclr\0080\delete_next_card_table\delete_next_card_table.cmd +WorkingDir=Regressions\coreclr\0080\delete_next_card_table +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[ArrayInitialize.cmd_10336] +RelativePath=CoreMangLib\cti\system\array\ArrayInitialize\ArrayInitialize.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayInitialize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToBoolean6.cmd_10337] +RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean6\ConvertToBoolean6.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesEndfinally.cmd_10338] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally\OpCodesEndfinally.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBrtrue.cmd_10339] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue\OpCodesBrtrue.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinally_do.cmd_10340] +RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_do\throwinfinally_do.cmd +WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated154.cmd_10341] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest154\Generated154\Generated154.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest154\Generated154 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd1G_d.cmd_10342] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_d\hfa_sd1G_d.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd0E_d.cmd_10343] +RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_d\hfa_nd0E_d.cmd +WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lcliimpl_il_d.cmd_10344] +RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_d\lcliimpl_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatch_d.cmd_10345] +RelativePath=JIT\Methodical\eh\basics\trycatch_d\trycatch_d.cmd +WorkingDir=JIT\Methodical\eh\basics\trycatch_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convr8d_il_d.cmd_10346] +RelativePath=JIT\Methodical\FPtrunc\convr8d_il_d\convr8d_il_d.cmd +WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rva_rvastatic2.cmd_10347] +RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic2\rva_rvastatic2.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[throwinfinallyerrpathfn_ro.cmd_10348] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro\throwinfinallyerrpathfn_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1151.cmd_10349] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1151\Generated1151\Generated1151.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1151\Generated1151 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02076.cmd_10350] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076\b02076.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_r8.cmd_10351] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r8\bge_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryAdd.cmd_10352] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd\DictionaryAdd.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-02_cs_ro.cmd_10353] +RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_ro\200w1d-02_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[byrefsubbyref1.cmd_10354] +RelativePath=JIT\Directed\coverage\importer\byrefsubbyref1\byrefsubbyref1.cmd +WorkingDir=JIT\Directed\coverage\importer\byrefsubbyref1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret5_1.cmd_10355] +RelativePath=JIT\jit64\gc\misc\structret5_1\structret5_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret5_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b64026.cmd_10356] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026\b64026.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StaticsProblem2.cmd_10357] +RelativePath=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem2\StaticsProblem2.cmd +WorkingDir=Loader\classloader\generics\Statics\Regressions\524571\StaticsProblem2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sysinfo_il.cmd_10358] +RelativePath=JIT\Directed\pinvoke\sysinfo_il\sysinfo_il.cmd +WorkingDir=JIT\Directed\pinvoke\sysinfo_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1427.cmd_10359] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1427\Generated1427\Generated1427.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1427\Generated1427 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1147.cmd_10360] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1147\Generated1147\Generated1147.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1147\Generated1147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param3b_il_d.cmd_10361] +RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_d\25param3b_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1117.cmd_10362] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1117\Generated1117\Generated1117.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1117\Generated1117 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-8-1.cmd_10363] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-8-1\L-1-8-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-8-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null012.cmd_10364] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012\box-unbox-null012.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListCtor1.cmd_10365] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor1\ListCtor1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_9891.cmd_10366] +RelativePath=JIT\Regression\JitBlue\GitHub_9891\GitHub_9891\GitHub_9891.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_9891\GitHub_9891 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relint32_range1.cmd_10367] +RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range1\_il_relint32_range1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[avtest.cmd_10368] +RelativePath=Regressions\coreclr\0014\avtest\avtest.cmd +WorkingDir=Regressions\coreclr\0014\avtest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeEquals1.cmd_10369] +RelativePath=CoreMangLib\cti\system\type\TypeEquals1\TypeEquals1.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated170.cmd_10370] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest170\Generated170\Generated170.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest170\Generated170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDelegate_1.cmd_10371] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate_1\ThreadStartDelegate_1.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[value_do.cmd_10372] +RelativePath=JIT\Directed\nullabletypes\value_do\value_do.cmd +WorkingDir=JIT\Directed\nullabletypes\value_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JaggedArray_o.cmd_10373] +RelativePath=JIT\jit64\opt\rngchk\JaggedArray_o\JaggedArray_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\JaggedArray_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_u4.cmd_10374] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4\ldc_mul_ovf_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated144.cmd_10375] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest144\Generated144\Generated144.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest144\Generated144 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstboxed_ro.cmd_10376] +RelativePath=JIT\Directed\nullabletypes\isinstboxed_ro\isinstboxed_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstboxed_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReturnStruct_Method.cmd_10377] +RelativePath=JIT\opt\Inline\tests\ReturnStruct_Method\ReturnStruct_Method.cmd +WorkingDir=JIT\opt\Inline\tests\ReturnStruct_Method +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated152.cmd_10378] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest152\Generated152\Generated152.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest152\Generated152 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value019.cmd_10379] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019\box-unbox-value019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedClass02.cmd_10380] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedClass02\NestedClass02.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedClass02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNmul_cs_d.cmd_10381] +RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_d\r8NaNmul_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06436.cmd_10382] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436\b06436.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59952.cmd_10383] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952\b59952.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated642.cmd_10384] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest642\Generated642\Generated642.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest642\Generated642 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated470.cmd_10385] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest470\Generated470\Generated470.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest470\Generated470 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-value017.cmd_10386] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017\box-unbox-value017.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCHandleAddrOfPinnedObject_PSC.cmd_10387] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC\GCHandleAddrOfPinnedObject_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[params-mixed.cmd_10388] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed\params-mixed.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeLoadExceptionCtor1.cmd_10389] +RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1\TypeLoadExceptionCtor1.cmd +WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated4.cmd_10390] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest4\Generated4\Generated4.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest4\Generated4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1355.cmd_10391] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1355\Generated1355\Generated1355.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1355\Generated1355 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SqrtGeneric_ro.cmd_10392] +RelativePath=JIT\SIMD\SqrtGeneric_ro\SqrtGeneric_ro.cmd +WorkingDir=JIT\SIMD\SqrtGeneric_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated983.cmd_10393] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest983\Generated983\Generated983.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest983\Generated983 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_293.cmd_10394] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_293\GCSimulator_293.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_293 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalParse3.cmd_10395] +RelativePath=CoreMangLib\cti\system\decimal\DecimalParse3\DecimalParse3.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwincascadedexcept_r.cmd_10396] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r\throwincascadedexcept_r.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_assignment_class01.cmd_10397] +RelativePath=JIT\Generics\Parameters\instance_assignment_class01\instance_assignment_class01.cmd +WorkingDir=JIT\Generics\Parameters\instance_assignment_class01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b202743.cmd_10398] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743\b202743.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85564.cmd_10399] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564\b85564.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_cs_d.cmd_10400] +RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_d\vt3_cs_d.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd2A_r.cmd_10401] +RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_r\hfa_nd2A_r.cmd +WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_794631_ro.cmd_10402] +RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro\DevDiv_794631_ro.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDelegate.cmd_10403] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate\ThreadStartDelegate.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated310.cmd_10404] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest310\Generated310\Generated310.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest310\Generated310 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LiteralStatic.cmd_10405] +RelativePath=Loader\classloader\Statics\Misc\LiteralStatic\LiteralStatic.cmd +WorkingDir=Loader\classloader\Statics\Misc\LiteralStatic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetMaxCharCount.cmd_10406] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount\UnicodeEncodingGetMaxCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[trycatchnestedtype_d.cmd_10407] +RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_d\trycatchnestedtype_d.cmd +WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated185.cmd_10408] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest185\Generated185\Generated185.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest185\Generated185 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Peer_3.cmd_10409] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3\Test_CSharp_Peer_3.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FPConvF2F.cmd_10410] +RelativePath=JIT\CodeGenBringUpTests\FPConvF2F\FPConvF2F.cmd +WorkingDir=JIT\CodeGenBringUpTests\FPConvF2F +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relrefarg_f8.cmd_10411] +RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f8\_relrefarg_f8.cmd +WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_155.cmd_10412] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_155\GCSimulator_155.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_155 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b115932b.cmd_10413] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b\b115932b.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated667.cmd_10414] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest667\Generated667\Generated667.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest667\Generated667 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread22.cmd_10415] +RelativePath=baseservices\threading\generics\WaitCallback\thread22\thread22.cmd +WorkingDir=baseservices\threading\generics\WaitCallback\thread22 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54565.cmd_10416] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565\b54565.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hasvalue_do.cmd_10417] +RelativePath=JIT\Directed\nullabletypes\hasvalue_do\hasvalue_do.cmd +WorkingDir=JIT\Directed\nullabletypes\hasvalue_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidEquals1.cmd_10418] +RelativePath=CoreMangLib\cti\system\guid\GuidEquals1\GuidEquals1.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_339.cmd_10419] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_339\GCSimulator_339.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_339 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b67819.cmd_10420] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819\b67819.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit8.cmd_10421] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit8\_opt_relexplicit8.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToSingle.cmd_10422] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToSingle\DecimalToSingle.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relknight.cmd_10423] +RelativePath=JIT\Methodical\VT\etc\_relknight\_relknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_relknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stfldstatic1_il_d.cmd_10424] +RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_d\stfldstatic1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_222.cmd_10425] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_222\GCSimulator_222.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[B04345.cmd_10426] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345\B04345.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b55197.cmd_10427] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197\b55197.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyTitleAttributeTitle.cmd_10428] +RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle\AssemblyTitleAttributeTitle.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i03.cmd_10429] +RelativePath=JIT\jit64\mcc\interop\mcc_i03\mcc_i03.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[partialcompactionwloh.cmd_10430] +RelativePath=GC\Features\PartialCompaction\partialcompactionwloh\partialcompactionwloh.cmd +WorkingDir=GC\Features\PartialCompaction\partialcompactionwloh +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b38269.cmd_10431] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269\b38269.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1112.cmd_10432] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1112\Generated1112\Generated1112.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1112\Generated1112 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse1_cs_do.cmd_10433] +RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_do\cse1_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhuge_b.cmd_10434] +RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_b\_il_relhuge_b.cmd +WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_b +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated54.cmd_10435] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest54\Generated54\Generated54.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest54\Generated54 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_i4.cmd_10436] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4\stloc_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_251.cmd_10437] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_251\GCSimulator_251.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_251 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1047.cmd_10438] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1047\Generated1047\Generated1047.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1047\Generated1047 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hugeSimpleExpr1.cmd_10439] +RelativePath=JIT\jit64\opt\cse\hugeSimpleExpr1\hugeSimpleExpr1.cmd +WorkingDir=JIT\jit64\opt\cse\hugeSimpleExpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85565.cmd_10440] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565\b85565.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics026.cmd_10441] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026\box-unbox-generics026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15783.cmd_10442] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783\b15783.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bne_opt.cmd_10443] +RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt\bne_opt.cmd +WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[1000w1d_cs_do.cmd_10444] +RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_do\1000w1d_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated917.cmd_10445] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest917\Generated917\Generated917.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest917\Generated917 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relnegIndexRngChkElim.cmd_10446] +RelativePath=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim\_il_relnegIndexRngChkElim.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b65176.cmd_10447] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176\b65176.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_odbgtry_cs.cmd_10448] +RelativePath=JIT\Methodical\Boxing\seh\_odbgtry_cs\_odbgtry_cs.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_odbgtry_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_241.cmd_10449] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_241\GCSimulator_241.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_241 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexit_d.cmd_10450] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d\simplenonlocalexit_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread23.cmd_10451] +RelativePath=baseservices\threading\generics\TimerCallback\thread23\thread23.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryCtor5.cmd_10452] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5\DictionaryCtor5.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgunbox.cmd_10453] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbgunbox\_il_dbgunbox.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgunbox +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sealedCastVariance.cmd_10454] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance\sealedCastVariance.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated899.cmd_10455] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest899\Generated899\Generated899.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest899\Generated899 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test11.cmd_10456] +RelativePath=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test11\test11.cmd +WorkingDir=Loader\classloader\explicitlayout\Regressions\ASURT\ASURT150271\test11 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null025.cmd_10457] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025\box-unbox-null025.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstgenerics_r.cmd_10458] +RelativePath=JIT\Directed\nullabletypes\isinstgenerics_r\isinstgenerics_r.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DivSignedUnsignedTest_ro.cmd_10459] +RelativePath=JIT\SIMD\DivSignedUnsignedTest_ro\DivSignedUnsignedTest_ro.cmd +WorkingDir=JIT\SIMD\DivSignedUnsignedTest_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefanyval.cmd_10460] +RelativePath=JIT\Methodical\xxobj\operand\_il_dbgrefanyval\_il_dbgrefanyval.cmd +WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgrefanyval +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pow3_cs_d.cmd_10461] +RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_d\pow3_cs_d.cmd +WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1200.cmd_10462] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1200\Generated1200\Generated1200.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1200\Generated1200 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DynMethodJumpStubTests.cmd_10463] +RelativePath=CoreMangLib\cti\system\reflection\emit\DynMethodJumpStubTests\DynMethodJumpStubTests\DynMethodJumpStubTests.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\DynMethodJumpStubTests\DynMethodJumpStubTests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SuppressFinalize.cmd_10464] +RelativePath=GC\API\GC\SuppressFinalize\SuppressFinalize.cmd +WorkingDir=GC\API\GC\SuppressFinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbghan3_ref.cmd_10465] +RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ref\_speed_dbghan3_ref.cmd +WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null016.cmd_10466] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016\box-unbox-null016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SP2c.cmd_10467] +RelativePath=JIT\Directed\StructPromote\SP2c\SP2c.cmd +WorkingDir=JIT\Directed\StructPromote\SP2c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartDouble.cmd_10468] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble\ThreadStartDouble.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CheckAddLong_1.cmd_10469] +RelativePath=baseservices\threading\interlocked\add\CheckAddLong_1\CheckAddLong_1.cmd +WorkingDir=baseservices\threading\interlocked\add\CheckAddLong_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayJagged.cmd_10470] +RelativePath=JIT\CodeGenBringUpTests\ArrayJagged\ArrayJagged.cmd +WorkingDir=JIT\CodeGenBringUpTests\ArrayJagged +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class1_il_r.cmd_10471] +RelativePath=JIT\Generics\ConstrainedCall\class1_il_r\class1_il_r.cmd +WorkingDir=JIT\Generics\ConstrainedCall\class1_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_array_merge.cmd_10472] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge\_il_dbgi_array_merge.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Xor_Op_cs_d.cmd_10473] +RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_d\Int_Xor_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_41.cmd_10474] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_41\GCSimulator_41.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_41 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise4_cs_r.cmd_10475] +RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_r\xprecise4_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread29.cmd_10476] +RelativePath=baseservices\threading\generics\TimerCallback\thread29\thread29.cmd +WorkingDir=baseservices\threading\generics\TimerCallback\thread29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UninitializedHighWord.cmd_10477] +RelativePath=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord\UninitializedHighWord.cmd +WorkingDir=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relldsfld_mulovf.cmd_10478] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf\_speed_relldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgobj.cmd_10479] +RelativePath=JIT\Methodical\Invoke\implicit\_speed_dbgobj\_speed_dbgobj.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_speed_dbgobj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACA_do.cmd_10480] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do\CGRecurseACA_do.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics037.cmd_10481] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037\box-unbox-generics037.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[XposMatrix.cmd_10482] +RelativePath=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix\XposMatrix.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25474.cmd_10483] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474\b25474.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxenum_ro.cmd_10484] +RelativePath=JIT\Directed\nullabletypes\boxunboxenum_ro\boxunboxenum_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[singleRefField.cmd_10485] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField\singleRefField.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodImplAttributesOPTIL.cmd_10486] +RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL\MethodImplAttributesOPTIL.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate012.cmd_10487] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate012\Delegate012.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84590.cmd_10488] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590\b84590.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop3_il_d.cmd_10489] +RelativePath=JIT\Directed\UnrollLoop\loop3_il_d\loop3_il_d.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i56.cmd_10490] +RelativePath=JIT\jit64\mcc\interop\mcc_i56\mcc_i56.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i56 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedGenericClasses.cmd_10491] +RelativePath=Loader\classloader\generics\Instantiation\Nesting\NestedGenericClasses\NestedGenericClasses.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Nesting\NestedGenericClasses +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BoolTest.cmd_10492] +RelativePath=Interop\PrimitiveMarshalling\Bool\BoolTest\BoolTest.cmd +WorkingDir=Interop\PrimitiveMarshalling\Bool\BoolTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringGetEnumerator.cmd_10493] +RelativePath=CoreMangLib\cti\system\string\StringGetEnumerator\StringGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\string\StringGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1416.cmd_10494] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1416\Generated1416\Generated1416.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1416\Generated1416 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh03_small.cmd_10495] +RelativePath=JIT\jit64\localloc\eh\eh03_small\eh03_small.cmd +WorkingDir=JIT\jit64\localloc\eh\eh03_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dlcollect.cmd_10496] +RelativePath=GC\Scenarios\DoublinkList\dlcollect\dlcollect.cmd +WorkingDir=GC\Scenarios\DoublinkList\dlcollect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relinitializearray.cmd_10497] +RelativePath=JIT\Methodical\Arrays\misc\_il_relinitializearray\_il_relinitializearray.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relinitializearray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1356.cmd_10498] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1356\Generated1356\Generated1356.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1356\Generated1356 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgenum_cs.cmd_10499] +RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_cs\_dbgenum_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinnestedtryfinally_d.cmd_10500] +RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d\throwinnestedtryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b59319.cmd_10501] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319\b59319.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated337.cmd_10502] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest337\Generated337\Generated337.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest337\Generated337 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u4_i.cmd_10503] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i\ldc_conv_ovf_u4_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesShr.cmd_10504] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr\OpCodesShr.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rvastatic5.cmd_10505] +RelativePath=JIT\Directed\rvastatics\rvastatic5\rvastatic5.cmd +WorkingDir=JIT\Directed\rvastatics\rvastatic5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[b28790.cmd_10506] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790\b28790.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleTryParse.cmd_10507] +RelativePath=CoreMangLib\cti\system\single\SingleTryParse\SingleTryParse.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleTryParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pinvoke-bug.cmd_10508] +RelativePath=JIT\Directed\pinvoke\pinvoke-bug\pinvoke-bug.cmd +WorkingDir=JIT\Directed\pinvoke\pinvoke-bug +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated323.cmd_10509] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest323\Generated323\Generated323.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest323\Generated323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListInsertRange.cmd_10510] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListInsertRange\ListInsertRange.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListInsertRange +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LdfldGeneric_r.cmd_10511] +RelativePath=JIT\SIMD\LdfldGeneric_r\LdfldGeneric_r.cmd +WorkingDir=JIT\SIMD\LdfldGeneric_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relmuldiv.cmd_10512] +RelativePath=JIT\Methodical\int64\unsigned\_speed_relmuldiv\_speed_relmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_speed_relmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1064.cmd_10513] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1064\Generated1064\Generated1064.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1064\Generated1064 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloca_s_i1.cmd_10514] +RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i1\ldloca_s_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetType1.cmd_10515] +RelativePath=CoreMangLib\cti\system\type\TypeGetType1\TypeGetType1.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetType1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[subovfun1_il_d.cmd_10516] +RelativePath=JIT\Directed\coverage\importer\subovfun1_il_d\subovfun1_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uncaughtException_r.cmd_10517] +RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r\uncaughtException_r.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UTF8EncodingGetDecoder.cmd_10518] +RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder\UTF8EncodingGetDecoder.cmd +WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopref_popi_popr8.cmd_10519] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8\StackBehaviourPopref_popi_popr8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b02043.cmd_10520] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043\b02043.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_val_1_d.cmd_10521] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_d\seq_gc_val_1_d.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_170.cmd_10522] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_170\GCSimulator_170.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_170 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpath_d.cmd_10523] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_d\throwinfinallyerrpath_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter013.cmd_10524] +RelativePath=baseservices\exceptions\generics\TypeParameter013\TypeParameter013.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter013 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteIntPtr.cmd_10525] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteIntPtr\ReadWriteIntPtr.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteIntPtr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84958.cmd_10526] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958\b84958.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b89409.cmd_10527] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409\b89409.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class02_seq_ser.cmd_10528] +RelativePath=Loader\classloader\generics\Layout\General\class02_seq_ser\class02_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class02_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92289.cmd_10529] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289\b92289.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-null044.cmd_10530] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044\box-unbox-null044.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AttributeTargetsAssembly.cmd_10531] +RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly\AttributeTargetsAssembly.cmd +WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanAdd.cmd_10532] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanAdd\TimeSpanAdd.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanAdd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fieldexpr1_1.cmd_10533] +RelativePath=JIT\jit64\opt\cse\fieldexpr1_1\fieldexpr1_1.cmd +WorkingDir=JIT\jit64\opt\cse\fieldexpr1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated931.cmd_10534] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest931\Generated931\Generated931.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest931\Generated931 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToInt32.cmd_10535] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32\UInt16IConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_ovf_u2.cmd_10536] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2\add_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated327.cmd_10537] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest327\Generated327\Generated327.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest327\Generated327 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToUInt32.cmd_10538] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt32\CharIConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AmbiguousMatchExceptionCtor2.cmd_10539] +RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2\AmbiguousMatchExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldvirtftnsideeffect_il_d.cmd_10540] +RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d\ldvirtftnsideeffect_il_d.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox004.cmd_10541] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004\box-unbox004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b06440a.cmd_10542] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a\b06440a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b09254.cmd_10543] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254\b09254.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated380.cmd_10544] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest380\Generated380\Generated380.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest380\Generated380 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated545.cmd_10545] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest545\Generated545\Generated545.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest545\Generated545 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_i.cmd_10546] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i\ldc_sub_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[302560.cmd_10547] +RelativePath=GC\Regressions\v2.0-beta1\289745\302560\302560.cmd +WorkingDir=GC\Regressions\v2.0-beta1\289745\302560 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryICollectionIsSynchronized2.cmd_10548] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2\DictionaryICollectionIsSynchronized2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToByte.cmd_10549] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToByte\CharIConvertibleToByte.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_58.cmd_10550] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_58\GCSimulator_58.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_58 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineNone.cmd_10551] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone\OperandTypeInlineNone.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgint32_neg_range.cmd_10552] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range\_il_dbgint32_neg_range.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i36.cmd_10553] +RelativePath=JIT\jit64\mcc\interop\mcc_i36\mcc_i36.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i36 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IEnumerableGetEnumerator.cmd_10554] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[short_cs_do.cmd_10555] +RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_do\short_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase1_Nested_I.cmd_10556] +RelativePath=Loader\classloader\InterfaceFolding\TestCase1_Nested_I\TestCase1_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase1_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally-struct01.cmd_10557] +RelativePath=baseservices\exceptions\generics\try-finally-struct01\try-finally-struct01.cmd +WorkingDir=baseservices\exceptions\generics\try-finally-struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_Forced_1.cmd_10558] +RelativePath=GC\API\GC\Collect_Forced_1\Collect_Forced_1.cmd +WorkingDir=GC\API\GC\Collect_Forced_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[instance_equalnull_struct01.cmd_10559] +RelativePath=JIT\Generics\Locals\instance_equalnull_struct01\instance_equalnull_struct01.cmd +WorkingDir=JIT\Generics\Locals\instance_equalnull_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated907.cmd_10560] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest907\Generated907\Generated907.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest907\Generated907 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit02.cmd_10561] +RelativePath=baseservices\threading\generics\Monitor\EnterExit02\EnterExit02.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[opsub.cmd_10562] +RelativePath=JIT\jit64\regress\vsw\560402\opsub\opsub.cmd +WorkingDir=JIT\jit64\regress\vsw\560402\opsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[badendfinally.cmd_10563] +RelativePath=JIT\Directed\coverage\importer\badendfinally\badendfinally.cmd +WorkingDir=JIT\Directed\coverage\importer\badendfinally +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DoubleIConvertibleToInt32.cmd_10564] +RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32\DoubleIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_128.cmd_10565] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_128\GCSimulator_128.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_128 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case2.cmd_10566] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2\case2.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b34945.cmd_10567] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945\b34945.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIsLower1.cmd_10568] +RelativePath=CoreMangLib\cti\system\char\CharIsLower1\CharIsLower1.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIsLower1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64IConvertibleToBoolean.cmd_10569] +RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean\UInt64IConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileShareRead.cmd_10570] +RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareRead\FileShareRead.cmd +WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareRead +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07383.cmd_10571] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383\b07383.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40411.cmd_10572] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411\b40411.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b101147.cmd_10573] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147\b101147.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_1323.cmd_10574] +RelativePath=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323\GitHub_1323.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SciMark.cmd_10575] +RelativePath=JIT\Performance\CodeQuality\SciMark\SciMark\SciMark.cmd +WorkingDir=JIT\Performance\CodeQuality\SciMark\SciMark +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct5.cmd_10576] +RelativePath=JIT\jit64\gc\misc\struct5\struct5.cmd +WorkingDir=JIT\jit64\gc\misc\struct5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs3.cmd_10577] +RelativePath=CoreMangLib\cti\system\math\MathAbs3\MathAbs3.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_r.cmd_10578] +RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r\structarr_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObsoleteAttributeCtor1.cmd_10579] +RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1\ObsoleteAttributeCtor1.cmd +WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_u2.cmd_10580] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2\_il_dbgrefloc_u2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b48248.cmd_10581] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248\b48248.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_10582] +RelativePath=JIT\jit64\regress\vsw\549880\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\549880\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt64MaxValue.cmd_10583] +RelativePath=CoreMangLib\cti\system\uint64\UInt64MaxValue\UInt64MaxValue.cmd +WorkingDir=CoreMangLib\cti\system\uint64\UInt64MaxValue +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_d.cmd_10584] +RelativePath=JIT\Methodical\cctor\misc\throw_cs_d\throw_cs_d.cmd +WorkingDir=JIT\Methodical\cctor\misc\throw_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbggcval_nested.cmd_10585] +RelativePath=JIT\Methodical\tailcall\_il_dbggcval_nested\_il_dbggcval_nested.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStelem_R4.cmd_10586] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4\OpCodesStelem_R4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callnonvirt.cmd_10587] +RelativePath=JIT\IL_Conformance\Old\objectmodel\callnonvirt\callnonvirt.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\callnonvirt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r4nanconv_il_r.cmd_10588] +RelativePath=JIT\Methodical\NaN\r4nanconv_il_r\r4nanconv_il_r.cmd +WorkingDir=JIT\Methodical\NaN\r4nanconv_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated87.cmd_10589] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest87\Generated87\Generated87.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest87\Generated87 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_I4.cmd_10590] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4\OpCodesLdind_I4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct4_2.cmd_10591] +RelativePath=JIT\jit64\gc\misc\struct4_2\struct4_2.cmd +WorkingDir=JIT\jit64\gc\misc\struct4_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CgStress1_do.cmd_10592] +RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_do\CgStress1_do.cmd +WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_muldiv.cmd_10593] +RelativePath=JIT\Methodical\int64\signed\_il_rels_muldiv\_il_rels_muldiv.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_muldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1460.cmd_10594] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1460\Generated1460\Generated1460.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1460\Generated1460 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNsub_cs_d.cmd_10595] +RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_d\r8NaNsub_cs_d.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i07.cmd_10596] +RelativePath=JIT\jit64\mcc\interop\mcc_i07\mcc_i07.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor4.cmd_10597] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor4\DecimalCtor4.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exploit.cmd_10598] +RelativePath=Loader\classloader\methodoverriding\regressions\549411\exploit\exploit.cmd +WorkingDir=Loader\classloader\methodoverriding\regressions\549411\exploit +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SafeHandleSetHandleAsInvalid_PSC.cmd_10599] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC\SafeHandleSetHandleAsInvalid_PSC.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_R8.cmd_10600] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8\OpCodesConv_R8.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_10601] +RelativePath=JIT\jit64\regress\vsw\404708\test\test.cmd +WorkingDir=JIT\jit64\regress\vsw\404708\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt3215.cmd_10602] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3215\ConvertToUInt3215.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox009.cmd_10603] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009\box-unbox009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated372.cmd_10604] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest372\Generated372\Generated372.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest372\Generated372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeShortInlineBrTarget.cmd_10605] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget\OperandTypeShortInlineBrTarget.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nongentogen03.cmd_10606] +RelativePath=JIT\Generics\Conversions\Reference\nongentogen03\nongentogen03.cmd +WorkingDir=JIT\Generics\Conversions\Reference\nongentogen03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceeillegal_il_r.cmd_10607] +RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r\ceeillegal_il_r.cmd +WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pop.cmd_10608] +RelativePath=JIT\IL_Conformance\Old\Base\pop\pop.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\pop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated550.cmd_10609] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest550\Generated550\Generated550.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest550\Generated550 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b30126.cmd_10610] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126\b30126.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh08_small.cmd_10611] +RelativePath=JIT\jit64\localloc\ehverify\eh08_small\eh08_small.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh08_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_130.cmd_10612] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_130\GCSimulator_130.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_130 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgknight.cmd_10613] +RelativePath=JIT\Methodical\VT\etc\_il_dbgknight\_il_dbgknight.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbgknight +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit06.cmd_10614] +RelativePath=baseservices\threading\generics\Monitor\EnterExit06\EnterExit06.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated919.cmd_10615] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest919\Generated919\Generated919.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest919\Generated919 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConstantProp.cmd_10616] +RelativePath=JIT\opt\AssertionPropagation\ConstantProp\ConstantProp.cmd +WorkingDir=JIT\opt\AssertionPropagation\ConstantProp +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b301479.cmd_10617] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479\b301479.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[initblk.cmd_10618] +RelativePath=JIT\IL_Conformance\Old\Base\initblk\initblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPop1_pop1.cmd_10619] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1\StackBehaviourPop1_pop1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstgenerics_ro.cmd_10620] +RelativePath=JIT\Directed\nullabletypes\isinstgenerics_ro\isinstgenerics_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1344.cmd_10621] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1344\Generated1344\Generated1344.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1344\Generated1344 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorMin_ro.cmd_10622] +RelativePath=JIT\SIMD\VectorMin_ro\VectorMin_ro.cmd +WorkingDir=JIT\SIMD\VectorMin_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TestCase4_Nested_I.cmd_10623] +RelativePath=Loader\classloader\InterfaceFolding\TestCase4_Nested_I\TestCase4_Nested_I.cmd +WorkingDir=Loader\classloader\InterfaceFolding\TestCase4_Nested_I +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_349.cmd_10624] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_349\GCSimulator_349.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_349 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[class01_seq_ser.cmd_10625] +RelativePath=Loader\classloader\generics\Layout\General\class01_seq_ser\class01_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\class01_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b28596.cmd_10626] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596\b28596.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread25.cmd_10627] +RelativePath=baseservices\threading\generics\syncdelegate\GThread25\GThread25.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathFAbs.cmd_10628] +RelativePath=CoreMangLib\cti\system\mathf\MathFAbs\MathFAbs.cmd +WorkingDir=CoreMangLib\cti\system\mathf\MathFAbs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samethrowtwice_do.cmd_10629] +RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_do\samethrowtwice_do.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RMV-2-13-22-three.cmd_10630] +RelativePath=Loader\classloader\rmv\il\RMV-2-13-22-three\RMV-2-13-22-three.cmd +WorkingDir=Loader\classloader\rmv\il\RMV-2-13-22-three +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackCopyTo.cmd_10631] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo\StackCopyTo.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalAsAttributeMarshalCookie.cmd_10632] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie\MarshalAsAttributeMarshalCookie.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_318.cmd_10633] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_318\GCSimulator_318.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_318 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested.cmd_10634] +RelativePath=JIT\Directed\RVAInit\nested\nested.cmd +WorkingDir=JIT\Directed\RVAInit\nested +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Permutate.cmd_10635] +RelativePath=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate\Permutate.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71722.cmd_10636] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722\b71722.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int16_cs_r.cmd_10637] +RelativePath=JIT\Directed\shift\int16_cs_r\int16_cs_r.cmd +WorkingDir=JIT\Directed\shift\int16_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh05_dynamic.cmd_10638] +RelativePath=JIT\jit64\localloc\ehverify\eh05_dynamic\eh05_dynamic.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh05_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodeEquals2.cmd_10639] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2\OpCodeEquals2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread23.cmd_10640] +RelativePath=baseservices\threading\generics\threadstart\GThread23\GThread23.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[AbstractBase01.cmd_10641] +RelativePath=Loader\classloader\generics\Instantiation\Positive\AbstractBase01\AbstractBase01.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\AbstractBase01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_74.cmd_10642] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_74\GCSimulator_74.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_74 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread23.cmd_10643] +RelativePath=baseservices\threading\generics\syncdelegate\GThread23\GThread23.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread23 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedCall.cmd_10644] +RelativePath=JIT\CodeGenBringUpTests\NestedCall\NestedCall.cmd +WorkingDir=JIT\CodeGenBringUpTests\NestedCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[value_ro.cmd_10645] +RelativePath=JIT\Directed\nullabletypes\value_ro\value_ro.cmd +WorkingDir=JIT\Directed\nullabletypes\value_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relhanoi.cmd_10646] +RelativePath=JIT\Methodical\VT\etc\_il_relhanoi\_il_relhanoi.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgsizeof64.cmd_10647] +RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64\_speed_dbgsizeof64.cmd +WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ReadWriteInt16.cmd_10648] +RelativePath=Interop\MarshalAPI\ReadWrite\ReadWriteInt16\ReadWriteInt16.cmd +WorkingDir=Interop\MarshalAPI\ReadWrite\ReadWriteInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgexplicit7.cmd_10649] +RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit7\_dbgexplicit7.cmd +WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ValueCollGenericIEnumGetEnumerator.cmd_10650] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator\ValueCollGenericIEnumGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[JTrueLeFP.cmd_10651] +RelativePath=JIT\CodeGenBringUpTests\JTrueLeFP\JTrueLeFP.cmd +WorkingDir=JIT\CodeGenBringUpTests\JTrueLeFP +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MarshalArrayByValTest.cmd_10652] +RelativePath=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest\MarshalArrayByValTest.cmd +WorkingDir=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[and.cmd_10653] +RelativePath=JIT\IL_Conformance\Old\Base\and\and.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\and +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1087.cmd_10654] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1087\Generated1087\Generated1087.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1087\Generated1087 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated18.cmd_10655] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest18\Generated18\Generated18.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest18\Generated18 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_r8.cmd_10656] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8\ldc_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueGetEnumerator.cmd_10657] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator\QueueGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev11_4421.cmd_10658] +RelativePath=JIT\Regression\Dev11\dev11_4421\Dev11_4421\Dev11_4421.cmd +WorkingDir=JIT\Regression\Dev11\dev11_4421\Dev11_4421 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TimeSpanNegate.cmd_10659] +RelativePath=CoreMangLib\cti\system\timespan\TimeSpanNegate\TimeSpanNegate.cmd +WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanNegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeGetGenericTypeDefinition.cmd_10660] +RelativePath=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition\TypeGetGenericTypeDefinition.cmd +WorkingDir=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_402.cmd_10661] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_402\GCSimulator_402.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_402 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSingle14.cmd_10662] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle14\ConvertToSingle14.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relval_cctor.cmd_10663] +RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_cctor\_il_relval_cctor.cmd +WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_cctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_54.cmd_10664] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_54\GCSimulator_54.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_54 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ovfldiv2_il_d.cmd_10665] +RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_d\ovfldiv2_il_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SeekOriginEnd.cmd_10666] +RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd\SeekOriginEnd.cmd +WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionToString.cmd_10667] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString\FileNotFoundExceptionToString.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Case3.cmd_10668] +RelativePath=Loader\classloader\v1\M10\Acceptance\Case3\Case3.cmd +WorkingDir=Loader\classloader\v1\M10\Acceptance\Case3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated14.cmd_10669] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest14\Generated14\Generated14.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest14\Generated14 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16294.cmd_10670] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294\b16294.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgvirtcall.cmd_10671] +RelativePath=JIT\Methodical\refany\_dbgvirtcall\_dbgvirtcall.cmd +WorkingDir=JIT\Methodical\refany\_dbgvirtcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos56200037cs.cmd_10672] +RelativePath=JIT\Generics\Coverage\chaos56200037cs\chaos56200037cs.cmd +WorkingDir=JIT\Generics\Coverage\chaos56200037cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Simpletest1.cmd_10673] +RelativePath=JIT\Methodical\stringintern\_Simpletest1\_Simpletest1.cmd +WorkingDir=JIT\Methodical\stringintern\_Simpletest1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoutoftryfinally_d.cmd_10674] +RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_d\branchoutoftryfinally_d.cmd +WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ICollectionCount.cmd_10675] +RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount\ICollectionCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev12_518401.cmd_10676] +RelativePath=Loader\classloader\regressions\Dev12_518401\dev12_518401\dev12_518401.cmd +WorkingDir=Loader\classloader\regressions\Dev12_518401\dev12_518401 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rels_ldfld_mul.cmd_10677] +RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul\_speed_rels_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorReturn_r.cmd_10678] +RelativePath=JIT\SIMD\VectorReturn_r\VectorReturn_r.cmd +WorkingDir=JIT\SIMD\VectorReturn_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgvalftn_t.cmd_10679] +RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t\_il_dbgvalftn_t.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBound_o.cmd_10680] +RelativePath=JIT\jit64\opt\rngchk\ArrayBound_o\ArrayBound_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\ArrayBound_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null033.cmd_10681] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033\castclass-null033.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bgt.cmd_10682] +RelativePath=JIT\IL_Conformance\Old\Base\bgt\bgt.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\bgt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray1_cs_r.cmd_10683] +RelativePath=JIT\Methodical\doublearray\dblarray1_cs_r\dblarray1_cs_r.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullchecksuppress.cmd_10684] +RelativePath=JIT\Directed\intrinsic\interlocked\nullchecksuppress\nullchecksuppress.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\nullchecksuppress +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclflddiv_cs_do.cmd_10685] +RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_do\lclflddiv_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwisfirstinstruction_d.cmd_10686] +RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_d\throwisfirstinstruction_d.cmd +WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b561129.cmd_10687] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129\b561129.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_seq_ser.cmd_10688] +RelativePath=Loader\classloader\generics\Layout\General\struct01_seq_ser\struct01_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct01_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mainv2.cmd_10689] +RelativePath=readytorun\tests\mainv2\mainv2.cmd +WorkingDir=readytorun\tests\mainv2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL +HostStyle=0 + +[Generated1463.cmd_10690] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1463\Generated1463\Generated1463.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1463\Generated1463 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[chaos65204782cs.cmd_10691] +RelativePath=JIT\Generics\Coverage\chaos65204782cs\chaos65204782cs.cmd +WorkingDir=JIT\Generics\Coverage\chaos65204782cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldfld_mul.cmd_10692] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mul\_dbgldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated119.cmd_10693] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest119\Generated119\Generated119.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest119\Generated119 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToDateTime.cmd_10694] +RelativePath=CoreMangLib\cti\system\convert\ConvertToDateTime\ConvertToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[i8rem_cs_ro.cmd_10695] +RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_ro\i8rem_cs_ro.cmd +WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_108.cmd_10696] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_108\GCSimulator_108.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_108 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1089.cmd_10697] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1089\Generated1089\Generated1089.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1089\Generated1089 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63725.cmd_10698] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725\b63725.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nullarraymemberwaitany.cmd_10699] +RelativePath=baseservices\threading\waithandle\waitany\nullarraymemberwaitany\nullarraymemberwaitany.cmd +WorkingDir=baseservices\threading\waithandle\waitany\nullarraymemberwaitany +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1442.cmd_10700] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1442\Generated1442\Generated1442.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1442\Generated1442 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_U1.cmd_10701] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1\OpCodesConv_U1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToSByte.cmd_10702] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSByte\CharIConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit05.cmd_10703] +RelativePath=baseservices\threading\generics\Monitor\EnterExit05\EnterExit05.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-06_cs_d.cmd_10704] +RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_d\5w1d-06_cs_d.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ObsoleteAttributeMessage.cmd_10705] +RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage\ObsoleteAttributeMessage.cmd +WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgaddsub.cmd_10706] +RelativePath=JIT\Methodical\int64\unsigned\_dbgaddsub\_dbgaddsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgaddsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated353.cmd_10707] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest353\Generated353\Generated353.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest353\Generated353 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics011.cmd_10708] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011\castclass-generics011.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated724.cmd_10709] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest724\Generated724\Generated724.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest724\Generated724 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_493135.cmd_10710] +RelativePath=Loader\classloader\regressions\dev10_493135\dev10_493135\dev10_493135.cmd +WorkingDir=Loader\classloader\regressions\dev10_493135\dev10_493135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[largeexceptiontest.cmd_10711] +RelativePath=GC\LargeMemory\Allocation\largeexceptiontest\largeexceptiontest.cmd +WorkingDir=GC\LargeMemory\Allocation\largeexceptiontest +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[576463.cmd_10712] +RelativePath=baseservices\threading\regressions\576463\576463\576463.cmd +WorkingDir=baseservices\threading\regressions\576463\576463 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct07.cmd_10713] +RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07\struct07.cmd +WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_No_Op_cs_do.cmd_10714] +RelativePath=JIT\Directed\cmov\Double_No_Op_cs_do\Double_No_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallynestedintry_30_ro.cmd_10715] +RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro\throwinfinallynestedintry_30_ro.cmd +WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DllNotFoundExceptionCtor2.cmd_10716] +RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2\DllNotFoundExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalCtor6.cmd_10717] +RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor6\DecimalCtor6.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray4_cs_d.cmd_10718] +RelativePath=JIT\Methodical\doublearray\dblarray4_cs_d\dblarray4_cs_d.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b609988.cmd_10719] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988\b609988.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_60.cmd_10720] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_60\GCSimulator_60.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_60 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bisect.cmd_10721] +RelativePath=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect\Bisect.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[convert_static01.cmd_10722] +RelativePath=JIT\Generics\Constraints\convert_static01\convert_static01.cmd +WorkingDir=JIT\Generics\Constraints\convert_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_sd0G_r.cmd_10723] +RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_r\hfa_sd0G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchtryintryfinally_r.cmd_10724] +RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_r\catchtryintryfinally_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Peer_2.cmd_10725] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2\Test_CSharp_Peer_2.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dynamicTypes.cmd_10726] +RelativePath=JIT\Generics\Typeof\dynamicTypes\dynamicTypes.cmd +WorkingDir=JIT\Generics\Typeof\dynamicTypes +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nf1G_r.cmd_10727] +RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_r\hfa_nf1G_r.cmd +WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b83690.cmd_10728] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690\b83690.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_ret_r4.cmd_10729] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4\ldc_ret_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline_handler.cmd_10730] +RelativePath=JIT\opt\Inline\tests\Inline_handler\Inline_handler.cmd +WorkingDir=JIT\opt\Inline\tests\Inline_handler +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cpblk3_il_r.cmd_10731] +RelativePath=JIT\Methodical\xxblk\cpblk3_il_r\cpblk3_il_r.cmd +WorkingDir=JIT\Methodical\xxblk\cpblk3_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OperandTypeInlineSwitch.cmd_10732] +RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch\OperandTypeInlineSwitch.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass010.cmd_10733] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010\castclass010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Float_Or_Op_cs_d.cmd_10734] +RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_d\Float_Or_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40089.cmd_10735] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089\b40089.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91953.cmd_10736] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953\b91953.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lur_01.cmd_10737] +RelativePath=JIT\jit64\opt\lur\lur_01\lur_01.cmd +WorkingDir=JIT\jit64\opt\lur\lur_01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass039.cmd_10738] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039\castclass039.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgdeep.cmd_10739] +RelativePath=JIT\Methodical\Invoke\deep\_dbgdeep\_dbgdeep.cmd +WorkingDir=JIT\Methodical\Invoke\deep\_dbgdeep +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess3_cs_do.cmd_10740] +RelativePath=JIT\Directed\StrAccess\straccess3_cs_do\straccess3_cs_do.cmd +WorkingDir=JIT\Directed\StrAccess\straccess3_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RuntimeMethodHandleEquals.cmd_10741] +RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals\RuntimeMethodHandleEquals.cmd +WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eco1.cmd_10742] +RelativePath=GC\Features\PartialCompaction\eco1\eco1.cmd +WorkingDir=GC\Features\PartialCompaction\eco1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Struct_ImplementMscorlibGenInterface.cmd_10743] +RelativePath=Loader\classloader\generics\Instantiation\Recursion\Struct_ImplementMscorlibGenInterface\Struct_ImplementMscorlibGenInterface.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Recursion\Struct_ImplementMscorlibGenInterface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimalrem_cs_r.cmd_10744] +RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_r\decimalrem_cs_r.cmd +WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[pop8.cmd_10745] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop8\pop8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method001i.cmd_10746] +RelativePath=Loader\classloader\generics\GenericMethods\method001i\method001i.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method001i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgjumper2.cmd_10747] +RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper2\_il_dbgjumper2.cmd +WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SecurityExceptionToString.cmd_10748] +RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString\SecurityExceptionToString.cmd +WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPushi.cmd_10749] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi\StackBehaviourPushi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread03.cmd_10750] +RelativePath=baseservices\threading\generics\syncdelegate\GThread03\GThread03.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classic.cmd_10751] +RelativePath=JIT\Methodical\nonvirtualcall\classic\classic.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\classic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bouncingball_cs_r.cmd_10752] +RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_r\bouncingball_cs_r.cmd +WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_169.cmd_10753] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_169\GCSimulator_169.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_169 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b92066.cmd_10754] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066\b92066.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b33361.cmd_10755] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361\b33361.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CctorZeroVal03.cmd_10756] +RelativePath=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal03\CctorZeroVal03.cmd +WorkingDir=Loader\classloader\TypeInitialization\ThisNulllPointer\CctorZeroVal03 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MethodAttributesVirtual.cmd_10757] +RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual\MethodAttributesVirtual.cmd +WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalive.cmd_10758] +RelativePath=GC\LargeMemory\API\gc\keepalive\keepalive.cmd +WorkingDir=GC\LargeMemory\API\gc\keepalive +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Test_CSharp_Base_4.cmd_10759] +RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_4\Test_CSharp_Base_4.cmd +WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gcref1.cmd_10760] +RelativePath=JIT\Directed\RVAInit\gcref1\gcref1.cmd +WorkingDir=JIT\Directed\RVAInit\gcref1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_vfld.cmd_10761] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld\_il_reli_vfld.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14070.cmd_10762] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070\b14070.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_u2.cmd_10763] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2\ldc_mul_ovf_u2.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ExchangeInt.cmd_10764] +RelativePath=baseservices\threading\interlocked\exchange\ExchangeInt\ExchangeInt.cmd +WorkingDir=baseservices\threading\interlocked\exchange\ExchangeInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intrinsic_cs_ro.cmd_10765] +RelativePath=JIT\Methodical\NaN\intrinsic_cs_ro\intrinsic_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\intrinsic_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint_cs_r.cmd_10766] +RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_r\uint_cs_r.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uncaughtException_ro.cmd_10767] +RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro\uncaughtException_ro.cmd +WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox019.cmd_10768] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019\box-unbox019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exacttype.cmd_10769] +RelativePath=JIT\opt\Devirtualization\exacttype\exacttype.cmd +WorkingDir=JIT\opt\Devirtualization\exacttype +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated859.cmd_10770] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest859\Generated859\Generated859.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest859\Generated859 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16IConvertibleToSByte.cmd_10771] +RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte\Int16IConvertibleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TryEnter06.cmd_10772] +RelativePath=baseservices\threading\generics\Monitor\TryEnter06\TryEnter06.cmd +WorkingDir=baseservices\threading\generics\Monitor\TryEnter06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartSByte.cmd_10773] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte\ThreadStartSByte.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43963.cmd_10774] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963\b43963.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteIConvertibleToDateTime.cmd_10775] +RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime\ByteIConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SuppressFinalize_Null.cmd_10776] +RelativePath=GC\API\GC\SuppressFinalize_Null\SuppressFinalize_Null.cmd +WorkingDir=GC\API\GC\SuppressFinalize_Null +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b66583.cmd_10777] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583\b66583.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structarr_cs_do.cmd_10778] +RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_do\structarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_28.cmd_10779] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_28\GCSimulator_28.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_i8.cmd_10780] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8\ldarg_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MutualRecur-TailCall.cmd_10781] +RelativePath=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall\MutualRecur-TailCall.cmd +WorkingDir=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_dbgexplicit3.cmd_10782] +RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit3\_opt_dbgexplicit3.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[hfa_nd1C_r.cmd_10783] +RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_r\hfa_nd1C_r.cmd +WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglongsig.cmd_10784] +RelativePath=JIT\Methodical\refany\_il_dbglongsig\_il_dbglongsig.cmd +WorkingDir=JIT\Methodical\refany\_il_dbglongsig +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesConv_Ovf_U_Un.cmd_10785] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un\OpCodesConv_Ovf_U_Un.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchrettoinnertry_cs_d.cmd_10786] +RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d\catchrettoinnertry_cs_d.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Except.cmd_10787] +RelativePath=baseservices\exceptions\regressions\V1\SEH\asm\Except\Except.cmd +WorkingDir=baseservices\exceptions\regressions\V1\SEH\asm\Except +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc_1.cmd_10788] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1\OpCodesStloc_1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics041.cmd_10789] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041\castclass-generics041.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToChar16.cmd_10790] +RelativePath=CoreMangLib\cti\system\convert\ConvertToChar16\ConvertToChar16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_u.cmd_10791] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u\clt_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeCodeString.cmd_10792] +RelativePath=CoreMangLib\cti\system\typecode\TypeCodeString\TypeCodeString.cmd +WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeString +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relindcall.cmd_10793] +RelativePath=JIT\Methodical\refany\_il_relindcall\_il_relindcall.cmd +WorkingDir=JIT\Methodical\refany\_il_relindcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread24.cmd_10794] +RelativePath=baseservices\threading\generics\threadstart\GThread24\GThread24.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread24 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;8091 +HostStyle=0 + +[StackCtor1.cmd_10795] +RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor1\StackCtor1.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated389.cmd_10796] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest389\Generated389\Generated389.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest389\Generated389 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class_ExplicitOverrideVirtualNewslot.cmd_10797] +RelativePath=Loader\classloader\generics\VSD\Class_ExplicitOverrideVirtualNewslot\Class_ExplicitOverrideVirtualNewslot.cmd +WorkingDir=Loader\classloader\generics\VSD\Class_ExplicitOverrideVirtualNewslot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dynamo.cmd_10798] +RelativePath=GC\Scenarios\Dynamo\dynamo\dynamo.cmd +WorkingDir=GC\Scenarios\Dynamo\dynamo +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAttributesEnum.cmd_10799] +RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum\FileAttributesEnum.cmd +WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75890.cmd_10800] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890\b75890.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSByte4.cmd_10801] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte4\ConvertToSByte4.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15299.cmd_10802] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299\b15299.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[delegate.cmd_10803] +RelativePath=JIT\Methodical\nonvirtualcall\delegate\delegate.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\delegate +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[repro123712.cmd_10804] +RelativePath=Loader\classloader\generics\regressions\123712\repro123712\repro123712.cmd +WorkingDir=Loader\classloader\generics\regressions\123712\repro123712 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b08672.cmd_10805] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672\b08672.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToBoolean.cmd_10806] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean\BooleanIConvertibleToBoolean.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gc_base1_1.cmd_10807] +RelativePath=GC\Scenarios\GCBase1\gc_base1_1\gc_base1_1.cmd +WorkingDir=GC\Scenarios\GCBase1\gc_base1_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[contravariance.cmd_10808] +RelativePath=JIT\opt\Devirtualization\contravariance\contravariance.cmd +WorkingDir=JIT\opt\Devirtualization\contravariance +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[switch3.cmd_10809] +RelativePath=JIT\Methodical\switch\switch3\switch3.cmd +WorkingDir=JIT\Methodical\switch\switch3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_Arrayscomplex3.cmd_10810] +RelativePath=JIT\Directed\array-il\_Arrayscomplex3\_Arrayscomplex3.cmd +WorkingDir=JIT\Directed\array-il\_Arrayscomplex3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[char_cs_d.cmd_10811] +RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_d\char_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8NaNmul_cs_ro.cmd_10812] +RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_ro\r8NaNmul_cs_ro.cmd +WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated422.cmd_10813] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest422\Generated422\Generated422.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest422\Generated422 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics030.cmd_10814] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030\castclass-generics030.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[opadd.cmd_10815] +RelativePath=JIT\jit64\regress\vsw\560402\opadd\opadd.cmd +WorkingDir=JIT\jit64\regress\vsw\560402\opadd +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BeginInvokeEndInvoke.cmd_10816] +RelativePath=baseservices\threading\delegate\BeginInvokeEndInvoke\BeginInvokeEndInvoke.cmd +WorkingDir=baseservices\threading\delegate\BeginInvokeEndInvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq_i8.cmd_10817] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8\ceq_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated565.cmd_10818] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest565\Generated565\Generated565.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest565\Generated565 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[c_ret.cmd_10819] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ret\c_ret.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToSingle.cmd_10820] +RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle\ConvertToSingle.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[gettypetypeofmatrix.cmd_10821] +RelativePath=JIT\Directed\gettypetypeof\gettypetypeofmatrix\gettypetypeofmatrix.cmd +WorkingDir=JIT\Directed\gettypetypeof\gettypetypeofmatrix +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_3.cmd_10822] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_3\GCSimulator_3.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyintryfilter1_r.cmd_10823] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r\throwinfinallyintryfilter1_r.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SpanBench.cmd_10824] +RelativePath=JIT\Performance\CodeQuality\Span\SpanBench\SpanBench.cmd +WorkingDir=JIT\Performance\CodeQuality\Span\SpanBench +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_876169_do.cmd_10825] +RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do\DevDiv_876169_do.cmd +WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rels_ldfld_mul.cmd_10826] +RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mul\_il_rels_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_byte_1_r.cmd_10827] +RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_r\expl_byte_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ceq_r8.cmd_10828] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8\ceq_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrotarg_float.cmd_10829] +RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_float\_opt_relrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToUint64.cmd_10830] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64\EnumIConvertibleToUint64.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrToUInt32.cmd_10831] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32\UIntPtrToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[r8flat_cs_r.cmd_10832] +RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_r\r8flat_cs_r.cmd +WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseACA_r.cmd_10833] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r\CGRecurseACA_r.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DecimalToUInt64.cmd_10834] +RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt64\DecimalToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldc_mul.cmd_10835] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mul\_dbgldc_mul.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1202.cmd_10836] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1202\Generated1202\Generated1202.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1202\Generated1202 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15468.cmd_10837] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468\b15468.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgsin_il_il.cmd_10838] +RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_il\_dbgsin_il_il.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_310.cmd_10839] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_310\GCSimulator_310.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_310 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_309.cmd_10840] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_309\GCSimulator_309.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_309 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int8_il_d.cmd_10841] +RelativePath=JIT\Directed\shift\int8_il_d\int8_il_d.cmd +WorkingDir=JIT\Directed\shift\int8_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated518.cmd_10842] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest518\Generated518\Generated518.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest518\Generated518 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b609988.cmd_10843] +RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988\b609988.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07082.cmd_10844] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082\b07082.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75250.cmd_10845] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250\b75250.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgldsfld_mulovf.cmd_10846] +RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf\_dbgldsfld_mulovf.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated397.cmd_10847] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest397\Generated397\Generated397.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest397\Generated397 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread19.cmd_10848] +RelativePath=baseservices\threading\generics\syncdelegate\GThread19\GThread19.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43313.cmd_10849] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313\b43313.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relexplicit2.cmd_10850] +RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit2\_opt_relexplicit2.cmd +WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbglcsbas.cmd_10851] +RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas\_speed_dbglcsbas.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[PackingSizeUnspecified.cmd_10852] +RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified\PackingSizeUnspecified.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventArgsctor.cmd_10853] +RelativePath=CoreMangLib\cti\system\eventargs\EventArgsctor\EventArgsctor.cmd +WorkingDir=CoreMangLib\cti\system\eventargs\EventArgsctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AutoResetEventSet.cmd_10854] +RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet\AutoResetEventSet.cmd +WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpledeadehregion_r.cmd_10855] +RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_r\simpledeadehregion_r.cmd +WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rva_rvastatic4.cmd_10856] +RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic4\rva_rvastatic4.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[Generated249.cmd_10857] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest249\Generated249\Generated249.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest249\Generated249 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_r4.cmd_10858] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4\ldarg_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class2_ImplicitOverrideVirtual.cmd_10859] +RelativePath=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtual\Class2_ImplicitOverrideVirtual.cmd +WorkingDir=Loader\classloader\generics\VSD\Class2_ImplicitOverrideVirtual +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b213516.cmd_10860] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516\b213516.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relcompat_i4_u.cmd_10861] +RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_u\_il_relcompat_i4_u.cmd +WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b41488.cmd_10862] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488\b41488.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b84586.cmd_10863] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586\b84586.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rangecheckinfinally_ro.cmd_10864] +RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_ro\rangecheckinfinally_ro.cmd +WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[catchfiltercatch_r.cmd_10865] +RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r\catchfiltercatch_r.cmd +WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv.cmd_10866] +RelativePath=JIT\IL_Conformance\Old\Base\conv\conv.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\conv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intarr_cs_ro.cmd_10867] +RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro\intarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[compareexchanget.cmd_10868] +RelativePath=baseservices\threading\interlocked\compareexchange\compareexchanget\compareexchanget.cmd +WorkingDir=baseservices\threading\interlocked\compareexchange\compareexchanget +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b13569.cmd_10869] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569\b13569.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Inline.cmd_10870] +RelativePath=JIT\opt\Inline\tests\Inline\Inline.cmd +WorkingDir=JIT\opt\Inline\tests\Inline +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetCharCount.cmd_10871] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount\UnicodeEncodingGetCharCount.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind01_dynamic.cmd_10872] +RelativePath=JIT\jit64\localloc\unwind\unwind01_dynamic\unwind01_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind01_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-2-12-1.cmd_10873] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-12-1\L-2-12-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-2-12-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated939.cmd_10874] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest939\Generated939\Generated939.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest939\Generated939 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null016.cmd_10875] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016\castclass-null016.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanParse.cmd_10876] +RelativePath=CoreMangLib\cti\system\boolean\BooleanParse\BooleanParse.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanParse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[deepcall.cmd_10877] +RelativePath=JIT\opt\Inline\tests\deepcall\deepcall.cmd +WorkingDir=JIT\opt\Inline\tests\deepcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit08.cmd_10878] +RelativePath=baseservices\threading\generics\Monitor\EnterExit08\EnterExit08.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit08 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b75509.cmd_10879] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509\b75509.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated900.cmd_10880] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest900\Generated900\Generated900.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest900\Generated900 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr2_r_try.cmd_10881] +RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_try\arrayexpr2_r_try.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret4_1.cmd_10882] +RelativePath=JIT\jit64\gc\misc\structret4_1\structret4_1.cmd +WorkingDir=JIT\jit64\gc\misc\structret4_1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1379.cmd_10883] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1379\Generated1379\Generated1379.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1379\Generated1379 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int16Equals1.cmd_10884] +RelativePath=CoreMangLib\cti\system\int16\Int16Equals1\Int16Equals1.cmd +WorkingDir=CoreMangLib\cti\system\int16\Int16Equals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgrecurse.cmd_10885] +RelativePath=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse\_speed_dbgrecurse.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_53.cmd_10886] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_53\GCSimulator_53.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_53 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relrefarg_i1.cmd_10887] +RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i1\_il_relrefarg_i1.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16054.cmd_10888] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054\b16054.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgrotarg_float.cmd_10889] +RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_float\_dbgrotarg_float.cmd +WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_float +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt3_cs_do.cmd_10890] +RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_do\vt3_cs_do.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CMain.cmd_10891] +RelativePath=Loader\classloader\regressions\429802\CMain\CMain.cmd +WorkingDir=Loader\classloader\regressions\429802\CMain +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1_cs_ro.cmd_10892] +RelativePath=JIT\Methodical\cctor\simple\precise1_cs_ro\precise1_cs_ro.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1385.cmd_10893] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1385\Generated1385\Generated1385.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1385\Generated1385 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b49104.cmd_10894] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104\b49104.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_Xor_Op_cs_do.cmd_10895] +RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_do\Double_Xor_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdind_I1.cmd_10896] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1\OpCodesLdind_I1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EncodingGetByteCount3.cmd_10897] +RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3\EncodingGetByteCount3.cmd +WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_r8_i.cmd_10898] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i\ldc_conv_ovf_r8_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_short_1_r.cmd_10899] +RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_r\seq_short_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchangedouble.cmd_10900] +RelativePath=baseservices\threading\interlocked\exchange\exchangedouble\exchangedouble.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchangedouble +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_135.cmd_10901] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_135\GCSimulator_135.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorIntEquals_r.cmd_10902] +RelativePath=JIT\SIMD\VectorIntEquals_r\VectorIntEquals_r.cmd +WorkingDir=JIT\SIMD\VectorIntEquals_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit3_ro.cmd_10903] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro\tryCatchFinallyThrow_nonlocalexit3_ro.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-finally02.cmd_10904] +RelativePath=baseservices\exceptions\generics\try-finally02\try-finally02.cmd +WorkingDir=baseservices\exceptions\generics\try-finally02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cascadedexcept_d.cmd_10905] +RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d\cascadedexcept_d.cmd +WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i53.cmd_10906] +RelativePath=JIT\jit64\mcc\interop\mcc_i53\mcc_i53.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i53 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[zeroInitStackSlot.cmd_10907] +RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot\zeroInitStackSlot.cmd +WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b35635.cmd_10908] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635\b35635.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise1b_cs_r.cmd_10909] +RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_r\xprecise1b_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1051.cmd_10910] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1051\Generated1051\Generated1051.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1051\Generated1051 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null009.cmd_10911] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009\castclass-null009.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b71099.cmd_10912] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099\b71099.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh09_large.cmd_10913] +RelativePath=JIT\jit64\localloc\ehverify\eh09_large\eh09_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh09_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[thread08-simplified.cmd_10914] +RelativePath=Regressions\coreclr\0028\thread08-simplified\thread08-simplified.cmd +WorkingDir=Regressions\coreclr\0028\thread08-simplified +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case3.cmd_10915] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3\case3.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind06_dynamic.cmd_10916] +RelativePath=JIT\jit64\localloc\unwind\unwind06_dynamic\unwind06_dynamic.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind06_dynamic +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[testeit_r.cmd_10917] +RelativePath=JIT\Methodical\eh\disconnected\testeit_r\testeit_r.cmd +WorkingDir=JIT\Methodical\eh\disconnected\testeit_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgiu2.cmd_10918] +RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu2\_il_dbgiu2.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Double_And_Op_cs_d.cmd_10919] +RelativePath=JIT\Directed\cmov\Double_And_Op_cs_d\Double_And_Op_cs_d.cmd +WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileAccessReadWrite.cmd_10920] +RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite\FileAccessReadWrite.cmd +WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated923.cmd_10921] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest923\Generated923\Generated923.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest923\Generated923 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics022.cmd_10922] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022\castclass-generics022.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[case9.cmd_10923] +RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9\case9.cmd +WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cgt_i4.cmd_10924] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4\cgt_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated490.cmd_10925] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest490\Generated490\Generated490.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest490\Generated490 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[isinstenum_d.cmd_10926] +RelativePath=JIT\Directed\nullabletypes\isinstenum_d\isinstenum_d.cmd +WorkingDir=JIT\Directed\nullabletypes\isinstenum_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mul3.cmd_10927] +RelativePath=JIT\CodeGenBringUpTests\mul3\mul3.cmd +WorkingDir=JIT\CodeGenBringUpTests\mul3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FieldOffsetAttributeCtor.cmd_10928] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor\FieldOffsetAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixed2_cs_d.cmd_10929] +RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_d\mixed2_cs_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcast_throw.cmd_10930] +RelativePath=JIT\Methodical\casts\SEH\_relcast_throw\_relcast_throw.cmd +WorkingDir=JIT\Methodical\casts\SEH\_relcast_throw +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionCount.cmd_10931] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount\DictionaryValueCollectionCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GuidGetHashCode.cmd_10932] +RelativePath=CoreMangLib\cti\system\guid\GuidGetHashCode\GuidGetHashCode.cmd +WorkingDir=CoreMangLib\cti\system\guid\GuidGetHashCode +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[methodthrowsinfinally_r.cmd_10933] +RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r\methodthrowsinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[params-none.cmd_10934] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none\params-none.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass.cmd_10935] +RelativePath=JIT\IL_Conformance\Old\objectmodel\castclass\castclass.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\castclass +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b63823.cmd_10936] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823\b63823.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54971.cmd_10937] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971\b54971.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionEnumeratorCurrent.cmd_10938] +RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rva_rvastatic3.cmd_10939] +RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic3\rva_rvastatic3.cmd +WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;2451;EXCLUDED;RVA_STATIC +HostStyle=0 + +[b37215.cmd_10940] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215\b37215.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static_assignment_struct01.cmd_10941] +RelativePath=JIT\Generics\Parameters\static_assignment_struct01\static_assignment_struct01.cmd +WorkingDir=JIT\Generics\Parameters\static_assignment_struct01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16922.cmd_10942] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922\b16922.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_i1.cmd_10943] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1\ldc_mul_ovf_i1.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit2_r.cmd_10944] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r\tryCatchFinallyThrow_nonlocalexit2_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayWith2Loops_o.cmd_10945] +RelativePath=JIT\jit64\opt\rngchk\ArrayWith2Loops_o\ArrayWith2Loops_o.cmd +WorkingDir=JIT\jit64\opt\rngchk\ArrayWith2Loops_o +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString19.cmd_10946] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString19\ConvertToString19.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString19 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[seq_gc_short_1_r.cmd_10947] +RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_r\seq_gc_short_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBrtrue_S.cmd_10948] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S\OpCodesBrtrue_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated968.cmd_10949] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest968\Generated968\Generated968.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest968\Generated968 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[clt_u4.cmd_10950] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u4\clt_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FloatOvfToInt2_ro.cmd_10951] +RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_ro\FloatOvfToInt2_ro.cmd +WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_390.cmd_10952] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_390\GCSimulator_390.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_390 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgvcall.cmd_10953] +RelativePath=JIT\Methodical\VT\identity\_speed_dbgvcall\_speed_dbgvcall.cmd +WorkingDir=JIT\Methodical\VT\identity\_speed_dbgvcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclflddiv_cs_d.cmd_10954] +RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_d\lclflddiv_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_364.cmd_10955] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_364\GCSimulator_364.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_364 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyConfigurationAttribute.cmd_10956] +RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttribute\AssemblyConfigurationAttribute.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttribute +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[smallFrame.cmd_10957] +RelativePath=JIT\Methodical\tailcall_v4\smallFrame\smallFrame.cmd +WorkingDir=JIT\Methodical\tailcall_v4\smallFrame +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=Pri0;JIT;9462;EXPECTED_FAIL;6881;EXCLUDED;ILLEGAL_IL_TAILCALL_POP_RET +HostStyle=0 + +[b99222.cmd_10958] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222\b99222.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[branchoverendfinally_d.cmd_10959] +RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_d\branchoverendfinally_d.cmd +WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dlbigleak.cmd_10960] +RelativePath=GC\Scenarios\DoublinkList\dlbigleak\dlbigleak.cmd +WorkingDir=GC\Scenarios\DoublinkList\dlbigleak +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[WeakReferenceCtor2_PSC.cmd_10961] +RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC\WeakReferenceCtor2_PSC.cmd +WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1.cmd_10962] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1\Generated1\Generated1.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1\Generated1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_52.cmd_10963] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_52\GCSimulator_52.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_52 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringEquals1.cmd_10964] +RelativePath=CoreMangLib\cti\system\string\StringEquals1\StringEquals1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CharIConvertibleToSingle.cmd_10965] +RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSingle\CharIConvertibleToSingle.cmd +WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSingle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListIEnumerableGetEnumerator2.cmd_10966] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2\ListIEnumerableGetEnumerator2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add_I4.cmd_10967] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_I4\add_I4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_I4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads02.cmd_10968] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads02\CircularCctorThreeThreads02.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads02 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_344.cmd_10969] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_344\GCSimulator_344.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_344 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated757.cmd_10970] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest757\Generated757\Generated757.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest757\Generated757 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwinfinallyerrpathfn_do.cmd_10971] +RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do\throwinfinallyerrpathfn_do.cmd +WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[samerethrowtwice_ro.cmd_10972] +RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_ro\samerethrowtwice_ro.cmd +WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throw_cs_r.cmd_10973] +RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_r\throw_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv3_il_d.cmd_10974] +RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_d\callconv3_il_d.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relthrow.cmd_10975] +RelativePath=JIT\Methodical\casts\SEH\_relthrow\_relthrow.cmd +WorkingDir=JIT\Methodical\casts\SEH\_relthrow +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b441487.cmd_10976] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487\b441487.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall_d.cmd_10977] +RelativePath=JIT\Methodical\nonvirtualcall\tailcall_d\tailcall_d.cmd +WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_357.cmd_10978] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_357\GCSimulator_357.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_357 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b67414.cmd_10979] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414\b67414.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate023.cmd_10980] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate023\Delegate023.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate023 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldnull.cmd_10981] +RelativePath=JIT\IL_Conformance\Old\Base\ldnull\ldnull.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldnull +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated739.cmd_10982] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest739\Generated739\Generated739.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest739\Generated739 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04083.cmd_10983] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083\b04083.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourVarpush.cmd_10984] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush\StackBehaviourVarpush.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfloat64_range1.cmd_10985] +RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1\_il_dbgfloat64_range1.cmd +WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OrRef.cmd_10986] +RelativePath=JIT\CodeGenBringUpTests\OrRef\OrRef.cmd +WorkingDir=JIT\CodeGenBringUpTests\OrRef +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListLastIndexOf2.cmd_10987] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2\ListLastIndexOf2.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[int32_cs_r.cmd_10988] +RelativePath=JIT\Directed\shift\int32_cs_r\int32_cs_r.cmd +WorkingDir=JIT\Directed\shift\int32_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMax8.cmd_10989] +RelativePath=CoreMangLib\cti\system\math\MathMax8\MathMax8.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMax8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[5w1d-05_cs_ro.cmd_10990] +RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_ro\5w1d-05_cs_ro.cmd +WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated268.cmd_10991] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest268\Generated268\Generated268.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest268\Generated268 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1187.cmd_10992] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1187\Generated1187\Generated1187.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1187\Generated1187 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_reltry_il.cmd_10993] +RelativePath=JIT\Methodical\Boxing\seh\_reltry_il\_reltry_il.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_reltry_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToUInt64.cmd_10994] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64\UInt16IConvertibleToUInt64.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics045.cmd_10995] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045\box-unbox-generics045.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[arrayexpr1.cmd_10996] +RelativePath=JIT\jit64\opt\cse\arrayexpr1\arrayexpr1.cmd +WorkingDir=JIT\jit64\opt\cse\arrayexpr1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[volatilecpobj_il_r.cmd_10997] +RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_r\volatilecpobj_il_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relrecurse.cmd_10998] +RelativePath=JIT\Methodical\Invoke\fptr\_speed_relrecurse\_speed_relrecurse.cmd +WorkingDir=JIT\Methodical\Invoke\fptr\_speed_relrecurse +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_d.cmd_10999] +RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d\jaggedarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConsoleSetOut_PSC.cmd_11000] +RelativePath=CoreMangLib\cti\system\console\ConsoleSetOut_PSC\ConsoleSetOut_PSC.cmd +WorkingDir=CoreMangLib\cti\system\console\ConsoleSetOut_PSC +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Dev10_884217_IL.cmd_11001] +RelativePath=JIT\jit64\opt\cprop\Dev10_884217_IL\Dev10_884217_IL.cmd +WorkingDir=JIT\jit64\opt\cprop\Dev10_884217_IL +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated135.cmd_11002] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest135\Generated135\Generated135.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest135\Generated135 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b50535.cmd_11003] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535\b50535.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[QueueCount.cmd_11004] +RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCount\QueueCount.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCount +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DelegateEquals1.cmd_11005] +RelativePath=CoreMangLib\cti\system\delegate\DelegateEquals1\DelegateEquals1.cmd +WorkingDir=CoreMangLib\cti\system\delegate\DelegateEquals1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated973.cmd_11006] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest973\Generated973\Generated973.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest973\Generated973 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated822.cmd_11007] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest822\Generated822\Generated822.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest822\Generated822 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackEnumeratorMoveNext.cmd_11008] +RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext\StackEnumeratorMoveNext.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-null042.cmd_11009] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042\castclass-null042.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[self_override3.cmd_11010] +RelativePath=Loader\classloader\MethodImpl\self_override3\self_override3.cmd +WorkingDir=Loader\classloader\MethodImpl\self_override3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox026.cmd_11011] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026\box-unbox026.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64IConvertibleToUInt32.cmd_11012] +RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32\Int64IConvertibleToUInt32.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1164.cmd_11013] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1164\Generated1164\Generated1164.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1164\Generated1164 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclassenum_d.cmd_11014] +RelativePath=JIT\Directed\nullabletypes\castclassenum_d\castclassenum_d.cmd +WorkingDir=JIT\Directed\nullabletypes\castclassenum_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbglocal.cmd_11015] +RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocal\_il_dbglocal.cmd +WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt32IConvertibleToType.cmd_11016] +RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType\UInt32IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Richards.cmd_11017] +RelativePath=JIT\Performance\CodeQuality\V8\Richards\Richards\Richards.cmd +WorkingDir=JIT\Performance\CodeQuality\V8\Richards\Richards +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCReRegisterForFinalize.cmd_11018] +RelativePath=CoreMangLib\cti\system\gc\GCReRegisterForFinalize\GCReRegisterForFinalize.cmd +WorkingDir=CoreMangLib\cti\system\gc\GCReRegisterForFinalize +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reljumps.cmd_11019] +RelativePath=JIT\Methodical\VT\callconv\_speed_reljumps\_speed_reljumps.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumps +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b416667.cmd_11020] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667\b416667.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryValueCollectionctor.cmd_11021] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor\DictionaryValueCollectionctor.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b04250.cmd_11022] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250\b04250.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-enum001.cmd_11023] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001\box-unbox-enum001.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b88793.cmd_11024] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793\b88793.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated58.cmd_11025] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest58\Generated58\Generated58.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest58\Generated58 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[25param2c_il_d.cmd_11026] +RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_d\25param2c_il_d.cmd +WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt64_16.cmd_11027] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_16\ConvertToInt64_16.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_133.cmd_11028] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_133\GCSimulator_133.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_133 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IsInst006.cmd_11029] +RelativePath=Loader\classloader\generics\Variance\IL\IsInst006\IsInst006.cmd +WorkingDir=Loader\classloader\generics\Variance\IL\IsInst006 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b07211.cmd_11030] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211\b07211.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_876169_d.cmd_11031] +RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d\DevDiv_876169_d.cmd +WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nested-try-catch05.cmd_11032] +RelativePath=baseservices\exceptions\generics\nested-try-catch05\nested-try-catch05.cmd +WorkingDir=baseservices\exceptions\generics\nested-try-catch05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_373.cmd_11033] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_373\GCSimulator_373.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_373 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1224.cmd_11034] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1224\Generated1224\Generated1224.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1224\Generated1224 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1251.cmd_11035] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1251\Generated1251\Generated1251.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1251\Generated1251 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[expl_double_1_r.cmd_11036] +RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_r\expl_double_1_r.cmd +WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simplenonlocalexitnestedintrycatch_do.cmd_11037] +RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do\simplenonlocalexitnestedintrycatch_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface004.cmd_11038] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004\castclass-interface004.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fasta.cmd_11039] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta\fasta.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_512868.cmd_11040] +RelativePath=Loader\classloader\generics\Constraints\Regressions\dev10_512868\dev10_512868\dev10_512868.cmd +WorkingDir=Loader\classloader\generics\Constraints\Regressions\dev10_512868\dev10_512868 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ListToArray.cmd_11041] +RelativePath=CoreMangLib\cti\system\collections\generic\list\ListToArray\ListToArray.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListToArray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b91203.cmd_11042] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203\b91203.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xor_u8.cmd_11043] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u8\xor_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated694.cmd_11044] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest694\Generated694\Generated694.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest694\Generated694 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop1_cs_r.cmd_11045] +RelativePath=JIT\Directed\UnrollLoop\loop1_cs_r\loop1_cs_r.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b309555.cmd_11046] +RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555\b309555.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayObj.cmd_11047] +RelativePath=JIT\CodeGenBringUpTests\ArrayObj\ArrayObj.cmd +WorkingDir=JIT\CodeGenBringUpTests\ArrayObj +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_opt_relrefarg_i2.cmd_11048] +RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i2\_opt_relrefarg_i2.cmd +WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-4-1.cmd_11049] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-4-1\L-1-4-1.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-4-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort2.cmd_11050] +RelativePath=CoreMangLib\cti\system\array\ArraySort2\ArraySort2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConsoleMandel.cmd_11051] +RelativePath=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel\ConsoleMandel.cmd +WorkingDir=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[throwoutside_ro.cmd_11052] +RelativePath=JIT\Methodical\eh\basics\throwoutside_ro\throwoutside_ro.cmd +WorkingDir=JIT\Methodical\eh\basics\throwoutside_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[array_tests.cmd_11053] +RelativePath=JIT\Directed\PREFIX\unaligned\1\array_tests\array_tests.cmd +WorkingDir=JIT\Directed\PREFIX\unaligned\1\array_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh11_large.cmd_11054] +RelativePath=JIT\jit64\localloc\ehverify\eh11_large\eh11_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh11_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_d.cmd_11055] +RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_d\jaggedarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relexplicit6.cmd_11056] +RelativePath=JIT\Methodical\explicit\misc\_relexplicit6\_relexplicit6.cmd +WorkingDir=JIT\Methodical\explicit\misc\_relexplicit6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated764.cmd_11057] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest764\Generated764\Generated764.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest764\Generated764 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated646.cmd_11058] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest646\Generated646\Generated646.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest646\Generated646 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_u4.cmd_11059] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u4\rem_u4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray3_cs_r.cmd_11060] +RelativePath=JIT\Methodical\doublearray\dblarray3_cs_r\dblarray3_cs_r.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i12.cmd_11061] +RelativePath=JIT\jit64\mcc\interop\mcc_i12\mcc_i12.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[Generated1282.cmd_11062] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1282\Generated1282\Generated1282.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1282\Generated1282 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b115932a.cmd_11063] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a\b115932a.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesRet.cmd_11064] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet\OpCodesRet.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[RankExceptionCtor2.cmd_11065] +RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor2\RankExceptionCtor2.cmd +WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated205.cmd_11066] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest205\Generated205\Generated205.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest205\Generated205 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStartULong.cmd_11067] +RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong\ThreadStartULong.cmd +WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_186.cmd_11068] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_186\GCSimulator_186.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_186 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relhan3_ctor.cmd_11069] +RelativePath=JIT\Methodical\VT\etc\_relhan3_ctor\_relhan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_relhan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[keepalivearray.cmd_11070] +RelativePath=GC\Features\KeepAlive\keepaliveother\keepalivearray\keepalivearray.cmd +WorkingDir=GC\Features\KeepAlive\keepaliveother\keepalivearray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dup.cmd_11071] +RelativePath=JIT\IL_Conformance\Old\Base\dup\dup.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\dup +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedClass04.cmd_11072] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedClass04\NestedClass04.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedClass04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b25463.cmd_11073] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463\b25463.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[simpleexpr4_r_loop.cmd_11074] +RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop\simpleexpr4_r_loop.cmd +WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b102615.cmd_11075] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615\b102615.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method012.cmd_11076] +RelativePath=Loader\classloader\generics\GenericMethods\method012\method012.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method012 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox-generics019.cmd_11077] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019\box-unbox-generics019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b53994.cmd_11078] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994\b53994.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ThreadStatic06.cmd_11079] +RelativePath=baseservices\threading\threadstatic\ThreadStatic06\ThreadStatic06.cmd +WorkingDir=baseservices\threading\threadstatic\ThreadStatic06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStind_I2.cmd_11080] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2\OpCodesStind_I2.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPushref.cmd_11081] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref\StackBehaviourPushref.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexittobeginningoftry_r.cmd_11082] +RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r\nonlocalexittobeginningoftry_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xprecise4_cs_do.cmd_11083] +RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_do\xprecise4_cs_do.cmd +WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Compilation.cmd_11084] +RelativePath=managed\Compilation\Compilation\Compilation.cmd +WorkingDir=managed\Compilation\Compilation +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldloc_s_i4.cmd_11085] +RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i4\ldloc_s_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_338.cmd_11086] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_338\GCSimulator_338.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_338 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Vector4_r.cmd_11087] +RelativePath=JIT\SIMD\Vector4_r\Vector4_r.cmd +WorkingDir=JIT\SIMD\Vector4_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relii4.cmd_11088] +RelativePath=JIT\Methodical\Invoke\implicit\_il_relii4\_il_relii4.cmd +WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldarg_n.cmd_11089] +RelativePath=JIT\IL_Conformance\Old\Base\ldarg_n\ldarg_n.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_n +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[semaphoreopenneg3.cmd_11090] +RelativePath=baseservices\threading\semaphore\ctoropen\semaphoreopenneg3\semaphoreopenneg3.cmd +WorkingDir=baseservices\threading\semaphore\ctoropen\semaphoreopenneg3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated745.cmd_11091] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest745\Generated745\Generated745.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest745\Generated745 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EHPatternTests.cmd_11092] +RelativePath=baseservices\exceptions\unittests\EHPatternTests\EHPatternTests.cmd +WorkingDir=baseservices\exceptions\unittests\EHPatternTests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int_Or_Op_cs_do.cmd_11093] +RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_do\Int_Or_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix5.cmd_11094] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5\OpCodesPrefix5.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[or.cmd_11095] +RelativePath=JIT\IL_Conformance\Old\Base\or\or.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\or +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relisinst_catch.cmd_11096] +RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch\_il_relisinst_catch.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToInt32.cmd_11097] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32\BooleanIConvertibleToInt32.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b27535.cmd_11098] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535\b27535.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[conv_ovf_i8_i.cmd_11099] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i\conv_ovf_i8_i.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate031.cmd_11100] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate031\Delegate031.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[static01.cmd_11101] +RelativePath=JIT\Generics\pinvoke\static01\static01.cmd +WorkingDir=JIT\Generics\pinvoke\static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbghan3_ctor.cmd_11102] +RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ctor\_il_dbghan3_ctor.cmd +WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ctor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrZero.cmd_11103] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrZero\IntPtrZero.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrZero +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPop1.cmd_11104] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1\StackBehaviourPop1.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_911875_ro.cmd_11105] +RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro\DevDiv_911875_ro.cmd +WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[jaggedarr_cs_d.cmd_11106] +RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d\jaggedarr_cs_d.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_359736_r.cmd_11107] +RelativePath=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_r\DevDiv_359736_r.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_359736\DevDiv_359736_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[straccess4.cmd_11108] +RelativePath=JIT\Directed\StrAccess\straccess4\straccess4.cmd +WorkingDir=JIT\Directed\StrAccess\straccess4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated29.cmd_11109] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest29\Generated29\Generated29.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest29\Generated29 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[struct01_auto_ser.cmd_11110] +RelativePath=Loader\classloader\generics\Layout\General\struct01_auto_ser\struct01_auto_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\struct01_auto_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallnullarray.cmd_11111] +RelativePath=baseservices\threading\waithandle\waitall\waitallnullarray\waitallnullarray.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallnullarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StackBehaviourPopi_popi.cmd_11112] +RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi\StackBehaviourPopi_popi.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgvcall.cmd_11113] +RelativePath=JIT\Methodical\VT\identity\_dbgvcall\_dbgvcall.cmd +WorkingDir=JIT\Methodical\VT\identity\_dbgvcall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[precise1b_cs_r.cmd_11114] +RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_r\precise1b_cs_r.cmd +WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[IntPtrToInt32.cmd_11115] +RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt32\IntPtrToInt32.cmd +WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt32 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b52733.cmd_11116] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733\b52733.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47885.cmd_11117] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885\b47885.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1033.cmd_11118] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1033\Generated1033\Generated1033.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1033\Generated1033 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[box-unbox031.cmd_11119] +RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031\box-unbox031.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathMin2.cmd_11120] +RelativePath=CoreMangLib\cti\system\math\MathMin2\MathMin2.cmd +WorkingDir=CoreMangLib\cti\system\math\MathMin2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[eh08_large.cmd_11121] +RelativePath=JIT\jit64\localloc\ehverify\eh08_large\eh08_large.cmd +WorkingDir=JIT\jit64\localloc\ehverify\eh08_large +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated287.cmd_11122] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest287\Generated287\Generated287.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest287\Generated287 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Base01d_seq_ser.cmd_11123] +RelativePath=Loader\classloader\generics\Layout\General\Base01d_seq_ser\Base01d_seq_ser.cmd +WorkingDir=Loader\classloader\generics\Layout\General\Base01d_seq_ser +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[xaddmuly_cs_d.cmd_11124] +RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d\xaddmuly_cs_d.cmd +WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringCompare1.cmd_11125] +RelativePath=CoreMangLib\cti\system\string\StringCompare1\StringCompare1.cmd +WorkingDir=CoreMangLib\cti\system\string\StringCompare1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tryCatchFinallyThrow_nonlocalexit3_do.cmd_11126] +RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do\tryCatchFinallyThrow_nonlocalexit3_do.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[specific_struct_static01.cmd_11127] +RelativePath=JIT\Generics\Exceptions\specific_struct_static01\specific_struct_static01.cmd +WorkingDir=JIT\Generics\Exceptions\specific_struct_static01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1195.cmd_11128] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1195\Generated1195\Generated1195.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1195\Generated1195 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetEnumerator.cmd_11129] +RelativePath=CoreMangLib\cti\system\array\ArrayGetEnumerator\ArrayGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[cse2_cs_d.cmd_11130] +RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_d\cse2_cs_d.cmd +WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgarray2.cmd_11131] +RelativePath=JIT\Methodical\refany\_il_dbgarray2\_il_dbgarray2.cmd +WorkingDir=JIT\Methodical\refany\_il_dbgarray2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mismatch64.cmd_11132] +RelativePath=JIT\opt\Inline\regression\mismatch64\mismatch64\mismatch64.cmd +WorkingDir=JIT\opt\Inline\regression\mismatch64\mismatch64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictEnumIEnumget_Current.cmd_11133] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current\DictEnumIEnumget_Current.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToDateTime.cmd_11134] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime\UInt16IConvertibleToDateTime.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericAssertin.cmd_11135] +RelativePath=Loader\classloader\regressions\vsw305955\GenericAssertin\GenericAssertin.cmd +WorkingDir=Loader\classloader\regressions\vsw305955\GenericAssertin +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b147924.cmd_11136] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924\b147924.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray4_cs_do.cmd_11137] +RelativePath=JIT\Methodical\doublearray\dblarray4_cs_do\dblarray4_cs_do.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleEpsilon.cmd_11138] +RelativePath=CoreMangLib\cti\system\single\SingleEpsilon\SingleEpsilon.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleEpsilon +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Interfaces001.cmd_11139] +RelativePath=Loader\classloader\generics\Variance\Interfaces\Interfaces001\Interfaces001.cmd +WorkingDir=Loader\classloader\generics\Variance\Interfaces\Interfaces001 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1272.cmd_11140] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1272\Generated1272\Generated1272.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1272\Generated1272 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_177.cmd_11141] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_177\GCSimulator_177.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_177 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DevDiv_280120.cmd_11142] +RelativePath=JIT\Regression\JitBlue\DevDiv_280120\DevDiv_280120\DevDiv_280120.cmd +WorkingDir=JIT\Regression\JitBlue\DevDiv_280120\DevDiv_280120 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bindhandleinvalid3.cmd_11143] +RelativePath=baseservices\threading\threadpool\bindhandle\bindhandleinvalid3\bindhandleinvalid3.cmd +WorkingDir=baseservices\threading\threadpool\bindhandle\bindhandleinvalid3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loop6_cs_ro.cmd_11144] +RelativePath=JIT\Directed\UnrollLoop\loop6_cs_ro\loop6_cs_ro.cmd +WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UModConst.cmd_11145] +RelativePath=JIT\CodeGenBringUpTests\UModConst\UModConst.cmd +WorkingDir=JIT\CodeGenBringUpTests\UModConst +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Type_ofT_Inherit_FromT.cmd_11146] +RelativePath=Loader\classloader\generics\Instantiation\Negative\Type_ofT_Inherit_FromT\Type_ofT_Inherit_FromT.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Negative\Type_ofT_Inherit_FromT +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayIListRemove.cmd_11147] +RelativePath=CoreMangLib\cti\system\array\ArrayIListRemove\ArrayIListRemove.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemove +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nbody.cmd_11148] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody\nbody.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIConvertibleToChar.cmd_11149] +RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToChar\StringIConvertibleToChar.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1162.cmd_11150] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1162\Generated1162\Generated1162.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1162\Generated1162 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesPrefix4.cmd_11151] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4\OpCodesPrefix4.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToInt32_5.cmd_11152] +RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_5\ConvertToInt32_5.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1317.cmd_11153] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1317\Generated1317\Generated1317.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1317\Generated1317 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AbsSqrt_r.cmd_11154] +RelativePath=JIT\SIMD\AbsSqrt_r\AbsSqrt_r.cmd +WorkingDir=JIT\SIMD\AbsSqrt_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated539.cmd_11155] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest539\Generated539\Generated539.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest539\Generated539 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_8133.cmd_11156] +RelativePath=JIT\Regression\JitBlue\GitHub_8133\GitHub_8133\GitHub_8133.cmd +WorkingDir=JIT\Regression\JitBlue\GitHub_8133\GitHub_8133 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldmul_cs_r.cmd_11157] +RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_r\lclfldmul_cs_r.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relsuperlong.cmd_11158] +RelativePath=JIT\Methodical\int64\superlong\_relsuperlong\_relsuperlong.cmd +WorkingDir=JIT\Methodical\int64\superlong\_relsuperlong +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_sub_ovf_u8.cmd_11159] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8\ldc_sub_ovf_u8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b86139.cmd_11160] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139\b86139.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NestedInterface05.cmd_11161] +RelativePath=Loader\classloader\generics\Instantiation\Positive\NestedInterface05\NestedInterface05.cmd +WorkingDir=Loader\classloader\generics\Instantiation\Positive\NestedInterface05 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[vt4_cs_ro.cmd_11162] +RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_ro\vt4_cs_ro.cmd +WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[NoEnterValType.cmd_11163] +RelativePath=baseservices\threading\monitor\unownedlock\NoEnterValType\NoEnterValType.cmd +WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterValType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1329.cmd_11164] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1329\Generated1329\Generated1329.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1329\Generated1329 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBr_S.cmd_11165] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S\OpCodesBr_S.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Method004.cmd_11166] +RelativePath=Loader\classloader\generics\Variance\Methods\Method004\Method004.cmd +WorkingDir=Loader\classloader\generics\Variance\Methods\Method004 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[loopinfinally_r.cmd_11167] +RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_r\loopinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[plainarr_cs_ro.cmd_11168] +RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro\plainarr_cs_ro.cmd +WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b00735.cmd_11169] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735\b00735.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_u8_i8.cmd_11170] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8\ldc_conv_ovf_u8_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[exchange2.cmd_11171] +RelativePath=baseservices\threading\interlocked\exchange\exchange2\exchange2.cmd +WorkingDir=baseservices\threading\interlocked\exchange\exchange2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b16498.cmd_11172] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498\b16498.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated289.cmd_11173] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest289\Generated289\Generated289.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest289\Generated289 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b54566.cmd_11174] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566\b54566.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;12685 +HostStyle=0 + +[rangecheckinfinally_r.cmd_11175] +RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_r\rangecheckinfinally_r.cmd +WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[method009.cmd_11176] +RelativePath=Loader\classloader\generics\GenericMethods\method009\method009.cmd +WorkingDir=Loader\classloader\generics\GenericMethods\method009 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_rellivecall.cmd_11177] +RelativePath=JIT\Methodical\VT\identity\_il_rellivecall\_il_rellivecall.cmd +WorkingDir=JIT\Methodical\VT\identity\_il_rellivecall +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated938.cmd_11178] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest938\Generated938\Generated938.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest938\Generated938 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DontUseNetmodule.cmd_11179] +RelativePath=Loader\multimodule\DontUseNetmodule\DontUseNetmodule.cmd +WorkingDir=Loader\multimodule\DontUseNetmodule +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_403582.cmd_11180] +RelativePath=Loader\classloader\regressions\dev10_403582\dev10_403582\dev10_403582.cmd +WorkingDir=Loader\classloader\regressions\dev10_403582\dev10_403582 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated678.cmd_11181] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest678\Generated678\Generated678.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest678\Generated678 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[sub_r4.cmd_11182] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r4\sub_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[test.cmd_11183] +RelativePath=Regressions\coreclr\0433\test\test.cmd +WorkingDir=Regressions\coreclr\0433\test +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread12.cmd_11184] +RelativePath=baseservices\threading\generics\threadstart\GThread12\GThread12.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread12 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayBinarySearch2.cmd_11185] +RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2\ArrayBinarySearch2.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefloc_c.cmd_11186] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_c\_il_dbgrefloc_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dev10_851479.cmd_11187] +RelativePath=Loader\classloader\regressions\dev10_851479\dev10_851479\dev10_851479.cmd +WorkingDir=Loader\classloader\regressions\dev10_851479\dev10_851479 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GenericExceptions.cmd_11188] +RelativePath=baseservices\exceptions\generics\GenericExceptions\GenericExceptions.cmd +WorkingDir=baseservices\exceptions\generics\GenericExceptions +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated505.cmd_11189] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest505\Generated505\Generated505.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest505\Generated505 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated301.cmd_11190] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest301\Generated301\Generated301.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest301\Generated301 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString25.cmd_11191] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString25\ConvertToString25.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString25 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringIEnumerableGetEnumerator.cmd_11192] +RelativePath=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator\StringIEnumerableGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesBle.cmd_11193] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle\OpCodesBle.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UIntPtrCtor_VoidPtr.cmd_11194] +RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr\UIntPtrCtor_VoidPtr.cmd +WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[csgen.1.cmd_11195] +RelativePath=Regressions\coreclr\0582\csgen.1\csgen.1.cmd +WorkingDir=Regressions\coreclr\0582\csgen.1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b286991.cmd_11196] +RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991\b286991.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitallex4.cmd_11197] +RelativePath=baseservices\threading\waithandle\waitall\waitallex4\waitallex4.cmd +WorkingDir=baseservices\threading\waithandle\waitall\waitallex4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgi_qsort1.cmd_11198] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1\_il_dbgi_qsort1.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[unwind04_small.cmd_11199] +RelativePath=JIT\jit64\localloc\unwind\unwind04_small\unwind04_small.cmd +WorkingDir=JIT\jit64\localloc\unwind\unwind04_small +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[BooleanIConvertibleToUInt16.cmd_11200] +RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16\BooleanIConvertibleToUInt16.cmd +WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelem.cmd_11201] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem\OpCodesLdelem.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbginstance_cs.cmd_11202] +RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_cs\_dbginstance_cs.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp1_4.cmd_11203] +RelativePath=JIT\jit64\gc\misc\structfp1_4\structfp1_4.cmd +WorkingDir=JIT\jit64\gc\misc\structfp1_4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ByteParse1.cmd_11204] +RelativePath=CoreMangLib\cti\system\byte\ByteParse1\ByteParse1.cmd +WorkingDir=CoreMangLib\cti\system\byte\ByteParse1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callipinvoke.cmd_11205] +RelativePath=JIT\Directed\coverage\oldtests\callipinvoke\callipinvoke.cmd +WorkingDir=JIT\Directed\coverage\oldtests\callipinvoke +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CopyInt16Array.cmd_11206] +RelativePath=Interop\MarshalAPI\Copy\CopyInt16Array\CopyInt16Array.cmd +WorkingDir=Interop\MarshalAPI\Copy\CopyInt16Array +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated812.cmd_11207] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest812\Generated812\Generated812.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest812\Generated812 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1372.cmd_11208] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1372\Generated1372\Generated1372.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1372\Generated1372 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[labelbeforefinally_r.cmd_11209] +RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_r\labelbeforefinally_r.cmd +WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated706.cmd_11210] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest706\Generated706\Generated706.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest706\Generated706 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[dblarray4_cs_ro.cmd_11211] +RelativePath=JIT\Methodical\doublearray\dblarray4_cs_ro\dblarray4_cs_ro.cmd +WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_oreltailjump_cs.cmd_11212] +RelativePath=JIT\Methodical\Boxing\misc\_oreltailjump_cs\_oreltailjump_cs.cmd +WorkingDir=JIT\Methodical\Boxing\misc\_oreltailjump_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[tailcall_AV.cmd_11213] +RelativePath=JIT\Methodical\tailcall_v4\tailcall_AV\tailcall_AV.cmd +WorkingDir=JIT\Methodical\tailcall_v4\tailcall_AV +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_239.cmd_11214] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_239\GCSimulator_239.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_239 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread09.cmd_11215] +RelativePath=baseservices\threading\generics\syncdelegate\GThread09\GThread09.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldtoken.cmd_11216] +RelativePath=JIT\IL_Conformance\Old\objectmodel\ldtoken\ldtoken.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldtoken +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Delegate016.cmd_11217] +RelativePath=JIT\Generics\Instantiation\delegates\Delegate016\Delegate016.cmd +WorkingDir=JIT\Generics\Instantiation\delegates\Delegate016 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Class_ImplicitOverrideVirtualNewslotFinal.cmd_11218] +RelativePath=Loader\classloader\generics\VSD\Class_ImplicitOverrideVirtualNewslotFinal\Class_ImplicitOverrideVirtualNewslotFinal.cmd +WorkingDir=Loader\classloader\generics\VSD\Class_ImplicitOverrideVirtualNewslotFinal +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgdeep_array_nz.cmd_11219] +RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array_nz\_il_dbgdeep_array_nz.cmd +WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array_nz +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b302509.cmd_11220] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509\b302509.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b108366.cmd_11221] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366\b108366.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DirectoryNotFoundExceptionctor2.cmd_11222] +RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2\DirectoryNotFoundExceptionctor2.cmd +WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToChar.cmd_11223] +RelativePath=CoreMangLib\cti\system\single\SingleToChar\SingleToChar.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToChar +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[threadstartarray.cmd_11224] +RelativePath=baseservices\threading\paramthreadstart\threadstartarray\threadstartarray.cmd +WorkingDir=baseservices\threading\paramthreadstart\threadstartarray +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Bool_Xor_Op_cs_do.cmd_11225] +RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_do\Bool_Xor_Op_cs_do.cmd +WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1331.cmd_11226] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1331\Generated1331\Generated1331.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1331\Generated1331 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FibLoop.cmd_11227] +RelativePath=JIT\CodeGenBringUpTests\FibLoop\FibLoop.cmd +WorkingDir=JIT\CodeGenBringUpTests\FibLoop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stloc_i8.cmd_11228] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8\stloc_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InAttributeCtor.cmd_11229] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor\InAttributeCtor.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgcatchfinally_tail.cmd_11230] +RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail\_il_dbgcatchfinally_tail.cmd +WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[uint32_cs_do.cmd_11231] +RelativePath=JIT\Directed\shift\uint32_cs_do\uint32_cs_do.cmd +WorkingDir=JIT\Directed\shift\uint32_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[StringBuilderAppend7.cmd_11232] +RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7\StringBuilderAppend7.cmd +WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-interface010.cmd_11233] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010\castclass-interface010.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[LayoutKindAuto.cmd_11234] +RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto\LayoutKindAuto.cmd +WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_61.cmd_11235] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_61\GCSimulator_61.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_61 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated450.cmd_11236] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest450\Generated450\Generated450.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest450\Generated450 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnumIConvertibleToInt64.cmd_11237] +RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64\EnumIConvertibleToInt64.cmd +WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EnterExit04.cmd_11238] +RelativePath=baseservices\threading\generics\Monitor\EnterExit04\EnterExit04.cmd +WorkingDir=baseservices\threading\generics\Monitor\EnterExit04 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[lclfldadd_cs_do.cmd_11239] +RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_do\lclfldadd_cs_do.cmd +WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SideEffects.cmd_11240] +RelativePath=JIT\Directed\Misc\SIDEEFFECTS\SideEffects\SideEffects.cmd +WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\SideEffects +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[200w1d-01_cs_do.cmd_11241] +RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_do\200w1d-01_cs_do.cmd +WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1335.cmd_11242] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1335\Generated1335\Generated1335.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1335\Generated1335 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeParameter014.cmd_11243] +RelativePath=baseservices\exceptions\generics\TypeParameter014\TypeParameter014.cmd +WorkingDir=baseservices\exceptions\generics\TypeParameter014 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread09.cmd_11244] +RelativePath=baseservices\threading\generics\threadstart\GThread09\GThread09.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread09 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b12263.cmd_11245] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263\b12263.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b72136.cmd_11246] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136\b72136.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b55197.cmd_11247] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197\b55197.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b47975.cmd_11248] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975\b47975.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArrayGetLength.cmd_11249] +RelativePath=CoreMangLib\cti\system\array\ArrayGetLength\ArrayGetLength.cmd +WorkingDir=CoreMangLib\cti\system\array\ArrayGetLength +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcsmixed.cmd_11250] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmixed\_rellcsmixed.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmixed +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_86.cmd_11251] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_86\GCSimulator_86.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_86 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[staticFieldExpr1_d_loop_try.cmd_11252] +RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try\staticFieldExpr1_d_loop_try.cmd +WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[FileNotFoundExceptionMessage.cmd_11253] +RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage\FileNotFoundExceptionMessage.cmd +WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_427.cmd_11254] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_427\GCSimulator_427.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_427 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[TypeAttributesInterface.cmd_11255] +RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface\TypeAttributesInterface.cmd +WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_reljumper.cmd_11256] +RelativePath=JIT\Methodical\VT\callconv\_speed_reljumper\_speed_reljumper.cmd +WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumper +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mcc_i80.cmd_11257] +RelativePath=JIT\jit64\mcc\interop\mcc_i80\mcc_i80.cmd +WorkingDir=JIT\jit64\mcc\interop\mcc_i80 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_FAIL;9462;EXCLUDED;VARARG +HostStyle=0 + +[OpCodesUnaligned.cmd_11258] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned\OpCodesUnaligned.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated652.cmd_11259] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest652\Generated652\Generated652.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest652\Generated652 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[add.cmd_11260] +RelativePath=JIT\IL_Conformance\Old\Base\add\add.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\add +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14197.cmd_11261] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197\b14197.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt642.cmd_11262] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt642\ConvertToUInt642.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt642 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated134.cmd_11263] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest134\Generated134\Generated134.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest134\Generated134 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structfp2_2.cmd_11264] +RelativePath=JIT\jit64\gc\misc\structfp2_2\structfp2_2.cmd +WorkingDir=JIT\jit64\gc\misc\structfp2_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[k-nucleotide.cmd_11265] +RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\k-nucleotide\k-nucleotide\k-nucleotide.cmd +WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\k-nucleotide\k-nucleotide +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1091.cmd_11266] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1091\Generated1091\Generated1091.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1091\Generated1091 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated474.cmd_11267] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest474\Generated474\Generated474.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest474\Generated474 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[rem_r4.cmd_11268] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r4\rem_r4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b40138.cmd_11269] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138\b40138.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[castclass-generics019.cmd_11270] +RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019\castclass-generics019.cmd +WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[callconv1_cs_r.cmd_11271] +RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_r\callconv1_cs_r.cmd +WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reli_qsort1.cmd_11272] +RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1\_il_reli_qsort1.cmd +WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdelema.cmd_11273] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema\OpCodesLdelema.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[SingleToSByte.cmd_11274] +RelativePath=CoreMangLib\cti\system\single\SingleToSByte\SingleToSByte.cmd +WorkingDir=CoreMangLib\cti\system\single\SingleToSByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[csgen.2.cmd_11275] +RelativePath=hosting\stress\testset1\csgen.2\csgen.2.cmd +WorkingDir=hosting\stress\testset1\csgen.2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated314.cmd_11276] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest314\Generated314\Generated314.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest314\Generated314 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[decimaldiv_cs_do.cmd_11277] +RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_do\decimaldiv_cs_do.cmd +WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_dbgs_ldfld_mul.cmd_11278] +RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul\_speed_dbgs_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b15244.cmd_11279] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244\b15244.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1252.cmd_11280] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1252\Generated1252\Generated1252.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1252\Generated1252 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ctest1_cs_ro.cmd_11281] +RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro\ctest1_cs_ro.cmd +WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgfilter.cmd_11282] +RelativePath=JIT\Methodical\casts\SEH\_il_dbgfilter\_il_dbgfilter.cmd +WorkingDir=JIT\Methodical\casts\SEH\_il_dbgfilter +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1438.cmd_11283] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1438\Generated1438\Generated1438.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1438\Generated1438 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesStloc_0.cmd_11284] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0\OpCodesStloc_0.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_rellcs.cmd_11285] +RelativePath=JIT\Methodical\Arrays\lcs\_rellcs\_rellcs.cmd +WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[structret4_2.cmd_11286] +RelativePath=JIT\jit64\gc\misc\structret4_2\structret4_2.cmd +WorkingDir=JIT\jit64\gc\misc\structret4_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_rellcs_gcref.cmd_11287] +RelativePath=JIT\Methodical\VT\port\_speed_rellcs_gcref\_speed_rellcs_gcref.cmd +WorkingDir=JIT\Methodical\VT\port\_speed_rellcs_gcref +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1270.cmd_11288] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1270\Generated1270\Generated1270.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1270\Generated1270 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldftn_calli.cmd_11289] +RelativePath=JIT\IL_Conformance\Old\Base\ldftn_calli\ldftn_calli.cmd +WorkingDir=JIT\IL_Conformance\Old\Base\ldftn_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgvtret.cmd_11290] +RelativePath=JIT\Methodical\VT\callconv\_dbgvtret\_dbgvtret.cmd +WorkingDir=JIT\Methodical\VT\callconv\_dbgvtret +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ArraySort6.cmd_11291] +RelativePath=CoreMangLib\cti\system\array\ArraySort6\ArraySort6.cmd +WorkingDir=CoreMangLib\cti\system\array\ArraySort6 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GitHub_9945_2.cmd_11292] +RelativePath=JIT\opt\Devirtualization\GitHub_9945_2\GitHub_9945_2.cmd +WorkingDir=JIT\opt\Devirtualization\GitHub_9945_2 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryGetEnumerator.cmd_11293] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator\DictionaryGetEnumerator.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[EventHandlerCtor.cmd_11294] +RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor\EventHandlerCtor.cmd +WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbginstance_il.cmd_11295] +RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_il\_dbginstance_il.cmd +WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_il +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14366.cmd_11296] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366\b14366.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[mixedexpr1_ro_loop.cmd_11297] +RelativePath=JIT\jit64\opt\cse\mixedexpr1_ro_loop\mixedexpr1_ro_loop.cmd +WorkingDir=JIT\jit64\opt\cse\mixedexpr1_ro_loop +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread28.cmd_11298] +RelativePath=baseservices\threading\generics\syncdelegate\GThread28\GThread28.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread28 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1458.cmd_11299] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1458\Generated1458\Generated1458.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1458\Generated1458 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b223924.cmd_11300] +RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924\b223924.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b14369.cmd_11301] +RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369\b14369.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[classarr_cs_do.cmd_11302] +RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_do\classarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_orelsin_cs_cs.cmd_11303] +RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs\_orelsin_cs_cs.cmd +WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathAbs5.cmd_11304] +RelativePath=CoreMangLib\cti\system\math\MathAbs5\MathAbs5.cmd +WorkingDir=CoreMangLib\cti\system\math\MathAbs5 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[VectorDiv_r.cmd_11305] +RelativePath=JIT\SIMD\VectorDiv_r\VectorDiv_r.cmd +WorkingDir=JIT\SIMD\VectorDiv_r +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[neg_r8.cmd_11306] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r8\neg_r8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgisinst_calli.cmd_11307] +RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_calli\_il_dbgisinst_calli.cmd +WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_calli +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Collect_neg.cmd_11308] +RelativePath=GC\API\GC\Collect_neg\Collect_neg.cmd +WorkingDir=GC\API\GC\Collect_neg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToString10.cmd_11309] +RelativePath=CoreMangLib\cti\system\convert\ConvertToString10\ConvertToString10.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToString10 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated794.cmd_11310] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest794\Generated794\Generated794.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest794\Generated794 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CircularCctorThreeThreads03BFI.cmd_11311] +RelativePath=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads03BFI\CircularCctorThreeThreads03BFI.cmd +WorkingDir=Loader\classloader\TypeInitialization\CircularCctors\CircularCctorThreeThreads03BFI +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated168.cmd_11312] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest168\Generated168\Generated168.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest168\Generated168 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[fielda_tests.cmd_11313] +RelativePath=JIT\IL_Conformance\Old\objectmodel\fielda_tests\fielda_tests.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\fielda_tests +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[boxunboxinterface_do.cmd_11314] +RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_do\boxunboxinterface_do.cmd +WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[MathSign7.cmd_11315] +RelativePath=CoreMangLib\cti\system\math\MathSign7\MathSign7.cmd +WorkingDir=CoreMangLib\cti\system\math\MathSign7 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b85566.cmd_11316] +RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566\b85566.cmd +WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitanyex3a.cmd_11317] +RelativePath=baseservices\threading\waithandle\waitany\waitanyex3a\waitanyex3a.cmd +WorkingDir=baseservices\threading\waithandle\waitany\waitanyex3a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[intToByte.cmd_11318] +RelativePath=JIT\Methodical\flowgraph\bug614098\intToByte\intToByte.cmd +WorkingDir=JIT\Methodical\flowgraph\bug614098\intToByte +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1245.cmd_11319] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1245\Generated1245\Generated1245.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1245\Generated1245 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Unsafe.cmd_11320] +RelativePath=Regressions\common\Unsafe\Unsafe.cmd +WorkingDir=Regressions\common\Unsafe +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[CGRecurseAAA_ro.cmd_11321] +RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro\CGRecurseAAA_ro.cmd +WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgs_ldfld_mul.cmd_11322] +RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul\_il_dbgs_ldfld_mul.cmd +WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_conv_ovf_r8_i4.cmd_11323] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4\ldc_conv_ovf_r8_i4.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_114.cmd_11324] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_114\GCSimulator_114.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_114 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_c_initblk.cmd_11325] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk\ldc_c_initblk.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated139.cmd_11326] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest139\Generated139\Generated139.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest139\Generated139 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1119.cmd_11327] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1119\Generated1119\Generated1119.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1119\Generated1119 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_dbgfault.cmd_11328] +RelativePath=JIT\Methodical\Boxing\seh\_dbgfault\_dbgfault.cmd +WorkingDir=JIT\Methodical\Boxing\seh\_dbgfault +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UInt16IConvertibleToType.cmd_11329] +RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType\UInt16IConvertibleToType.cmd +WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1008.cmd_11330] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1008\Generated1008\Generated1008.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1008\Generated1008 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[L-1-10-3.cmd_11331] +RelativePath=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-10-3\L-1-10-3.cmd +WorkingDir=Loader\classloader\v1\Beta1\Layout\Matrix\cs\L-1-10-3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated534.cmd_11332] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest534\Generated534\Generated534.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest534\Generated534 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ASURT_99893.cmd_11333] +RelativePath=CoreMangLib\system\buffer\ASURT_99893\ASURT_99893.cmd +WorkingDir=CoreMangLib\system\buffer\ASURT_99893 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1269.cmd_11334] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1269\Generated1269\Generated1269.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1269\Generated1269 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[AssemblyNameGetPublicKey.cmd_11335] +RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey\AssemblyNameGetPublicKey.cmd +WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nestedtryfault_d.cmd_11336] +RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d\nestedtryfault_d.cmd +WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b45046.cmd_11337] +RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046\b45046.cmd +WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldstr.cmd_11338] +RelativePath=JIT\IL_Conformance\Old\objectmodel\ldstr\ldstr.cmd +WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldstr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GCSimulator_279.cmd_11339] +RelativePath=GC\Scenarios\GCSimulator\GCSimulator_279\GCSimulator_279.cmd +WorkingDir=GC\Scenarios\GCSimulator\GCSimulator_279 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[OpCodesLdarg.cmd_11340] +RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg\OpCodesLdarg.cmd +WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_reladdsub.cmd_11341] +RelativePath=JIT\Methodical\int64\unsigned\_il_reladdsub\_il_reladdsub.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_il_reladdsub +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_XModuletest2-xmod.cmd_11342] +RelativePath=JIT\Methodical\stringintern\_XModuletest2-xmod\_XModuletest2-xmod.cmd +WorkingDir=JIT\Methodical\stringintern\_XModuletest2-xmod +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relcastclass_call.cmd_11343] +RelativePath=JIT\Methodical\casts\coverage\_relcastclass_call\_relcastclass_call.cmd +WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_call +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread06.cmd_11344] +RelativePath=baseservices\threading\generics\syncdelegate\GThread06\GThread06.cmd +WorkingDir=baseservices\threading\generics\syncdelegate\GThread06 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_dbgrefarg_c.cmd_11345] +RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_c\_il_dbgrefarg_c.cmd +WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_c +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[waitoneex4a.cmd_11346] +RelativePath=baseservices\threading\waithandle\waitone\waitoneex4a\waitoneex4a.cmd +WorkingDir=baseservices\threading\waithandle\waitone\waitoneex4a +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_il_relgcarr.cmd_11347] +RelativePath=JIT\Methodical\Arrays\misc\_il_relgcarr\_il_relgcarr.cmd +WorkingDir=JIT\Methodical\Arrays\misc\_il_relgcarr +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[GThread20.cmd_11348] +RelativePath=baseservices\threading\generics\threadstart\GThread20\GThread20.cmd +WorkingDir=baseservices\threading\generics\threadstart\GThread20 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated345.cmd_11349] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest345\Generated345\Generated345.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest345\Generated345 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Generated1083.cmd_11350] +RelativePath=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1083\Generated1083\Generated1083.cmd +WorkingDir=Loader\classloader\TypeGeneratorTests\TypeGeneratorTest1083\Generated1083 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[bge_u.cmd_11351] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_u\bge_u.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_u +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[stringarr_cs_do.cmd_11352] +RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do\stringarr_cs_do.cmd +WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[try-filter-finally01.cmd_11353] +RelativePath=baseservices\exceptions\generics\try-filter-finally01\try-filter-finally01.cmd +WorkingDir=baseservices\exceptions\generics\try-filter-finally01 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[b43714.cmd_11354] +RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714\b43714.cmd +WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ConvertToUInt1610.cmd_11355] +RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1610\ConvertToUInt1610.cmd +WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1610 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[InterlockedAddInt.cmd_11356] +RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt\InterlockedAddInt.cmd +WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[Int64ToString3.cmd_11357] +RelativePath=CoreMangLib\cti\system\int64\Int64ToString3\Int64ToString3.cmd +WorkingDir=CoreMangLib\cti\system\int64\Int64ToString3 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[UnicodeEncodingGetEncoder.cmd_11358] +RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder\UnicodeEncodingGetEncoder.cmd +WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_relmuldiv.cmd_11359] +RelativePath=JIT\Methodical\int64\unsigned\_relmuldiv\_relmuldiv.cmd +WorkingDir=JIT\Methodical\int64\unsigned\_relmuldiv +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[_speed_relunsafe-1.cmd_11360] +RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-1\_speed_relunsafe-1.cmd +WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-1 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[ldc_mul_ovf_i8.cmd_11361] +RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8\ldc_mul_ovf_i8.cmd +WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8 +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[nonlocalexitfromnestedcatch.cmd_11362] +RelativePath=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch\nonlocalexitfromnestedcatch.cmd +WorkingDir=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + +[DictionaryComparer.cmd_11363] +RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer\DictionaryComparer.cmd +WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer +Expected=0 +MaxAllowedDurationSeconds=600 +Categories=EXPECTED_PASS +HostStyle=0 + diff --git a/tests/arm64/Tests.lst b/tests/arm64/Tests.lst index b786e311d9..90229fb11f 100644 --- a/tests/arm64/Tests.lst +++ b/tests/arm64/Tests.lst @@ -69748,14 +69748,6 @@ MaxAllowedDurationSeconds=600 Categories=Pri0;EXPECTED_PASS HostStyle=0 -[BadCheckedAdd1.cmd_9019] -RelativePath=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1\BadCheckedAdd1.cmd -WorkingDir=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1 -Expected=0 -MaxAllowedDurationSeconds=600 -Categories=Pri0;EXPECTED_PASS -HostStyle=0 - [UseUnalignedDouble.cmd_9020] RelativePath=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble\UseUnalignedDouble.cmd WorkingDir=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble diff --git a/tests/scripts/arm64_post_build.py b/tests/scripts/arm64_post_build.py index 62818c433b..1af5415310 100644 --- a/tests/scripts/arm64_post_build.py +++ b/tests/scripts/arm64_post_build.py @@ -33,8 +33,8 @@ from collections import defaultdict ################################################################################ g_arm64ci_path = os.path.join(os.environ["USERPROFILE"], "bin") -g_dotnet_url = "https://go.microsoft.com/fwlink/?LinkID=831469" -g_x64_client_url = "https://clrjit.blob.core.windows.net/arm64ci/x64_client_live_tests.zip" +g_dotnet_url = "https://clrjit.blob.core.windows.net/arm64ci/dotnet-sdk.zip" +g_x64_client_url = "https://clrjit.blob.core.windows.net/arm64ci/x64_client_2_0_update.zip" ################################################################################ # Argument Parser @@ -226,7 +226,7 @@ def validate_args(args): build_type = args.build_type scenario = args.scenario key_location = args.key_location - force_update = args.force_update + force_update = True def validate_arg(arg, check): """ Validate an individual arg diff --git a/tests/scripts/lst_creator.py b/tests/scripts/lst_creator.py index deebd2fa04..daf7457388 100755 --- a/tests/scripts/lst_creator.py +++ b/tests/scripts/lst_creator.py @@ -62,12 +62,12 @@ def create_list_file(file_name, metadata): old_metadata = [item for item in metadata if item[1] != -1] with open(file_name, "w") as file_handle: - file_handle.write("## This list file has been produced automatically. Any changes" + os.pathsep) - file_handle.write("## are subject to being overwritten when reproducing this file." + os.pathsep)) - file_handle.write("## " + os.pathsep)) - file_handle.write("## Last Updated: %s%s" % (current_time_str, os.pathsep)) - file_handle.write("## Commit: %s%s" % (ARGS.commit_hash, os.pathsep)) - file_handle.write("## " + os.pathsep)) + file_handle.write("## This list file has been produced automatically. Any changes\n") + file_handle.write("## are subject to being overwritten when reproducing this file.\n") + file_handle.write("## \n") + file_handle.write("## Last Updated: %s\n" % current_time_str) + file_handle.write("## Commit: %s\n" % ARGS.commit_hash) + file_handle.write("## \n") order = ["RelativePath", "WorkingDir", "Expected", "MaxAllowedDurationSeconds", "Categories", "HostStyle"] @@ -88,12 +88,21 @@ def create_list_file(file_name, metadata): attribute_str = "" for key in order: - attribute_str += "%s=%s%s" % (key, item[key], os.pathsep)) + attribute_str += "%s=%s\n" % (key, item[key]) - file_handle.write(attribute_str + os.pathsep)) + file_handle.write(attribute_str + "\n") write_metadata(old_metadata) - write_metadata(new_metadata, old_metadata[-1][1] + 1) + + old_number = 0 + try: + old_number = old_metadata[-1][1] + 1 + + except: + # New lstFile + pass + + write_metadata(new_metadata, old_number + 1) def create_metadata(tests): """ Given a set of tests create the metadata around them @@ -298,6 +307,10 @@ def main(args): test_metadata = create_metadata(tests) + # Make sure the tuples are set up correctly. + for item in test_metadata: + test_metadata[item] = (test_metadata[item], -1) + if old_test_metadata is not None: # If the new information has been changed, we will need to update # the lstFile. @@ -317,7 +330,7 @@ def main(args): else: index = old_metadata[1] old_metadata = old_metadata[0] - attributes = set(old_metadata.keys() + new_metadata.keys()) + attributes = set(old_metadata.keys() + new_metadata[0].keys()) # Make sure we go through all attributes of both sets. # If an attribute exists in one set but not the other it will @@ -331,7 +344,7 @@ def main(args): if attribute == "MaxAllowedDurationSeconds": continue if attribute == "Categories": - new_split = new_metadata["Categories"].split(";") + new_split = new_metadata[0]["Categories"].split(";") old_split = old_metadata["Categories"].split(";") if unset_new: @@ -350,24 +363,27 @@ def main(args): joined_categories = set(old_split + new_split) - overwritten = True + if (old_split != new_split): + overwritten = True ordered_categories = [] for item in old_split: if item in joined_categories: ordered_categories.append(item) joined_categories.remove(item) + ordered_categories = [item for item in ordered_categories if item != ""] + old_metadata[attribute] = ";".join(ordered_categories) old_metadata[attribute] = old_metadata[attribute] + ";" + ";".join(joined_categories) if len(joined_categories) > 0 else old_metadata[attribute] old_test_metadata[test_name] = (old_metadata, index) - elif new_metadata[attribute] != old_metadata[attribute]: + elif new_metadata[0][attribute] != old_metadata[attribute]: # If the old information is not the same as the new # information, keep the new information. overwrite the old # metadata. - if new_metadata[attribute] is not None: + if new_metadata[0][attribute] is not None: overwritten = True - old_metadata[attribute] = new_metadata[attribute] + old_metadata[attribute] = new_metadata[0][attribute] old_test_metadata[test_name] = (old_metadata, index) |