summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2016-11-23 19:09:09 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2016-11-23 19:09:09 +0900
commit4b4aad7217d3292650e77eec2cf4c198ea9c3b4b (patch)
tree98110734c91668dfdbb126fcc0e15ddbd93738ca /tests/scripts
parentfa45f57ed55137c75ac870356a1b8f76c84b229c (diff)
downloadcoreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.gz
coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.tar.bz2
coreclr-4b4aad7217d3292650e77eec2cf4c198ea9c3b4b.zip
Imported Upstream version 1.1.0upstream/1.1.0
Diffstat (limited to 'tests/scripts')
-rwxr-xr-xtests/scripts/arm32_ci_script.sh456
-rw-r--r--tests/scripts/exclusion.py79
-rw-r--r--tests/scripts/format.py219
-rw-r--r--tests/scripts/lst_creator.py233
-rw-r--r--tests/scripts/migrate-tags.py331
-rw-r--r--tests/scripts/project.json15
-rw-r--r--tests/scripts/run-xunit-perf.cmd148
-rw-r--r--tests/scripts/run-xunit-perf.sh433
-rw-r--r--tests/scripts/smarty_error_parser.py69
-rw-r--r--tests/scripts/smarty_parser.py204
-rw-r--r--tests/scripts/test/TestsNew.lst59312
-rw-r--r--tests/scripts/test/TestsOld.lst41125
-rw-r--r--tests/scripts/test/TestsOrig.lst59314
-rw-r--r--tests/scripts/test/do-test.cmd3
14 files changed, 161941 insertions, 0 deletions
diff --git a/tests/scripts/arm32_ci_script.sh b/tests/scripts/arm32_ci_script.sh
new file mode 100755
index 0000000000..1b016bbd8f
--- /dev/null
+++ b/tests/scripts/arm32_ci_script.sh
@@ -0,0 +1,456 @@
+#!/bin/bash
+
+#Usage message
+function usage {
+ echo 'ARM Emulator Cross Build and Test Script'
+ echo 'This script cross builds coreclr source and tests the binaries generated'
+ echo ''
+ echo 'Typical usage:'
+ echo ' coreclr source is at ~/clr'
+ echo ' corefx source is at ~/cfx'
+ echo ' --testRootDir and --mscorlibDir have been built on Windows/downloaded from dotnet-ci.cloudapp.net'
+ echo ' --coreFxNativeBinDir has been built using cross build'
+ echo ' --coreFxBinDir has been built on Linux'
+ echo '$ cd ~/clr'
+ echo '$ ./tests/scripts/arm32_ci_script.sh'
+ echo ' --emulatorPath=/opt/linux-arm-emulator'
+ echo ' --mountPath=/opt/linux-arm-emulator-root'
+ echo ' --buildConfig=Release'
+ echo ' --testRootDir=~/Downloads/Windows_NT.x64.Release'
+ echo ' --mscorlibDir=~/clr/bin/Product/Linux.arm-softfp.Release'
+ echo ' --coreFxNativeBinDir=~/cfx/bin/Linux.arm-softfp.Release'
+ echo ' --coreFxBinDir="~/cfx/bin/Linux.AnyCPU.Release;~/cfx/bin/Unix.AnyCPU.Release;~/cfx/bin/AnyOS.AnyCPU.Release"'
+ echo ' --testDirFile=~/clr/tests/testsRunningInsideARM.txt'
+ echo ''
+ echo 'Required Arguments:'
+ echo ' --emulatorPath=<path> : Path of the emulator folder (without ending /)'
+ echo ' <path>/platform/rootfs-t30.ext4 should exist'
+ echo ' --mountPath=<path> : The desired path for mounting the emulator rootfs (without ending /)'
+ echo ' This path is created if not already present'
+ echo ' --buildConfig=<config> : The value of config should be either Debug or Release'
+ echo ' Any other value is not accepted'
+ echo 'Optional Arguments:'
+ echo ' --skipTests : Presenting this option skips testing the generated binaries'
+ echo ' If this option is not presented, then tests are run by default'
+ echo ' using the other test related options'
+ echo ' --skipmscorlib : Skips generating mscorlib.dll on Linux'
+ echo ' If tests are run and this option is not used,'
+ echo ' then --mscorlibDir option to this script is mandatory'
+ echo ' -v --verbose : Build made verbose'
+ echo ' -h --help : Prints this usage message and exits'
+ echo ''
+ echo 'Test related Arguments (mandatory if --skipTests is not used):'
+ echo ' --testRootDir=<path> : The root directory of the test build'
+ echo ' --mscorlibDir=<path> : The directory containing the mscorlib.dll binary'
+ echo ' If provided, then the mscorlib.dll in this directory is'
+ echo ' used for tests instead of the built mscorlib.dll'
+ echo ' --coreFxNativeBinDir=<path> : The directory of the CoreFX native build'
+ echo ' --coreFxBinDir="<path>[;<path>]" : List one or more directories with CoreFX managed build binaries'
+ echo ' --testDirFile=<path> : Runs tests only in the directories specified by the file at <path>'
+ echo ' The directories are listed in lines in the file at <path>'
+ echo ''
+ echo 'Any other argument triggers an error and this usage message is displayed'
+ exit 1
+}
+
+#Display error message and exit
+function exit_with_error {
+ set +x
+
+ local errorMessage="$1"
+ local printUsage=$2
+
+ echo "ERROR: $errorMessage"
+ if [ "$printUsage" == "true" ]; then
+ echo ''
+ usage
+ fi
+ exit 1
+}
+
+#Exit if input string is empty
+function exit_if_empty {
+ local inputString="$1"
+ local errorMessage="$2"
+ local printUsage=$3
+
+ if [ -z "$inputString" ]; then
+ exit_with_error "$errorMessage" $printUsage
+ fi
+}
+
+#Exit if the input path does not exist
+function exit_if_path_absent {
+ local path="$1"
+ local errorMessage="$2"
+ local printUsage=$3
+
+ if [ ! -f "$path" -a ! -d "$path" ]; then
+ exit_with_error "$errorMessage" $printUsage
+ fi
+}
+
+#Check if the git changes were reverted completely
+function check_git_head {
+ local currentGitHead=`git rev-parse --verify HEAD`
+
+ if [[ "$__initialGitHead" != "$currentGitHead" ]]; then
+ exit_with_error "Some changes made to the code history were not completely reverted. Intial Git HEAD: $__initialGitHead, current Git HEAD: $currentGitHead" false
+ fi
+}
+
+function unmount_rootfs {
+ local rootfsFolder="$1"
+
+ #Check if there are any open files in this directory.
+ if [ -d $rootfsFolder ]; then
+ #If we find information about the file
+ if sudo lsof +D $rootfsFolder; then
+ (set +x; echo 'See above for lsof information. Continuing with the build.')
+ fi
+ fi
+
+ if mountpoint -q -- "$rootfsFolder"; then
+ sudo umount "$rootfsFolder"
+ fi
+}
+
+#Clean the previous build files inside the emulator
+function clean_emulator {
+ #Remove any previous copies of the coreclr and the corefx directories in the emulator
+ sudo rm -rf "$__ARMRootfsCoreclrPath" "$__ARMRootfsCorefxPath"
+}
+
+#Clean the changes made to the environment by the script
+function clean_env {
+ #Clean the emulator
+ clean_emulator
+
+ #Check for revert of git changes
+ check_git_head
+}
+
+#Trap Ctrl-C and handle it
+function handle_ctrl_c {
+ set +x
+
+ echo 'ERROR: Ctrl-C handled. Script aborted before complete execution.'
+
+ exit 1
+}
+trap handle_ctrl_c INT
+
+#Trap Exit and handle it
+function handle_exit {
+ set +x
+
+ echo 'The script is exited. Cleaning environment..'
+
+ clean_env
+}
+trap handle_exit EXIT
+
+
+#Mount with checking to be already existed
+function mount_with_checking {
+ set +x
+ local options="$1"
+ local from="$2"
+ local rootfsFolder="$3"
+
+ if mountpoint -q -- "$rootfsFolder"; then
+ (set +x; echo "$rootfsFolder is already mounted.")
+ else {
+ (set -x; sudo mount $options "$from" "$rootfsFolder")
+ }
+ fi
+}
+
+#Mount emulator to the target mount path
+function mount_emulator {
+ #Check if the mount path exists and create if neccessary
+ if [ ! -d "$__ARMRootfsMountPath" ]; then
+ sudo mkdir "$__ARMRootfsMountPath"
+ fi
+
+ set +x
+ mount_with_checking "" "$__ARMEmulPath/platform/rootfs-t30.ext4" "$__ARMRootfsMountPath"
+ mount_with_checking "-t proc" "/proc" "$__ARMRootfsMountPath/proc"
+ mount_with_checking "-o bind" "/dev/" "$__ARMRootfsMountPath/dev"
+ mount_with_checking "-o bind" "/dev/pts" "$__ARMRootfsMountPath/dev/pts"
+ mount_with_checking "-t tmpfs" "shm" "$__ARMRootfsMountPath/run/shm"
+ mount_with_checking "-o bind" "/sys" "$__ARMRootfsMountPath/sys"
+ if [ ! -d "$__ARMRootfsMountPath/bindings/tmp" ]; then
+ sudo mkdir -p "$__ARMRootfsMountPath/bindings/tmp"
+ fi
+ mount_with_checking "-o bind" "/mnt" "$__ARMRootfsMountPath/bindings/tmp"
+}
+
+#Cross builds coreclr
+function cross_build_coreclr {
+#Export the needed environment variables
+ (set +x; echo 'Exporting LINUX_ARM_* environment variable')
+ source "$__ARMRootfsMountPath"/dotnet/setenv/setenv_incpath.sh "$__ARMRootfsMountPath"
+
+ #Apply the changes needed to build for the emulator rootfs
+ (set +x; echo 'Applying cross build patch to suit Linux ARM emulator rootfs')
+ git am < "$__ARMRootfsMountPath"/dotnet/setenv/coreclr_cross.patch
+
+ #Apply release optimization patch if needed
+ if [[ "$__buildConfig" == "Release" ]]; then
+ (set +x; echo 'Applying release optimization patch to build in Release mode')
+ git am < "$__ARMRootfsMountPath"/dotnet/setenv/coreclr_release.patch
+ fi
+
+ #Cross building for emulator rootfs
+ ROOTFS_DIR="$__ARMRootfsMountPath" CPLUS_INCLUDE_PATH=$LINUX_ARM_INCPATH CXXFLAGS=$LINUX_ARM_CXXFLAGS ./build.sh $__buildArch cross $__verboseFlag $__skipMscorlib clang3.5 $__buildConfig -rebuild
+
+ #Reset the code to the upstream version
+ (set +x; echo 'Rewinding HEAD to master code')
+ git reset --hard HEAD^
+ if [[ "$__buildConfig" == "Release" ]]; then
+ git reset --hard HEAD^
+ fi
+}
+
+#Copy the needed files to the emulator to run tests
+function copy_to_emulator {
+
+ #Create the coreclr and corefx directories in the emulator
+ sudo mkdir -p "$__ARMRootfsCoreclrPath/bin/obj/$__buildDirName"
+ sudo mkdir -p "$__ARMRootfsCoreclrPath/bin/Product"
+ sudo mkdir "$__ARMRootfsCorefxPath"
+
+ #Copy all coreclr files to the coreclr root in the emulator and set the paths accordingly
+ local testRootDirBase=`basename "$__testRootDir"`
+ sudo cp -R "$__testRootDir" "$__ARMRootfsCoreclrPath/$testRootDirBase"
+ __testRootDirBase="$__ARMEmulCoreclr/$testRootDirBase"
+
+ sudo cp -R "./$__testNativeBinDirBase" "$__ARMRootfsCoreclrPath/$__testNativeBinDirBase"
+ __testNativeBinDirBase="$__ARMEmulCoreclr/$__testNativeBinDirBase"
+
+ sudo cp -R "./$__coreClrBinDirBase" "$__ARMRootfsCoreclrPath/$__coreClrBinDirBase"
+ if [ ! -z "$__mscorlibDir" ]; then
+ sudo cp "$__mscorlibDir/mscorlib.dll" "$__ARMRootfsCoreclrPath/$__coreClrBinDirBase/"
+ else
+ sudo cp "./$__coreClrBinDirBase/mscorlib.dll" "$__ARMRootfsCoreclrPath/$__coreClrBinDirBase/"
+ fi
+ __coreClrBinDirBase="$__ARMEmulCoreclr/$__coreClrBinDirBase"
+ __mscorlibDirBase="$__coreClrBinDirBase"
+
+ local testDirFileBase=`basename "$__testDirFile"`
+ sudo cp "$__testDirFile" "$__ARMRootfsCoreclrPath/$testDirFileBase"
+ __testDirFileBase="$__ARMEmulCoreclr/$testDirFileBase"
+
+ sudo cp -R ./tests "$__ARMRootfsCoreclrPath/"
+ sudo cp -R ./packages "$__ARMRootfsCoreclrPath/"
+ sudo cp -R ./Tools "$__ARMRootfsCoreclrPath/"
+
+ #Copy corefx binary directories to the corefx root in the emulator (first native and then managed)
+ local coreFxNativeBinDirBase=`basename "$__coreFxNativeBinDir"`
+ sudo cp -R "$__coreFxNativeBinDir" "$__ARMRootfsCorefxPath/$coreFxNativeBinDirBase"
+ __coreFxNativeBinDirBase="$__ARMEmulCorefx/$coreFxNativeBinDirBase"
+
+ __coreFxBinDirBase=
+ while IFS=';' read -ra coreFxBinDirectories; do
+ for currDir in "${coreFxBinDirectories[@]}"; do
+ local currDirBase=`basename "$currDir"`
+ sudo cp -R "$currDir" "$__ARMRootfsCorefxPath/$currDirBase"
+
+ if [ -z "$__coreFxBinDirBase" ]; then
+ __coreFxBinDirBase="$__ARMEmulCorefx/$currDirBase"
+ else
+ __coreFxBinDirBase="$__coreFxBinDirBase;$__ARMEmulCorefx/$currDirBase"
+ fi
+ done
+ done <<< "$__coreFxBinDir"
+}
+
+#Runs tests in an emulated mode
+function run_tests {
+ sudo chroot $__ARMRootfsMountPath /bin/bash -x <<EOF
+ cd "$__ARMEmulCoreclr"
+ ./tests/runtest.sh --testRootDir=$__testRootDirBase \
+ --mscorlibDir=$__mscorlibDirBase \
+ --coreFxNativeBinDir=$__coreFxNativeBinDirBase \
+ --coreFxBinDir="$__coreFxBinDirBase" \
+ --testDirFile=$__testDirFileBase \
+ --testNativeBinDir=$__testNativeBinDirBase \
+ --coreClrBinDir=$__coreClrBinDirBase
+EOF
+}
+
+#Define script variables
+__ARMEmulPath=
+__ARMRootfsMountPath=
+__buildConfig=
+__skipTests=0
+__skipMscorlib=
+__testRootDir=
+__mscorlibDir=
+__coreFxNativeBinDir=
+__coreFxBinDir=
+__testDirFile=
+__verboseFlag=
+__buildOS="Linux"
+__buildArch="arm-softfp"
+__buildDirName=
+__initialGitHead=`git rev-parse --verify HEAD`
+
+#Parse command line arguments
+for arg in "$@"
+do
+ case $arg in
+ --emulatorPath=*)
+ __ARMEmulPath=${arg#*=}
+ ;;
+ --mountPath=*)
+ __ARMRootfsMountPath=${arg#*=}
+ ;;
+ --buildConfig=*)
+ __buildConfig="$(echo ${arg#*=} | awk '{print tolower($0)}')"
+ if [[ "$__buildConfig" != "debug" && "$__buildConfig" != "release" ]]; then
+ exit_with_error "--buildConfig can be only Debug or Release" true
+ fi
+ ;;
+ --skipTests)
+ __skipTests=1
+ ;;
+ --skipmscorlib)
+ __skipMscorlib="skipmscorlib"
+ ;;
+ -v|--verbose)
+ __verboseFlag="verbose"
+ ;;
+ --testRootDir=*)
+ __testRootDir=${arg#*=}
+ ;;
+ --mscorlibDir=*)
+ __mscorlibDir=${arg#*=}
+ ;;
+ --coreFxNativeBinDir=*)
+ __coreFxNativeBinDir=${arg#*=}
+ ;;
+ --coreFxBinDir=*)
+ __coreFxBinDir=${arg#*=}
+ ;;
+ --testDirFile=*)
+ __testDirFile=${arg#*=}
+ ;;
+ -h|--help)
+ usage
+ ;;
+ *)
+ exit_with_error "$arg not a recognized argument" true
+ ;;
+ esac
+done
+
+#Check if there are any uncommited changes in the source directory as git adds and removes patches
+if [[ $(git status -s) != "" ]]; then
+ echo 'ERROR: There are some uncommited changes. To avoid losing these changes commit them and try again.'
+ echo ''
+ git status
+ exit 1
+fi
+
+#Check if the compulsory arguments have been presented to the script and if the input paths exist
+exit_if_empty "$__ARMEmulPath" "--emulatorPath is a mandatory argument, not provided" true
+exit_if_empty "$__ARMRootfsMountPath" "--mountPath is a mandatory argument, not provided" true
+exit_if_empty "$__buildConfig" "--buildConfig is a mandatory argument, not provided" true
+exit_if_path_absent "$__ARMEmulPath/platform/rootfs-t30.ext4" "Path specified in --emulatorPath does not have the rootfs" false
+
+#Check if the optional arguments are present in the case that testing is to be done
+if [ $__skipTests == 0 ]; then
+ exit_if_empty "$__testRootDir" "Testing requested, but --testRootDir not provided" true
+ exit_if_path_absent "$__testRootDir" "Path specified in --testRootDir does not exist" false
+
+ exit_if_empty "$__coreFxNativeBinDir" "Testing requested but --coreFxNativeBinDir not provided" true
+ exit_if_path_absent "$__coreFxNativeBinDir" "Path specified in --coreFxNativeBinDir does not exist" false
+
+ exit_if_empty "$__coreFxBinDir" "Testing requested, but --coreFxBinDir not provided" true
+ while IFS=';' read -ra coreFxBinDirectories; do
+ for currDir in "${coreFxBinDirectories[@]}"; do
+ exit_if_path_absent "$currDir" "Path specified in --coreFxBinDir, $currDir does not exist" false
+ done
+ done <<< "$__coreFxBinDir"
+
+ exit_if_empty "$__testDirFile" "Testing requested, but --testDirFile not provided" true
+ exit_if_path_absent "$__testDirFile" "Path specified in --testDirFile does not exist" false
+
+ if [ ! -z "$__skipMscorlib" ]; then
+ exit_if_empty "$__mscorlibDir" "Testing and skipmscorlib requested, but --mscorlibDir not provided" true
+ fi
+ if [ ! -z "$__mscorlibDir" ]; then
+ echo '--mscorlibDir provided; will be using this path for running tests and ignoring the generated mscorlib.dll'
+ exit_if_path_absent "$__mscorlibDir/mscorlib.dll" "Path specified in --mscorlibDir does not contain mscorlib.dll"
+ fi
+fi
+
+#Change build configuration to the capitalized form to create build product paths correctly
+if [[ "$__buildConfig" == "release" ]]; then
+ __buildConfig="Release"
+else
+ __buildConfig="Debug"
+fi
+__buildDirName="$__buildOS.$__buildArch.$__buildConfig"
+
+#Define emulator paths
+__TempFolder="bindings/tmp/arm32_ci_temp"
+
+if [ ! -d "$__TempFolder" ]; then
+ mkdir "$__TempFolder"
+fi
+
+__ARMRootfsCoreclrPath="$__ARMRootfsMountPath/$__TempFolder/coreclr"
+__ARMRootfsCorefxPath="$__ARMRootfsMountPath/$__TempFolder/corefx"
+__ARMEmulCoreclr="/$__TempFolder/coreclr"
+__ARMEmulCorefx="/$__TempFolder/corefx"
+__testRootDirBase=
+__mscorlibDirBase=
+__coreFxNativeBinDirBase=
+__coreFxBinDirBase=
+__testDirFileBase=
+__testNativeBinDirBase="bin/obj/$__buildDirName/tests"
+__coreClrBinDirBase="bin/Product/$__buildDirName"
+
+set -x
+set -e
+
+## Begin cross build
+(set +x; echo "Git HEAD @ $__initialGitHead")
+
+#Mount the emulator
+(set +x; echo 'Mounting emulator...')
+mount_emulator
+
+#Clean the emulator
+(set +x; echo 'Cleaning emulator...')
+clean_emulator
+
+#Complete the cross build
+(set +x; echo 'Building coreclr...')
+cross_build_coreclr
+
+#If tests are to be skipped end the script here, else continue
+if [ $__skipTests == 1 ]; then
+ exit 0
+fi
+
+## Tests are going to be performed in an emulated environment
+
+#Copy the needed files to the emulator before entering the emulated environment
+(set +x; echo 'Setting up emulator to run tests...')
+copy_to_emulator
+
+#Enter the emulated mode and run the tests
+(set +x; echo 'Running tests...')
+run_tests
+
+#Clean the environment
+(set +x; echo 'Cleaning environment...')
+clean_env
+
+rm -r "/mnt/arm32_ci_temp"
+
+(set +x; echo 'Build and test complete')
diff --git a/tests/scripts/exclusion.py b/tests/scripts/exclusion.py
new file mode 100644
index 0000000000..87ea48521e
--- /dev/null
+++ b/tests/scripts/exclusion.py
@@ -0,0 +1,79 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :exclusion.py
+#
+# Script to create a new list file from the old list file by refelcting
+# exclusion project file (issues.target)
+#
+################################################################################
+
+import os
+import os.path
+import sys
+import re
+
+###############################################################################
+# Main
+################################################################################
+
+if __name__ == "__main__":
+ print "Starting exclusion"
+ print "- - - - - - - - - - - - - - - - - - - - - - - - - - - -"
+ print
+
+ if len(sys.argv) == 3:
+ # Update test file in place
+ issuesFile = sys.argv[1]
+ oldTestFile = sys.argv[2]
+ newTestFile = oldTestFile
+ elif len(sys.argv) == 4:
+ issuesFile = sys.argv[1]
+ oldTestFile = sys.argv[2]
+ newTestFile = sys.argv[3]
+ else:
+ print "Ex usage: python exclusion.py <issues profile file> <old lst file> {<new lst file>}"
+ exit(1)
+
+ with open(issuesFile) as issuesFileHandle:
+ issues = issuesFileHandle.readlines()
+
+ with open(oldTestFile) as oldTestsHandle:
+ oldTests = oldTestsHandle.readlines()
+
+ # Build exculsion set from issues
+ exclusions = set()
+ for i in range(len(issues)):
+ matchObj = re.search( r'(XunitTestBinBase\)\\)(.+)(\\)(.+)\"', issues[i])
+ if matchObj:
+ exclusions.add(matchObj.group(2));
+ print "Exclusions list from " + issuesFile + ": ", len(exclusions)
+
+ # Build new test by copying old test except the exclusion
+ removed = 0
+ with open(newTestFile, 'w') as newTestsHandle:
+ j = 0
+ while(j < len(oldTests)):
+ currLine = oldTests[j]
+ matchObj = re.search( r'[(.+)]', currLine)
+ if matchObj:
+ nextLine = oldTests[j+1]
+ matchObj = re.search( r'(RelativePath=)(.+)(\\)(.+)(.exe)', nextLine)
+ if matchObj:
+ relPath = matchObj.group(2)
+ if (relPath in exclusions):
+ # Skip to the next item. Currently each test consists of 7 lines.
+ removed += 1
+ j += 7
+ continue
+
+ newTestsHandle.write(currLine)
+ j += 1
+
+ print "Removed Tests: ", removed
+ print newTestFile + " is successfuly built."
+
diff --git a/tests/scripts/format.py b/tests/scripts/format.py
new file mode 100644
index 0000000000..50a0d3dc70
--- /dev/null
+++ b/tests/scripts/format.py
@@ -0,0 +1,219 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :format.py
+#
+################################################################################
+# Script to install and run jit-format over jit source for all configurations.
+################################################################################
+
+
+import urllib
+import argparse
+import os
+import sys
+import tarfile
+import zipfile
+import subprocess
+import urllib2
+import shutil
+
+def expandPath(path):
+ return os.path.abspath(os.path.expanduser(path))
+
+def del_rw(action, name, exc):
+ os.chmod(name, 0651)
+ os.remove(name)
+
+def main(argv):
+ parser = argparse.ArgumentParser()
+ required = parser.add_argument_group('required arguments')
+ required.add_argument('-a', '--arch', type=str,
+ default=None, help='architecture to run jit-format on')
+ required.add_argument('-o', '--os', type=str,
+ default=None, help='operating system')
+ required.add_argument('-c', '--coreclr', type=str,
+ default=None, help='full path to coreclr')
+
+ args, unknown = parser.parse_known_args(argv)
+
+ if unknown:
+ print('Ignorning argument(s): ', ','.join(unknown))
+
+ if args.coreclr is None:
+ print('Specify --coreclr')
+ return -1
+ if args.os is None:
+ print('Specifiy --os')
+ return -1
+ if args.arch is None:
+ print('Specify --arch')
+ return -1
+
+ if not os.path.isdir(expandPath(args.coreclr)):
+ print('Bad path to coreclr')
+ return -1
+
+ coreclr = args.coreclr
+ platform = args.os
+ arch = args.arch
+
+ my_env = os.environ
+
+ # Download .Net CLI
+
+ dotnetcliUrl = ""
+ dotnetcliFilename = ""
+
+ # build.cmd removes the Tools directory, so we need to put our version of jitutils
+ # outside of the Tools directory
+
+ dotnetcliPath = os.path.join(coreclr, 'dotnetcli-jitutils')
+
+ # Try to make the dotnetcli-jitutils directory if it doesn't exist
+
+ try:
+ os.makedirs(dotnetcliPath)
+ except OSError:
+ if not os.path.isdir(dotnetcliPath):
+ raise
+
+ print("Downloading .Net CLI")
+ if platform == 'Linux':
+ dotnetcliUrl = "https://go.microsoft.com/fwlink/?LinkID=809129"
+ dotnetcliFilename = os.path.join(dotnetcliPath, 'dotnetcli-jitutils.tar.gz')
+ elif platform == 'OSX':
+ dotnetcliUrl = "https://go.microsoft.com/fwlink/?LinkID=809128"
+ dotnetcliFilename = os.path.join(dotnetcliPath, 'dotnetcli-jitutils.tar.gz')
+ elif platform == 'Windows_NT':
+ dotnetcliUrl = "https://go.microsoft.com/fwlink/?LinkID=809126"
+ dotnetcliFilename = os.path.join(dotnetcliPath, 'dotnetcli-jitutils.zip')
+ else:
+ print('Unknown os ', os)
+ return -1
+
+ response = urllib2.urlopen(dotnetcliUrl)
+ request_url = response.geturl()
+ testfile = urllib.URLopener()
+ testfile.retrieve(request_url, dotnetcliFilename)
+
+ if not os.path.isfile(dotnetcliFilename):
+ print("Did not download .Net CLI!")
+ return -1
+
+ # Install .Net CLI
+
+ if platform == 'Linux' or platform == 'OSX':
+ tar = tarfile.open(dotnetcliFilename)
+ tar.extractall(dotnetcliPath)
+ tar.close()
+ elif platform == 'Windows_NT':
+ with zipfile.ZipFile(dotnetcliFilename, "r") as z:
+ z.extractall(dotnetcliPath)
+
+ dotnet = ""
+ if platform == 'Linux' or platform == 'OSX':
+ dotnet = "dotnet"
+ elif platform == 'Windows_NT':
+ dotnet = "dotnet.exe"
+
+
+ if not os.path.isfile(os.path.join(dotnetcliPath, dotnet)):
+ print("Did not extract .Net CLI from download")
+ return -1
+
+ # Download bootstrap
+
+ bootstrapFilename = ""
+
+ jitUtilsPath = os.path.join(coreclr, "jitutils")
+
+ if os.path.isdir(jitUtilsPath):
+ print("Deleting " + jitUtilsPath)
+ shutil.rmtree(jitUtilsPath, onerror=del_rw)
+
+ if platform == 'Linux' or platform == 'OSX':
+ bootstrapFilename = "bootstrap.sh"
+ elif platform == 'Windows_NT':
+ bootstrapFilename = "bootstrap.cmd"
+
+ bootstrapUrl = "https://raw.githubusercontent.com/dotnet/jitutils/master/" + bootstrapFilename
+
+ bootstrapPath = os.path.join(coreclr, bootstrapFilename)
+ testfile.retrieve(bootstrapUrl, bootstrapPath)
+
+ if not os.path.isfile(bootstrapPath):
+ print("Did not download bootstrap!")
+ return -1
+
+ # On *nix platforms, we need to make the bootstrap file executable
+
+ if platform == 'Linux' or platform == 'OSX':
+ print("Making bootstrap executable")
+ os.chmod(bootstrapPath, 0751)
+
+ print(bootstrapPath)
+
+ # Run bootstrap
+
+ my_env["PATH"] += os.pathsep + dotnetcliPath
+ if platform == 'Linux' or platform == 'OSX':
+ print("Running bootstrap")
+ proc = subprocess.Popen(['bash', bootstrapPath], env=my_env)
+ output,error = proc.communicate()
+ elif platform == 'Windows_NT':
+ proc = subprocess.Popen([bootstrapPath], env=my_env)
+ output,error = proc.communicate()
+
+ # Run jit-format
+
+ returncode = 0
+ jitutilsBin = os.path.join(coreclr, "jitutils", "bin")
+ my_env["PATH"] += os.pathsep + jitutilsBin
+ current_dir = os.getcwd()
+
+ if os.path.isdir(jitutilsBin):
+ os.chdir(jitutilsBin)
+ else:
+ print("Jitutils not built!")
+ return -1
+
+ jitformat = ""
+
+ if platform == 'Linux' or platform == 'OSX':
+ jitformat = "jit-format"
+ elif platform == 'Windows_NT':
+ jitformat = "jit-format.cmd"
+
+ for build in ["Checked", "Debug", "Release"]:
+ for project in ["dll", "standalone", "crossgen"]:
+ proc = subprocess.Popen([jitformat, "-a", arch, "-b", build, "-o", platform, "-c", coreclr, "--verbose", "--projects", project], env=my_env)
+ output,error = proc.communicate()
+ errorcode = proc.returncode
+
+ if errorcode != 0:
+ returncode = errorcode
+
+ os.chdir(current_dir)
+
+ if os.path.isdir(jitUtilsPath):
+ print("Deleting " + jitUtilsPath)
+ shutil.rmtree(jitUtilsPath, onerror=del_rw)
+
+ if os.path.isdir(dotnetcliPath):
+ print("Deleting " + dotnetcliPath)
+ shutil.rmtree(dotnetcliPath, onerror=del_rw)
+
+ if os.path.isfile(bootstrapPath):
+ print("Deleting " + bootstrapPath)
+ os.remove(bootstrapPath)
+
+ return returncode
+
+if __name__ == '__main__':
+ return_code = main(sys.argv[1:])
+ sys.exit(return_code)
diff --git a/tests/scripts/lst_creator.py b/tests/scripts/lst_creator.py
new file mode 100644
index 0000000000..7f477ff2bc
--- /dev/null
+++ b/tests/scripts/lst_creator.py
@@ -0,0 +1,233 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :lst_creator.py
+#
+# Script to create a working list file from the test overlay directory. This
+# will be used by smarty to run tests.
+#
+################################################################################
+
+import os
+import os.path
+import sys
+
+################################################################################
+# Globals
+################################################################################
+
+g_debug = False
+g_name = ""
+g_old_list_file = ""
+
+def print_debug(str):
+ if g_debug is True:
+ print str
+
+################################################################################
+# Requires the OSS test overlay directory to be built and passed.
+#
+# find_tests
+################################################################################
+
+def find_tests(base_dir, cat = None, dir = None):
+ # Begin walking this folder recursively.
+ # Look for any file that ends with .cmd
+ # we will be returning a list of these files.
+
+ subdir_list = []
+ cmd_list = []
+
+ def traverse_dir(dir, cat, cat_dir, add_cat = False):
+ if os.path.basename(dir) == cat_dir:
+ add_cat = True
+
+ dir = os.path.abspath(dir)
+
+ for filename in os.listdir(dir):
+ print_debug(filename)
+
+ filename = os.path.join(dir, filename)
+ print_debug("Full Path: " + filename)
+
+ if os.path.isfile(filename) and filename.split(".")[-1] == "cmd":
+ if add_cat is True:
+ cmd_list.append((filename, cat))
+ else:
+ cmd_list.append((filename, g_name))
+
+ elif os.path.isdir(filename):
+ traverse_dir(filename, cat, cat_dir, add_cat)
+
+ traverse_dir(base_dir, cat, dir)
+
+ return cmd_list
+
+################################################################################
+# Main
+################################################################################
+
+if __name__ == "__main__":
+ print "Starting lst_creator"
+ print "- - - - - - - - - - - - - - - - - - - - - - - - - - - -"
+ print
+
+ if len(sys.argv) < 4:
+ print "Error, incorrect number of arguments."
+ print "Ex usage: python lst_creator <root_oss_test_dir> <lst file name> <optional cat name> <old list file location>"
+ print "Tests must be built!"
+ exit(1)
+
+ if not os.path.isdir(sys.argv[1]):
+ print "Error argument passed is not a valid directory."
+ exit(1)
+
+ g_name = sys.argv[3]
+
+ cat, dirname = None, None
+
+ if len(sys.argv) > 4:
+ if sys.argv[4] == "-D":
+ cat = sys.argv[5]
+ dirname = sys.argv[6]
+
+ elif sys.argv[4] != "-D":
+ g_old_list_file = sys.argv[4]
+
+ if not os.path.isfile(g_old_list_file):
+
+ print "Error, old list file must be valid."
+ exit(1)
+
+ cmd_list = find_tests(sys.argv[1], cat, dirname)
+
+ print "Found " + str(len(cmd_list)) + " tests to add."
+ print
+
+ if g_old_list_file is not "":
+ print "Updating the old list file"
+
+ else:
+ print "Creating the lst file."
+
+ unique_output = dict()
+ largest_value = 0
+
+ # If there was an old list file passed. Parse it for all the old tests.
+
+ if g_old_list_file is not "":
+ old_list_file_lines = []
+
+ with open(sys.argv[4]) as lst_file_handle:
+
+ old_list_file_lines = lst_file_handle.readlines()
+
+ for line in old_list_file_lines:
+ split_line = line.split("[")
+
+ # We only need the test names
+ # which come in as [ testname_number ]
+ if len(split_line) == 1:
+ continue
+
+ # This is a test name, start splitting
+
+ split_line = split_line[1].split("]")
+ split_line = split_line[0].split("_")
+
+ if largest_value < int(split_line[-1]):
+ largest_value = int(split_line[-1])
+
+ test_name = "_".join(split_line[:-1])
+
+ if len(test_name.split("exe")) == 1:
+ # Error, name is not an exe.
+ print "Error"
+
+ sys.exit(1)
+
+ unique_output[test_name] = True
+
+ print str(len(unique_output)) + " tests found in the old lstFile."
+
+ output = []
+
+ repeat_count = 0
+ count = largest_value
+
+ for line in cmd_list:
+ path, cat = line[0], line[1]
+
+ # get the relative path
+ prefix = os.path.commonprefix([path, sys.argv[1]])
+ rel_path = os.path.relpath(path, prefix)
+
+ cmd_contents = None
+ with open(path) as cmd_file_handle:
+ cmd_contents = cmd_file_handle.readlines()
+
+ expected_exit_code_line = None
+
+ for cmd_line in cmd_contents:
+ if cmd_line.find("CLRTestExpectedExitCode") != -1:
+ expected_exit_code_line = cmd_line
+ break
+
+ if expected_exit_code_line is None:
+ print "Error, cmd file missing contents. Skipping, however, the test suite was not built correctly."
+ print path
+ continue
+
+ expected = expected_exit_code_line[expected_exit_code_line.find("CLRTestExpectedExitCode") + (len("CLRTestExpectedExitCode") + 1):].strip()
+ max_allowed_duration = 600
+ categories = cat
+ build_type = "CoreSys"
+ relative_path = rel_path[:rel_path.find("cmd")] + "exe"
+ working_dir = os.path.dirname(rel_path)
+ test_name = os.path.basename(relative_path)
+
+ try:
+ if unique_output[test_name] == True:
+ repeat_count += 1
+
+ continue
+
+ except:
+ output.append("[" + test_name + "_" + str(count) + "]" + "\n")
+
+ count = count + 1
+
+ output.append("RelativePath=" + os.path.relpath(relative_path) + "\n")
+ output.append("WorkingDir=" + os.path.relpath(working_dir) + "\n")
+ output.append("Expected=" + expected + "\n")
+ output.append("MaxAllowedDurationSeconds=" + str(max_allowed_duration) + "\n")
+ output.append("Categories=" + categories + "\n")
+ output.append("HostStyle=Any")
+ output.append("\n")
+
+ print
+ print "Writing out lst file."
+
+ if repeat_count > 0:
+ print "Found " + str(repeat_count) + " old tests."
+
+ # If we found repeats then we open file to append not write.
+
+ with open(g_old_list_file, 'a') as list_file_handle:
+ list_file_handle.write("\n")
+
+ for line in output:
+ list_file_handle.write(line)
+
+
+ else:
+ with open(sys.argv[2], 'w') as list_file_handle:
+
+ list_file_handle.write("##=== Test Definitions ===============================\n")
+
+ for line in output:
+ list_file_handle.write(line)
diff --git a/tests/scripts/migrate-tags.py b/tests/scripts/migrate-tags.py
new file mode 100644
index 0000000000..e780bccb5f
--- /dev/null
+++ b/tests/scripts/migrate-tags.py
@@ -0,0 +1,331 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :migrate-tags.py
+#
+################################################################################
+# Script to migrate the 'Categories' tags from an exiting smarty list file
+# to a new smarty list, which typically doesn't have the 'Categories' tags.
+################################################################################
+
+import os
+import os.path
+import sys
+
+################################################################################
+# Globals
+################################################################################
+
+def fatal(str):
+ print str
+ exit(1)
+
+################################################################################
+# parse_list_file
+################################################################################
+
+def parse_list_file(listfile):
+
+ print 'Parsing:', listfile
+
+ # This function will build a list 'testdata'
+ # that contains a 4-tuple for each test that we find
+ #
+ testdata = []
+
+ test_name = None
+ test_number = None
+ test_fullpath = None
+
+ # This could also be a dictionary, but we want to preserve the order
+ # that we encounter the entries and we only have a small number of keys
+ # and python supports casting a list into a dictionary wehn you need to
+ # Also consider using class OrderDict
+ test_properties = []
+
+ with open(listfile) as file:
+
+ expecting_metadata = False
+ expecting_testname = True
+
+ for line in file:
+
+ if expecting_metadata:
+ # We are expecting a series of key=value assignments
+ # this is the metadata for the current testname
+
+ if test_name is None:
+ fatal('logic error - test_name not set');
+
+ if test_number is None:
+ fatal('logic error - test_number not set');
+
+ line = line.rstrip('\n')
+
+ split_line = line.split('=')
+
+ # if we have a single '=' the len(split_line) will be 2
+ if len(split_line) == 2:
+ # we record the key and the value strings
+ key = split_line[0]
+ value = split_line[1]
+
+ if key == 'Categories':
+ # 'Categories' values are always split using ';'
+ # first remove the trailing newline
+ # now split using semicolon
+ value = value.split(';')
+
+ if key == 'RelativePath':
+ # The 'RelativePath' value is used in the tuple,
+ # so we record it's value here.
+ if test_fullpath is not None:
+ fatal('logic error - fullpath is already set');
+ test_fullpath = value
+
+ tup = (key, value)
+ test_properties.append(tup)
+ else:
+ # we didn't have a 'key=value' line
+ # we will switch to expecting_testname
+ # note that we have already read the next line
+ # so need to fall into the code below which finds
+ # the test name from the line that we just read
+
+ if test_fullpath is None:
+ fatal('format error - RelativePath entry is missing');
+
+ # we must record the current test information:
+ # create the four-tuple entry
+ entry = (test_name, test_number,
+ test_fullpath, test_properties)
+
+ testdata.append(entry)
+
+ # reset the test state variables to empty for the next test
+ test_name = None
+ test_number = None
+ test_fullpath = None
+ test_properties = []
+
+ # change the state to expecting_testname
+ expecting_metadata = False
+ expecting_testname = True
+
+ if expecting_testname:
+ # We are expecting the next testname entry
+ # We will skip lines until we find a test name line
+ # which comes in as [ testname_number ]
+ split_line = line.split('[')
+
+ # if we don't have a '[' the the len(split_line) will be 1
+ # we will skip (ignore) this line
+ if len(split_line) == 1:
+ continue
+
+ if test_name is not None:
+ fatal('logic error - test_name is already set');
+
+ if test_number is not None:
+ fatal('logic error - test_number is already set');
+
+ # we now expect to match '[testname_number]'
+ # only when len(split_line) is 2 did we match exactly one '['
+ if len(split_line) != 2:
+ fatal('syntax error - multiple [');
+
+ split_line = split_line[1].split(']')
+
+ # only when len(split_line) is 2 did we match exactly one ']'
+ if len(split_line) != 2:
+ fatal('syntax error - missing or multiple ]:' + line);
+
+ # get the string enclosed by [ ... ]
+ name_and_number = split_line[0]
+
+ split_line = name_and_number.split('_')
+
+ # Note that the testname portion may also contain '_' so we
+ # have to get the testnumber from the end using [-1]
+ if len(split_line) == 1:
+ fatal('syntax error - missing _' + line);
+
+ # elements in split_line are numbered [ 0, 1, ... -2, -1 ]
+ test_number_str = split_line[-1]
+ if len(split_line) == 2:
+ test_name = split_line[0]
+ else:
+ test_name = '_'.join(split_line[0:-1])
+
+ if not test_number_str.isdigit():
+ fatal('syntax error - missing or illegal testnumber'+line);
+
+ test_number = int(test_number_str)
+
+ expecting_testname = False
+ expecting_metadata = True
+
+ if expecting_metadata:
+ # We need to create and append the last four-tuple entry
+ entry = (test_name, test_number, test_fullpath, test_properties)
+ testdata.append(entry)
+
+ print str(len(testdata)) + ' tests found in ' + listfile
+ print
+ return testdata
+
+################################################################################
+# write_list_file
+################################################################################
+
+def write_list_file(filename, testdata):
+
+ if len(testdata) == 0:
+ fatal('logic error - testdata is empty');
+
+ print 'Writing:', filename
+
+ with open(filename, 'w') as file:
+
+ line = '##=== Test Definitions ===============================\n'
+ file.write(line)
+
+ for entry in testdata:
+ # entry = (test_name, test_number, test_fullpath, test_properties)
+ test_name = entry[0]
+ test_number = entry[1]
+ test_properties = entry[3]
+
+ line = '[' + test_name + '_' + str(test_number) + ']\n'
+ file.write(line)
+
+ for tup in test_properties:
+ # tup = (key, value)
+ key = tup[0]
+ values = tup[1]
+
+ # most values are already strings
+ value_str = values;
+
+ # when key is 'Categories' the values is a list of strings
+ # so construct the value_str using join
+ if key == 'Categories':
+ # 'Categories' values were split using ';'
+ # so we need to use 'join' to reverse that
+ value_str = ';'.join(values)
+
+ line = key + '=' + value_str
+ file.write(line + '\n')
+
+ print 'Wrote ' + filename + ' with ' + str(len(testdata)) + ' tests'
+
+################################################################################
+# migrate_tags
+################################################################################
+
+def migrate_tags(new_data, old_data):
+
+ print 'Migrating the tags'
+
+ new_count = 0
+ old_dict = {}
+
+ for old_entry in old_data:
+ # entry = (test_name, test_number, test_fullpath, test_properties)
+ test_fullpath = old_entry[2]
+ map_key = test_fullpath
+ old_dict[map_key] = old_entry
+
+ for new_entry in new_data:
+ # entry = (test_name, test_number, test_fullpath, test_properties)
+ test_name = new_entry[0]
+ test_number = new_entry[1]
+ test_fullpath = new_entry[2]
+ test_properties = new_entry[3]
+
+ # use list comprehensions to build a list of matches
+ new_matches = [item for item in test_properties
+ if item[0] == 'Categories']
+ if len(new_matches) == 0:
+ cat_tup = ('Categories', [])
+ else:
+ if len(new_matches) > 1:
+ fatal('format error - duplicate Categories entries');
+ cat_tup = new_matches[0]
+
+ # 'new_tags' is the set of 'Categories' TAGS for this in new_data
+ new_tags = cat_tup[1]
+
+ map_key = test_fullpath
+ old_entry = old_dict.get(map_key)
+ if (old_entry == None):
+ # We will add the 'NEW' tag to flag this
+ # as a test that is being added
+ new_count += 1
+
+ # Check if the 'NEW' tag is already present in cat_tup[1]
+ if not 'NEW' in new_tags:
+ new_tags.append('NEW')
+ else:
+ # We have a matching old_entry, so we will build a
+ # concatenation of the 'Categories' tags
+
+ # We need to migrate the 'Category' tags from the old_data
+ oldtest_properties = old_entry[3]
+
+ # use list comprehensions to build a list of matches
+ old_matches = [item for item in oldtest_properties
+ if item[0] == 'Categories']
+ # there should be exactly 1 match
+ if len(old_matches) != 1:
+ fatal('format error - missing or duplicate Categories entries');
+
+ old_tup = old_matches[0]
+
+ # 'old_tags' is the set of 'Categories' TAGS for this in old_data
+ old_tags = old_tup[1]
+
+ # extend in place the 'new_tags' list with the 'old_tags' list
+ new_tags.extend(old_tags)
+
+ print str(new_count) + ' new tests found and tagged as NEW'
+ print
+
+################################################################################
+# Main
+################################################################################
+
+if __name__ == '__main__':
+ print 'Starting migrate-tags: Last Updated - 10-Mar-16'
+ print '- - - - - - - - - - - - - - - - - - - - - - - - - - - -'
+
+ if len(sys.argv) < 3:
+ print 'Error, incorrect number of arguments.'
+ print 'Ex usage: python migrate-tags <new_listfile> <old_listfile>'
+ print 'Note this completely overwrites the exisiting new_listfile!'
+ exit(1)
+
+ new_listfile = sys.argv[1]
+ old_listfile = sys.argv[2]
+
+ if not os.path.isfile(new_listfile):
+ fatal('Error: new listfile must be valid.')
+
+ if not os.path.isfile(old_listfile):
+ fatal('Error: old listfile must be valid.')
+
+ new_data = parse_list_file(new_listfile)
+ old_data = parse_list_file(old_listfile)
+
+ migrate_tags(new_data, old_data)
+
+ # Warning this completely overwrites the exisiting new_listfile
+ write_list_file(new_listfile, new_data)
+
+
+
+
diff --git a/tests/scripts/project.json b/tests/scripts/project.json
new file mode 100644
index 0000000000..8601127d71
--- /dev/null
+++ b/tests/scripts/project.json
@@ -0,0 +1,15 @@
+{
+ "dependencies": {
+ "Microsoft.DotNet.xunit.performance.run.core": "1.0.0-alpha-build0035",
+ "Microsoft.DotNet.xunit.performance.analysis.cli": "1.0.0-alpha-build0035",
+ "Microsoft.DotNet.xunit.performance.runner.cli": "1.0.0-alpha-build0035",
+ "Microsoft.DotNet.xunit.performance":"1.0.0-alpha-build0035",
+ "xunit.console.netcore": "1.0.3-prerelease-00607-01",
+ "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00629-04",
+ },
+ "frameworks": {
+ "netstandard1.3":{
+ "imports":["dnxcore50", "portable-net45+win8"]
+ }
+ }
+} \ No newline at end of file
diff --git a/tests/scripts/run-xunit-perf.cmd b/tests/scripts/run-xunit-perf.cmd
new file mode 100644
index 0000000000..89a7dac23f
--- /dev/null
+++ b/tests/scripts/run-xunit-perf.cmd
@@ -0,0 +1,148 @@
+@rem Licensed to the .NET Foundation under one or more agreements.
+@rem The .NET Foundation licenses this file to you under the MIT license.
+@rem See the LICENSE file in the project root for more information.
+
+@setlocal
+@echo off
+
+rem Set defaults for the file extension, architecture and configuration
+set CORECLR_REPO=%CD%
+set TEST_FILE_EXT=exe
+set TEST_ARCH=x64
+set TEST_CONFIG=Release
+
+goto :ARGLOOP
+
+:SETUP
+
+set CORECLR_OVERLAY=%CORECLR_REPO%\bin\tests\Windows_NT.%TEST_ARCH%.%TEST_CONFIG%\Tests\Core_Root
+set RUNLOG=%CORECLR_REPO%\bin\Logs\perfrun.log
+
+if NOT EXIST %CORECLR_OVERLAY% (
+ echo Can't find test overlay directory '%CORECLR_OVERLAY%'
+ echo Please build and run Release CoreCLR tests
+ exit /B 1
+)
+
+@echo --- setting up sandbox
+
+rd /s /q sandbox
+mkdir sandbox
+pushd sandbox
+
+@rem stage stuff we need
+
+@rem xunit and perf
+xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.runner.Windows\1.0.0-alpha-build0035\tools\* . > %RUNLOG%
+xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.analysis\1.0.0-alpha-build0035\tools\* . >> %RUNLOG%
+xcopy /sy %CORECLR_REPO%\packages\xunit.console.netcore\1.0.2-prerelease-00101\runtimes\any\native\* . >> %RUNLOG%
+xcopy /sy %CORECLR_REPO%\bin\tests\Windows_NT.%TEST_ARCH%.%TEST_CONFIG%\Tests\Core_Root\* . >> %RUNLOG%
+
+@rem find and stage the tests
+for /R %CORECLR_PERF% %%T in (*.%TEST_FILE_EXT%) do (
+ call :DOIT %%T
+)
+
+goto :EOF
+
+:DOIT
+set BENCHNAME=%~n1
+set PERFOUT=perf-%BENCHNAME%
+set XMLOUT=%PERFOUT%-summary.xml
+
+echo --- Running %BENCHNAME%
+
+xcopy /s %1 . >> %RUNLOG%
+
+set CORE_ROOT=%CORECLR_REPO%\sandbox
+
+xunit.performance.run.exe %BENCHNAME%.%TEST_FILE_EXT% -runner xunit.console.netcore.exe -runnerhost corerun.exe -verbose -runid %PERFOUT% > %BENCHNAME%.out
+
+xunit.performance.analysis.exe %PERFOUT%.xml -xml %XMLOUT% > %BENCHNAME%-analysis.out
+
+@rem optionally upload results to benchview
+if not [%BENCHVIEW_PATH%] == [] (
+ py %BENCHVIEW_PATH%\measurement.py xunit perf-%BENCHNAME%.xml --better desc --drop-first-value
+ py %BENCHVIEW_PATH%\submission.py measurement.json ^
+ --build ..\build.json ^
+ --machine-data ..\machinedata.json ^
+ --metadata ..\submission-metadata.json ^
+ --group "CoreCLR" ^
+ --type "%RUN_TYPE%" ^
+ --config-name "%TEST_CONFIG%" ^
+ --config Configuration "%TEST_CONFIG%" ^
+ --config OS "Windows_NT" ^
+ --arch "%TEST_ARCH%" ^
+ --machinepool "PerfSnake"
+ py %BENCHVIEW_PATH%\upload.py submission.json --container coreclr
+ REM Save off the results to the root directory for recovery later in Jenkins
+ xcopy perf-%BENCHNAME%*.xml %CORECLR_REPO%\
+ xcopy perf-%BENCHNAME%*.etl %CORECLR_REPO%\
+) else (
+ type %XMLOUT% | findstr "test name"
+ type %XMLOUT% | findstr Duration
+ type %XMLOUT% | findstr InstRetired
+)
+
+goto :EOF
+
+:ARGLOOP
+IF /I [%1] == [-testBinLoc] (
+set CORECLR_PERF=%CORECLR_REPO%\%2
+shift
+shift
+goto :ARGLOOP
+)
+IF /I [%1] == [-runtype] (
+set RUN_TYPE=%2
+shift
+shift
+goto :ARGLOOP
+)
+IF /I [%1] == [-library] (
+set TEST_FILE_EXT=dll
+shift
+goto :ARGLOOP
+)
+IF /I [%1] == [-uploadtobenchview] (
+set BENCHVIEW_PATH=%2
+shift
+shift
+goto :ARGLOOP
+)
+IF /I [%1] == [-arch] (
+set TEST_ARCH=%2
+shift
+shift
+goto :ARGLOOP
+)
+IF /I [%1] == [-configuration] (
+set TEST_CONFIG=%2
+shift
+shift
+goto :ARGLOOP
+)
+if /I [%1] == [-?] (
+goto :USAGE
+)
+if /I [%1] == [-help] (
+goto :USAGE
+)
+
+if [%CORECLR_PERF%] == [] (
+goto :USAGE
+)
+
+goto :SETUP
+
+:USAGE
+echo run-xunit-perf.cmd -testBinLoc ^<path_to_tests^> [-library] [-arch] ^<x86^|x64^> [-configuration] ^<Release^|Debug^> [-uploadToBenchview] ^<path_to_benchview_tools^> [-runtype] ^<rolling^|private^>
+
+echo For the path to the tests you can pass a parent directory and the script will grovel for
+echo all tests in subdirectories and run them.
+echo The library flag denotes whether the tests are build as libraries (.dll) or an executable (.exe)
+echo Architecture defaults to x64 and configuration defaults to release.
+echo -uploadtoBenchview is used to specify a path to the Benchview tooling and when this flag is
+echo set we will upload the results of the tests to the coreclr container in benchviewupload.
+echo Runtype sets the runtype that we upload to Benchview, rolling for regular runs, and private for
+echo PRs.
diff --git a/tests/scripts/run-xunit-perf.sh b/tests/scripts/run-xunit-perf.sh
new file mode 100644
index 0000000000..cea29c0214
--- /dev/null
+++ b/tests/scripts/run-xunit-perf.sh
@@ -0,0 +1,433 @@
+#!/usr/bin/env bash
+
+function print_usage {
+ echo ''
+ echo 'CoreCLR perf test script on Linux.'
+ echo ''
+ echo 'Typical command line:'
+ echo ''
+ echo 'coreclr/tests/scripts/run-xunit-perf.sh'
+ echo ' --testRootDir="temp/Windows_NT.x64.Debug"'
+ echo ' --testNativeBinDir="coreclr/bin/obj/Linux.x64.Debug/tests"'
+ echo ' --coreClrBinDir="coreclr/bin/Product/Linux.x64.Debug"'
+ echo ' --mscorlibDir="windows/coreclr/bin/Product/Linux.x64.Debug"'
+ echo ' --coreFxBinDir="corefx/bin/Linux.AnyCPU.Debug"'
+ echo ' --coreFxNativeBinDir="corefx/bin/Linux.x64.Debug"'
+ echo ''
+ echo 'Required arguments:'
+ echo ' --testRootDir=<path> : Root directory of the test build (e.g. coreclr/bin/tests/Windows_NT.x64.Debug).'
+ echo ' --testNativeBinDir=<path> : Directory of the native CoreCLR test build (e.g. coreclr/bin/obj/Linux.x64.Debug/tests).'
+ echo ' (Also required: Either --coreOverlayDir, or all of the switches --coreOverlayDir overrides)'
+ echo ''
+ echo 'Optional arguments:'
+ echo ' --coreOverlayDir=<path> : Directory containing core binaries and test dependencies. If not specified, the'
+ echo ' default is testRootDir/Tests/coreoverlay. This switch overrides --coreClrBinDir,'
+ echo ' --mscorlibDir, --coreFxBinDir, and --coreFxNativeBinDir.'
+ echo ' --coreClrBinDir=<path> : Directory of the CoreCLR build (e.g. coreclr/bin/Product/Linux.x64.Debug).'
+ echo ' --mscorlibDir=<path> : Directory containing the built mscorlib.dll. If not specified, it is expected to be'
+ echo ' in the directory specified by --coreClrBinDir.'
+ echo ' --coreFxBinDir="<path>[;<path>]" : List of one or more directories with CoreFX build outputs (semicolon-delimited)'
+ echo ' (e.g. "corefx/bin/Linux.AnyCPU.Debug;corefx/bin/Unix.AnyCPU.Debug;corefx/bin/AnyOS.AnyCPU.Debug").'
+ echo ' If files with the same name are present in multiple directories, the first one wins.'
+ echo ' --coreFxNativeBinDir=<path> : Directory of the CoreFX native build (e.g. corefx/bin/Linux.x64.Debug).'
+}
+
+# Variables for xUnit-style XML output. XML format: https://xunit.github.io/docs/format-xml-v2.html
+xunitOutputPath=
+xunitTestOutputPath=
+
+# libExtension determines extension for dynamic library files
+OSName=$(uname -s)
+libExtension=
+case $OSName in
+ Darwin)
+ libExtension="dylib"
+ ;;
+
+ Linux)
+ libExtension="so"
+ ;;
+
+ NetBSD)
+ libExtension="so"
+ ;;
+
+ *)
+ echo "Unsupported OS $OSName detected, configuring as if for Linux"
+ libExtension="so"
+ ;;
+esac
+
+function xunit_output_end {
+ local errorSource=$1
+ local errorMessage=$2
+
+ local errorCount
+ if [ -z "$errorSource" ]; then
+ ((errorCount = 0))
+ else
+ ((errorCount = 1))
+ fi
+
+ echo '<?xml version="1.0" encoding="utf-8"?>' >>"$xunitOutputPath"
+ echo '<assemblies>' >>"$xunitOutputPath"
+
+ local line
+
+ # <assembly ...>
+ line=" "
+ line="${line}<assembly"
+ line="${line} name=\"CoreClrTestAssembly\""
+ line="${line} total=\"${countTotalTests}\""
+ line="${line} passed=\"${countPassedTests}\""
+ line="${line} failed=\"${countFailedTests}\""
+ line="${line} skipped=\"${countSkippedTests}\""
+ line="${line} errors=\"${errorCount}\""
+ line="${line}>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # <collection ...>
+ line=" "
+ line="${line}<collection"
+ line="${line} name=\"CoreClrTestCollection\""
+ line="${line} total=\"${countTotalTests}\""
+ line="${line} passed=\"${countPassedTests}\""
+ line="${line} failed=\"${countFailedTests}\""
+ line="${line} skipped=\"${countSkippedTests}\""
+ line="${line}>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # <test .../> <test .../> ...
+ if [ -f "$xunitTestOutputPath" ]; then
+ cat "$xunitTestOutputPath" >>"$xunitOutputPath"
+ rm -f "$xunitTestOutputPath"
+ fi
+
+ # </collection>
+ line=" "
+ line="${line}</collection>"
+ echo "$line" >>"$xunitOutputPath"
+
+ if [ -n "$errorSource" ]; then
+ # <errors>
+ line=" "
+ line="${line}<errors>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # <error ...>
+ line=" "
+ line="${line}<error"
+ line="${line} type=\"TestHarnessError\""
+ line="${line} name=\"${errorSource}\""
+ line="${line}>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # <failure .../>
+ line=" "
+ line="${line}<failure>${errorMessage}</failure>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # </error>
+ line=" "
+ line="${line}</error>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # </errors>
+ line=" "
+ line="${line}</errors>"
+ echo "$line" >>"$xunitOutputPath"
+ fi
+
+ # </assembly>
+ line=" "
+ line="${line}</assembly>"
+ echo "$line" >>"$xunitOutputPath"
+
+ # </assemblies>
+ echo '</assemblies>' >>"$xunitOutputPath"
+}
+
+function exit_with_error {
+ local errorSource=$1
+ local errorMessage=$2
+ local printUsage=$3
+
+ if [ -z "$printUsage" ]; then
+ ((printUsage = 0))
+ fi
+
+ echo "$errorMessage"
+ xunit_output_end "$errorSource" "$errorMessage"
+ if ((printUsage != 0)); then
+ print_usage
+ fi
+ exit $EXIT_CODE_EXCEPTION
+}
+
+# Handle Ctrl-C. We will stop execution and print the results that
+# we gathered so far.
+function handle_ctrl_c {
+ local errorSource='handle_ctrl_c'
+
+ echo ""
+ echo "*** Stopping... ***"
+ print_results
+ exit_with_error "$errorSource" "Test run aborted by Ctrl+C."
+}
+
+# Register the Ctrl-C handler
+trap handle_ctrl_c INT
+
+function create_core_overlay {
+ local errorSource='create_core_overlay'
+ local printUsage=1
+
+ if [ -n "$coreOverlayDir" ]; then
+ export CORE_ROOT="$coreOverlayDir"
+ return
+ fi
+
+ # Check inputs to make sure we have enough information to create the core layout. $testRootDir/Tests/Core_Root should
+ # already exist and contain test dependencies that are not built.
+ local testDependenciesDir=$testRootDir/Tests/Core_Root
+ if [ ! -d "$testDependenciesDir" ]; then
+ exit_with_error "$errorSource" "Did not find the test dependencies directory: $testDependenciesDir"
+ fi
+ if [ -z "$coreClrBinDir" ]; then
+ exit_with_error "$errorSource" "One of --coreOverlayDir or --coreClrBinDir must be specified." "$printUsage"
+ fi
+ if [ ! -d "$coreClrBinDir" ]; then
+ exit_with_error "$errorSource" "Directory specified by --coreClrBinDir does not exist: $coreClrBinDir"
+ fi
+ if [ ! -f "$mscorlibDir/mscorlib.dll" ]; then
+ exit_with_error "$errorSource" "mscorlib.dll was not found in: $mscorlibDir"
+ fi
+ if [ -z "$coreFxBinDir" ]; then
+ exit_with_error "$errorSource" "One of --coreOverlayDir or --coreFxBinDir must be specified." "$printUsage"
+ fi
+ if [ -z "$coreFxNativeBinDir" ]; then
+ exit_with_error "$errorSource" "One of --coreOverlayDir or --coreFxBinDir must be specified." "$printUsage"
+ fi
+ if [ ! -d "$coreFxNativeBinDir/Native" ]; then
+ exit_with_error "$errorSource" "Directory specified by --coreNativeFxBinDir does not exist: $coreFxNativeBinDir/Native"
+ fi
+
+ # Create the overlay
+ coreOverlayDir=$testRootDir/Tests/coreoverlay
+ export CORE_ROOT="$coreOverlayDir"
+ if [ -e "$coreOverlayDir" ]; then
+ rm -f -r "$coreOverlayDir"
+ fi
+ mkdir "$coreOverlayDir"
+
+ while IFS=';' read -ra coreFxBinDirectories; do
+ for currDir in "${coreFxBinDirectories[@]}"; do
+ if [ ! -d "$currDir" ]; then
+ exit_with_error "$errorSource" "Directory specified in --coreFxBinDir does not exist: $currDir"
+ fi
+ pushd $currDir > /dev/null
+ for dirName in $(find . -iname '*.dll' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*/RemoteExecutorConsoleApp/*' \! -iwholename '*/net*' \! -iwholename '*aot*' -exec dirname {} \; | uniq | sed 's/\.\/\(.*\)/\1/g'); do
+ cp -n -v "$currDir/$dirName/$dirName.dll" "$coreOverlayDir/"
+ done
+ popd $currDur > /dev/null
+ done
+ done <<< $coreFxBinDir
+
+ cp -f -v "$coreFxNativeBinDir/Native/"*."$libExtension" "$coreOverlayDir/" 2>/dev/null
+
+ cp -f -v "$coreClrBinDir/"* "$coreOverlayDir/" 2>/dev/null
+ cp -f -v "$mscorlibDir/mscorlib.dll" "$coreOverlayDir/"
+ cp -n -v "$testDependenciesDir"/* "$coreOverlayDir/" 2>/dev/null
+ if [ -f "$coreOverlayDir/mscorlib.ni.dll" ]; then
+ # Test dependencies come from a Windows build, and mscorlib.ni.dll would be the one from Windows
+ rm -f "$coreOverlayDir/mscorlib.ni.dll"
+ fi
+}
+
+function precompile_overlay_assemblies {
+
+ if [ $doCrossgen == 1 ]; then
+
+ local overlayDir=$CORE_ROOT
+
+ filesToPrecompile=$(ls -trh $overlayDir/*.dll)
+ for fileToPrecompile in ${filesToPrecompile}
+ do
+ local filename=${fileToPrecompile}
+ # Precompile any assembly except mscorlib since we already have its NI image available.
+ if [[ "$filename" != *"mscorlib.dll"* ]]; then
+ if [[ "$filename" != *"mscorlib.ni.dll"* ]]; then
+ echo Precompiling $filename
+ $overlayDir/crossgen /Platform_Assemblies_Paths $overlayDir $filename 2>/dev/null
+ local exitCode=$?
+ if [ $exitCode == -2146230517 ]; then
+ echo $filename is not a managed assembly.
+ elif [ $exitCode != 0 ]; then
+ echo Unable to precompile $filename.
+ else
+ echo Successfully precompiled $filename
+ fi
+ fi
+ fi
+ done
+ else
+ echo Skipping crossgen of FX assemblies.
+ fi
+}
+
+function copy_test_native_bin_to_test_root {
+ local errorSource='copy_test_native_bin_to_test_root'
+
+ if [ -z "$testNativeBinDir" ]; then
+ exit_with_error "$errorSource" "--testNativeBinDir is required."
+ fi
+ testNativeBinDir=$testNativeBinDir/src
+ if [ ! -d "$testNativeBinDir" ]; then
+ exit_with_error "$errorSource" "Directory specified by --testNativeBinDir does not exist: $testNativeBinDir"
+ fi
+
+ # Copy native test components from the native test build into the respective test directory in the test root directory
+ find "$testNativeBinDir" -type f -iname '*.$libExtension' |
+ while IFS='' read -r filePath || [ -n "$filePath" ]; do
+ local dirPath=$(dirname "$filePath")
+ local destinationDirPath=${testRootDir}${dirPath:${#testNativeBinDir}}
+ if [ ! -d "$destinationDirPath" ]; then
+ exit_with_error "$errorSource" "Cannot copy native test bin '$filePath' to '$destinationDirPath/', as the destination directory does not exist."
+ fi
+ cp -f "$filePath" "$destinationDirPath/"
+ done
+}
+
+# Exit code constants
+readonly EXIT_CODE_SUCCESS=0 # Script ran normally.
+readonly EXIT_CODE_EXCEPTION=1 # Script exited because something exceptional happened (e.g. bad arguments, Ctrl-C interrupt).
+readonly EXIT_CODE_TEST_FAILURE=2 # Script completed successfully, but one or more tests failed.
+
+# Argument variables
+testRootDir=
+testNativeBinDir=
+coreOverlayDir=
+coreClrBinDir=
+mscorlibDir=
+coreFxBinDir=
+coreFxNativeBinDir=
+
+for i in "$@"
+do
+ case $i in
+ -h|--help)
+ print_usage
+ exit $EXIT_CODE_SUCCESS
+ ;;
+ --testRootDir=*)
+ testRootDir=${i#*=}
+ ;;
+ --testNativeBinDir=*)
+ testNativeBinDir=${i#*=}
+ ;;
+ --coreOverlayDir=*)
+ coreOverlayDir=${i#*=}
+ ;;
+ --coreClrBinDir=*)
+ coreClrBinDir=${i#*=}
+ ;;
+ --mscorlibDir=*)
+ mscorlibDir=${i#*=}
+ ;;
+ --coreFxBinDir=*)
+ coreFxBinDir=${i#*=}
+ ;;
+ --coreFxNativeBinDir=*)
+ coreFxNativeBinDir=${i#*=}
+ ;;
+ *)
+ echo "Unknown switch: $i"
+ print_usage
+ exit $EXIT_CODE_SUCCESS
+ ;;
+ esac
+done
+
+if [ -z "$testRootDir" ]; then
+ echo "--testRootDir is required."
+ print_usage
+ exit $EXIT_CODE_EXCEPTION
+fi
+if [ ! -d "$testRootDir" ]; then
+ echo "Directory specified by --testRootDir does not exist: $testRootDir"
+ exit $EXIT_CODE_EXCEPTION
+fi
+
+# Copy native interop test libraries over to the mscorlib path in
+# order for interop tests to run on linux.
+if [ -z "$mscorlibDir" ]; then
+ mscorlibDir=$coreClrBinDir
+fi
+if [ -d "$mscorlibDir" ] && [ -d "$mscorlibDir/bin" ]; then
+ cp $mscorlibDir/bin/* $mscorlibDir
+fi
+
+# Install xunit performance packages
+export NUGET_PACKAGES=$testNativeBinDir/../../../../packages
+echo "NUGET_PACKAGES = $NUGET_PACKAGES"
+
+echo "dir $testNativeBinDir/../../../../Tools"
+dir $testNativeBinDir/../../../../Tools
+echo "dir $testNativeBinDir/../../../../Tools/dotnetcli"
+dir $testNativeBinDir/../../../../Tools/dotnetcli
+
+pushd $testNativeBinDir/../../../../tests/scripts
+$testNativeBinDir/../../../../Tools/dotnetcli/dotnet restore --fallbacksource https://dotnet.myget.org/F/dotnet-buildtools/ --fallbacksource https://dotnet.myget.org/F/dotnet-core/
+popd
+
+# Creat coreoverlay dir which contains all dependent binaries
+create_core_overlay
+precompile_overlay_assemblies
+copy_test_native_bin_to_test_root
+
+echo "find $testNativeBinDir/../../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'"
+find $testNativeBinDir/../../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'
+echo "find $testNativeBinDir/../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'"
+find $testNativeBinDir/../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'
+
+# Deploy xunit performance packages
+cd $CORE_ROOT
+
+DO_SETUP=TRUE
+
+if [ ${DO_SETUP} == "TRUE" ]; then
+
+echo "dir $testNativeBinDir/../../../../../"
+dir $testNativeBinDir/../../../../../
+echo "dir $testNativeBinDir/../../../../../packages"
+dir $testNativeBinDir/../../../../../packages
+echo "dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli"
+dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli
+echo "dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035"
+dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035
+echo "dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib"
+dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib
+echo "dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib/netstandard1.3"
+dir $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib/netstandard1.3
+
+sudo cp $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib/netstandard1.3/Microsoft.DotNet.xunit.performance.runner.cli.dll .
+
+sudo cp $testNativeBinDir/../../../../../packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0035/lib/dotnet/*.dll .
+
+fi
+
+# Run coreclr performance tests
+echo "Test root dir is: $testRootDir"
+tests=($(find $testRootDir/JIT/Performance/CodeQuality -name '*.exe'))
+
+for testcase in ${tests[@]}; do
+
+test=$(basename $testcase)
+testname=$(basename $testcase .exe)
+echo "....Running $testname"
+
+cp $testcase .
+
+./corerun Microsoft.DotNet.xunit.performance.runner.cli.dll $test -runner xunit.console.netcore.exe -runnerhost ./corerun -verbose -runid perf-$testname
+
+done
diff --git a/tests/scripts/smarty_error_parser.py b/tests/scripts/smarty_error_parser.py
new file mode 100644
index 0000000000..cc66e1aacb
--- /dev/null
+++ b/tests/scripts/smarty_error_parser.py
@@ -0,0 +1,69 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :smarty_error_parser.py
+#
+# Notes:
+#
+# Python script to parse the smarty.fail.x.xml file. It will exit with the
+# correct exit code if it found errors. It will also print the tests that
+# failed. Note, this is only used by the CI.
+#
+################################################################################
+
+import sys
+
+################################################################################
+# Main
+################################################################################
+
+if __name__ == "__main__":
+
+ xml_output = None
+
+ try:
+
+ with open(sys.argv[1]) as file_handle:
+ xml_output = file_handle.readlines()
+
+ try:
+ # only one line.
+ xml_output = xml_output[0]
+
+ except:
+ print "Error, no results communicated. Infrastructure problem."
+ sys.exit(1)
+ except:
+ print "Error, no results communicated. Infrastructure problem."
+ sys.exit(1)
+
+ try:
+ # If at any time there are things missing then the test passes!
+
+ if (xml_output == "empty"):
+ sys.exit(0)
+
+ xml_output = xml_output.split("[TESTS]")
+
+ tests = xml_output[1].split("Tests.lst=")[1:]
+ tests = [test.split("#")[1].split("CATS")[0] for test in tests]
+
+ categories = xml_output[0]
+
+ print "Test Failures."
+ print
+
+ for test in tests:
+ print test
+
+ sys.exit(1)
+
+ except:
+
+ raise
+
+
diff --git a/tests/scripts/smarty_parser.py b/tests/scripts/smarty_parser.py
new file mode 100644
index 0000000000..40f2a500d4
--- /dev/null
+++ b/tests/scripts/smarty_parser.py
@@ -0,0 +1,204 @@
+#!/usr/bin/env python
+#
+## Licensed to the .NET Foundation under one or more agreements.
+## The .NET Foundation licenses this file to you under the MIT license.
+## See the LICENSE file in the project root for more information.
+#
+##
+# Title :smarty_parser.py
+#
+# Notes:
+#
+# Simple class to parse through the smarty .smrt files and individual output
+# files.
+#
+# Expects:
+#
+# Smarty results directory:
+#
+# --Smarty.run.xx
+# |
+# |---
+# |
+# |--- Smarty.run.xx.fail.smrt (optional, if there are failures)
+# |--- Smarty.run.xx.pass.smrt (optional, if there are passes)
+# |--- Smarty.rpt.xx.html
+# |--- Smarty.rpt.xx.passed.html
+# |--- Smarty.xml
+# |--- Smrt00000xx
+# |
+# |---
+# |
+# |---Tests.lst_<test_name>.cmd_xx.x.y.html
+# |---Tests.lst_<test_name>.cmd_xx.x.y.txt
+#
+################################################################################
+
+from collections import defaultdict
+import os
+import re
+import unittest
+import sys
+
+################################################################################
+
+class SmartyParser:
+
+ def __init__(self, path):
+ if not os.path.isdir(path):
+ raise Exception("Expected a valid path to parse through")
+
+ self.m_path = path
+ self.m_missing = []
+ self.m_tests = []
+ self.m_passed = []
+ self.m_failed = []
+
+ def parse(self):
+ files = os.listdir(self.m_path)
+
+ failed_smrt_files = []
+ passed_smrt_files = []
+
+ for file in files:
+ if "fail.smrt" in file:
+ failed_smrt_files.append(file)
+ elif "pass.smrt" in file:
+ passed_smrt_files.append(file)
+
+ def parse_smrt_files(smrt_list):
+ test_list = []
+
+ for smrt_file in smrt_list:
+ lines = None
+ with open(os.path.join(self.m_path, smrt_file)) as file_handle:
+ lines = file_handle.readlines()
+
+ lines = "\n".join(lines)
+ lines = lines.split("[TESTS]")
+
+ tests = lines[1].split("Tests.lst=")[1:]
+
+ test_names = []
+ for test in tests:
+ split = test.split(",")
+
+ dir = split[3].strip()
+ test_name = split[0].strip()
+ test_name = "cmd_".join(test_name.split("cmd"))
+
+ test_names.append((dir, test_name))
+
+ for test in test_names:
+ test_list.append(test)
+
+ return test_list
+
+ failed_tests = parse_smrt_files(failed_smrt_files)
+ passed_tests = parse_smrt_files(passed_smrt_files)
+
+ cached_ls = defaultdict(lambda: None)
+
+ def iterate_tests(test_list):
+ local_tests = []
+
+ for test in test_list:
+ smrt_dir = test[0]
+
+ if cached_ls[smrt_dir] is None:
+ cached_ls[smrt_dir] = os.listdir(os.path.join(self.m_path, smrt_dir))
+ ds = defaultdict(lambda: [])
+ file_names = cached_ls[smrt_dir]
+
+ for file_name in file_names:
+ split = file_name.split(".result")
+ ds[split[0]].append(".result".join(split))
+
+ cached_ls[smrt_dir] = ds
+
+ result_files = cached_ls[test[0]]["Tests.lst_" + test[1]]
+
+ if len(result_files) == 0:
+ self.m_missing.append(test[0])
+
+ else:
+ for file in result_files:
+ if os.path.splitext(file)[1] == ".html":
+ result = self.parse_smarty_file(os.path.join(self.m_path, test[0], file))
+
+ local_tests.append(result)
+ self.m_tests.append(result)
+
+ self.m_failed = iterate_tests(failed_tests)
+ self.m_passed = iterate_tests(passed_tests)
+
+ def parse_smarty_file(self, path):
+ lines = self.remove_tags(path)
+
+ tags = defaultdict(lambda: False)
+
+ tags["TEST_IDENTIFIER"] = True
+ tags["CATEGORIES"] = True
+ tags["RELATIVEPATH"] = True
+ tags["WORKINGDIR"] = True
+ tags["TEST_CMD_LINE"] = True
+ tags["TEST_EXPECTED_RETURN_CODE"] = True
+ tags["TEST_ACTUAL_RETURN_CODE"] = True
+ tags["TEST_START_TIME"] = True
+ tags["TEST_END_TIME"] = True
+ tags["TEST_RESULT"] = True
+ tags["TEST_OUTPUT"] = True
+
+ capturing_output = False
+
+ for line in lines:
+ if "TEST OUTPUT" in line:
+ capturing_output = True
+ tags["TEST_OUTPUT"] = []
+
+ elif capturing_output is True:
+ if "TEXT_EXPECTED_RETURN_CODE" in line:
+ capturing_output = False
+ tags["TEST_OUTPUT"] = "\n".join(tags["TEST_OUTPUT"])
+
+ else:
+ tags["TEST_OUTPUT"].append(line)
+
+ elif "=" in line:
+ split = line.split(" = ")
+
+ if tags[split[0]] is True:
+ value = "=".join(split[1:])
+
+ tags[split[0]] = value.strip()
+
+ elif ":" in line:
+ # TEST_CMD_LINE does not use =
+ split = line.split(": ")
+
+ if tags[split[0]] is True:
+ tags[split[0]] = ":".join(split[1:])
+
+ return tags
+
+ def remove_tags(self, path):
+ tag_re = re.compile(r'<[^>]+>')
+ lines = []
+
+ with open(path) as file_handle:
+ for line in file_handle:
+ line = tag_re.sub('', line)
+
+ # Smarty has a bug such that </BODY will
+ # possible be missing the ending >
+ # Check for this and remove the tag if found.
+
+ if "</BODY" in line and "</BODY>" not in line:
+ line = line.replace("</BODY", "")
+
+ line = line.replace("\r\n", "")
+
+ if len(line) != 0:
+ lines.append(line)
+
+ return lines
diff --git a/tests/scripts/test/TestsNew.lst b/tests/scripts/test/TestsNew.lst
new file mode 100644
index 0000000000..58d81cacb6
--- /dev/null
+++ b/tests/scripts/test/TestsNew.lst
@@ -0,0 +1,59312 @@
+##=== Test Definitions ===============================
+[Finalizer.exe_0]
+RelativePath=Exceptions\Finalization\Finalizer\Finalizer.exe
+WorkingDir=Exceptions\Finalization\Finalizer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[LargeObjectAlloc.exe_1]
+RelativePath=GC\Coverage\LargeObjectAlloc\LargeObjectAlloc.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;UNSTABLE;ISSUE_3104
+HostStyle=Any
+[LargeObjectAlloc2.exe_2]
+RelativePath=GC\Coverage\LargeObjectAlloc2\LargeObjectAlloc2.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[Finalizer.exe_3]
+RelativePath=GC\Features\HeapExpansion\Finalizer\Finalizer.exe
+WorkingDir=GC\Features\HeapExpansion\Finalizer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[Handles.exe_4]
+RelativePath=GC\Features\HeapExpansion\Handles\Handles.exe
+WorkingDir=GC\Features\HeapExpansion\Handles
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;UNSTABLE;NEEDS_TRIAGE
+HostStyle=Any
+[PinnedCollect.exe_5]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedCollect\PinnedCollect.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedCollect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[PinnedHandle.exe_6]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedHandle\PinnedHandle.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedHandle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[PinnedInt.exe_7]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedInt\PinnedInt.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedInt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[PinnedMany.exe_8]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMany\PinnedMany.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMany
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[PinnedMultiple.exe_9]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMultiple\PinnedMultiple.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMultiple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[PinnedObject.exe_10]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedObject\PinnedObject.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[149926.exe_11]
+RelativePath=GC\Regressions\v2.0-beta1\149926\149926\149926.exe
+WorkingDir=GC\Regressions\v2.0-beta1\149926\149926
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3104;LONG_RUNNING
+HostStyle=Any
+[289745.exe_12]
+RelativePath=GC\Regressions\v2.0-beta1\289745\289745\289745.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\289745
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[302560.exe_13]
+RelativePath=GC\Regressions\v2.0-beta1\289745\302560\302560.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\302560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[426480.exe_14]
+RelativePath=GC\Regressions\v2.0-beta2\426480\426480\426480.exe
+WorkingDir=GC\Regressions\v2.0-beta2\426480\426480
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[471729.exe_15]
+RelativePath=GC\Regressions\v2.0-beta2\471729\471729\471729.exe
+WorkingDir=GC\Regressions\v2.0-beta2\471729\471729
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[494226.exe_16]
+RelativePath=GC\Regressions\v2.0-rtm\494226\494226\494226.exe
+WorkingDir=GC\Regressions\v2.0-rtm\494226\494226
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;LONG_RUNNING
+HostStyle=Any
+[544701.exe_17]
+RelativePath=GC\Regressions\v2.0-rtm\544701\544701\544701.exe
+WorkingDir=GC\Regressions\v2.0-rtm\544701\544701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[FinalizeTimeout.exe_18]
+RelativePath=GC\Scenarios\FinalizeTimeout\FinalizeTimeout\FinalizeTimeout.exe
+WorkingDir=GC\Scenarios\FinalizeTimeout\FinalizeTimeout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MarshalBoolArrayTest.exe_19]
+RelativePath=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest\MarshalBoolArrayTest.exe
+WorkingDir=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MarshalArrayByValTest.exe_20]
+RelativePath=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest\MarshalArrayByValTest.exe
+WorkingDir=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Castable.exe_21]
+RelativePath=Interop\ICastable\Castable\Castable.exe
+WorkingDir=Interop\ICastable\Castable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[NativeCallableTest.exe_22]
+RelativePath=Interop\NativeCallable\NativeCallableTest\NativeCallableTest.exe
+WorkingDir=Interop\NativeCallable\NativeCallableTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+HostStyle=Any
+[BoolTest.exe_23]
+RelativePath=Interop\PrimitiveMarshalling\Bool\BoolTest\BoolTest.exe
+WorkingDir=Interop\PrimitiveMarshalling\Bool\BoolTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[PInvokeUIntPtrTest.exe_24]
+RelativePath=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest\PInvokeUIntPtrTest.exe
+WorkingDir=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MarshalBoolArray.exe_25]
+RelativePath=Interop\ReversePInvoke\Marshalling\MarshalBoolArray\MarshalBoolArray.exe
+WorkingDir=Interop\ReversePInvoke\Marshalling\MarshalBoolArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[Not-Int32.exe_26]
+RelativePath=JIT\BBT\Scenario4\Not-Int32\Not-Int32.exe
+WorkingDir=JIT\BBT\Scenario4\Not-Int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Add1.exe_27]
+RelativePath=JIT\CodeGenBringUpTests\Add1\Add1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Add1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[addref.exe_28]
+RelativePath=JIT\CodeGenBringUpTests\addref\addref.exe
+WorkingDir=JIT\CodeGenBringUpTests\addref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[And1.exe_29]
+RelativePath=JIT\CodeGenBringUpTests\And1\And1.exe
+WorkingDir=JIT\CodeGenBringUpTests\And1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AndRef.exe_30]
+RelativePath=JIT\CodeGenBringUpTests\AndRef\AndRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\AndRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Args4.exe_31]
+RelativePath=JIT\CodeGenBringUpTests\Args4\Args4.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Args5.exe_32]
+RelativePath=JIT\CodeGenBringUpTests\Args5\Args5.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AsgAdd1.exe_33]
+RelativePath=JIT\CodeGenBringUpTests\AsgAdd1\AsgAdd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AsgAnd1.exe_34]
+RelativePath=JIT\CodeGenBringUpTests\AsgAnd1\AsgAnd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAnd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AsgOr1.exe_35]
+RelativePath=JIT\CodeGenBringUpTests\AsgOr1\AsgOr1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgOr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AsgSub1.exe_36]
+RelativePath=JIT\CodeGenBringUpTests\AsgSub1\AsgSub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgSub1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AsgXor1.exe_37]
+RelativePath=JIT\CodeGenBringUpTests\AsgXor1\AsgXor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgXor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[BinaryRMW.exe_38]
+RelativePath=JIT\CodeGenBringUpTests\BinaryRMW\BinaryRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\BinaryRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Call1.exe_39]
+RelativePath=JIT\CodeGenBringUpTests\Call1\Call1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Call1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CnsBool.exe_40]
+RelativePath=JIT\CodeGenBringUpTests\CnsBool\CnsBool.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsBool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CnsLng1.exe_41]
+RelativePath=JIT\CodeGenBringUpTests\CnsLng1\CnsLng1.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsLng1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblAdd.exe_42]
+RelativePath=JIT\CodeGenBringUpTests\DblAdd\DblAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblAddConst.exe_43]
+RelativePath=JIT\CodeGenBringUpTests\DblAddConst\DblAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAddConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblArea.exe_44]
+RelativePath=JIT\CodeGenBringUpTests\DblArea\DblArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArea
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblArray.exe_45]
+RelativePath=JIT\CodeGenBringUpTests\DblArray\DblArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblAvg2.exe_46]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg2\DblAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblAvg6.exe_47]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg6\DblAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblCall1.exe_48]
+RelativePath=JIT\CodeGenBringUpTests\DblCall1\DblCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblCall2.exe_49]
+RelativePath=JIT\CodeGenBringUpTests\DblCall2\DblCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblDist.exe_50]
+RelativePath=JIT\CodeGenBringUpTests\DblDist\DblDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblDiv.exe_51]
+RelativePath=JIT\CodeGenBringUpTests\DblDiv\DblDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblDivConst.exe_52]
+RelativePath=JIT\CodeGenBringUpTests\DblDivConst\DblDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDivConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblFillArray.exe_53]
+RelativePath=JIT\CodeGenBringUpTests\DblFillArray\DblFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblFillArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblMul.exe_54]
+RelativePath=JIT\CodeGenBringUpTests\DblMul\DblMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblMulConst.exe_55]
+RelativePath=JIT\CodeGenBringUpTests\DblMulConst\DblMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMulConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblNeg.exe_56]
+RelativePath=JIT\CodeGenBringUpTests\DblNeg\DblNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblRem.exe_57]
+RelativePath=JIT\CodeGenBringUpTests\DblRem\DblRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblRoots.exe_58]
+RelativePath=JIT\CodeGenBringUpTests\DblRoots\DblRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRoots
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblSub.exe_59]
+RelativePath=JIT\CodeGenBringUpTests\DblSub\DblSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblSubConst.exe_60]
+RelativePath=JIT\CodeGenBringUpTests\DblSubConst\DblSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSubConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DblVar.exe_61]
+RelativePath=JIT\CodeGenBringUpTests\DblVar\DblVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[div1.exe_62]
+RelativePath=JIT\CodeGenBringUpTests\div1\div1.exe
+WorkingDir=JIT\CodeGenBringUpTests\div1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[div2.exe_63]
+RelativePath=JIT\CodeGenBringUpTests\div2\div2.exe
+WorkingDir=JIT\CodeGenBringUpTests\div2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[divref.exe_64]
+RelativePath=JIT\CodeGenBringUpTests\divref\divref.exe
+WorkingDir=JIT\CodeGenBringUpTests\divref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Eq1.exe_65]
+RelativePath=JIT\CodeGenBringUpTests\Eq1\Eq1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Eq1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FactorialRec.exe_66]
+RelativePath=JIT\CodeGenBringUpTests\FactorialRec\FactorialRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FactorialRec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FibLoop.exe_67]
+RelativePath=JIT\CodeGenBringUpTests\FibLoop\FibLoop.exe
+WorkingDir=JIT\CodeGenBringUpTests\FibLoop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FiboRec.exe_68]
+RelativePath=JIT\CodeGenBringUpTests\FiboRec\FiboRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FiboRec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPAdd.exe_69]
+RelativePath=JIT\CodeGenBringUpTests\FPAdd\FPAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPAddConst.exe_70]
+RelativePath=JIT\CodeGenBringUpTests\FPAddConst\FPAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAddConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPArea.exe_71]
+RelativePath=JIT\CodeGenBringUpTests\FPArea\FPArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArea
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPArray.exe_72]
+RelativePath=JIT\CodeGenBringUpTests\FPArray\FPArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPAvg2.exe_73]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg2\FPAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPAvg6.exe_74]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg6\FPAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPCall1.exe_75]
+RelativePath=JIT\CodeGenBringUpTests\FPCall1\FPCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPCall2.exe_76]
+RelativePath=JIT\CodeGenBringUpTests\FPCall2\FPCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPConvDbl2Lng.exe_77]
+RelativePath=JIT\CodeGenBringUpTests\FPConvDbl2Lng\FPConvDbl2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvDbl2Lng
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPConvF2F.exe_78]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2F\FPConvF2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2F
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPConvF2I.exe_79]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2I\FPConvF2I.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPConvF2Lng.exe_80]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2Lng\FPConvF2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2Lng
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPConvI2F.exe_81]
+RelativePath=JIT\CodeGenBringUpTests\FPConvI2F\FPConvI2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvI2F
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPDist.exe_82]
+RelativePath=JIT\CodeGenBringUpTests\FPDist\FPDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPDiv.exe_83]
+RelativePath=JIT\CodeGenBringUpTests\FPDiv\FPDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPDivConst.exe_84]
+RelativePath=JIT\CodeGenBringUpTests\FPDivConst\FPDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDivConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPError.exe_85]
+RelativePath=JIT\CodeGenBringUpTests\FPError\FPError.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPError
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPFillArray.exe_86]
+RelativePath=JIT\CodeGenBringUpTests\FPFillArray\FPFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPFillArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPMath.exe_87]
+RelativePath=JIT\CodeGenBringUpTests\FPMath\FPMath.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMath
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPMul.exe_88]
+RelativePath=JIT\CodeGenBringUpTests\FPMul\FPMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPMulConst.exe_89]
+RelativePath=JIT\CodeGenBringUpTests\FPMulConst\FPMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMulConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPNeg.exe_90]
+RelativePath=JIT\CodeGenBringUpTests\FPNeg\FPNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPRem.exe_91]
+RelativePath=JIT\CodeGenBringUpTests\FPRem\FPRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPRoots.exe_92]
+RelativePath=JIT\CodeGenBringUpTests\FPRoots\FPRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRoots
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPSmall.exe_93]
+RelativePath=JIT\CodeGenBringUpTests\FPSmall\FPSmall.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSmall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPSub.exe_94]
+RelativePath=JIT\CodeGenBringUpTests\FPSub\FPSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPSubConst.exe_95]
+RelativePath=JIT\CodeGenBringUpTests\FPSubConst\FPSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSubConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPVar.exe_96]
+RelativePath=JIT\CodeGenBringUpTests\FPVar\FPVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Gcd.exe_97]
+RelativePath=JIT\CodeGenBringUpTests\Gcd\Gcd.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gcd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Ge1.exe_98]
+RelativePath=JIT\CodeGenBringUpTests\Ge1\Ge1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ge1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Gt1.exe_99]
+RelativePath=JIT\CodeGenBringUpTests\Gt1\Gt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Ind1.exe_100]
+RelativePath=JIT\CodeGenBringUpTests\Ind1\Ind1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ind1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[InitObj.exe_101]
+RelativePath=JIT\CodeGenBringUpTests\InitObj\InitObj.exe
+WorkingDir=JIT\CodeGenBringUpTests\InitObj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[InstanceCalls.exe_102]
+RelativePath=JIT\CodeGenBringUpTests\InstanceCalls\InstanceCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\InstanceCalls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[IntArraySum.exe_103]
+RelativePath=JIT\CodeGenBringUpTests\IntArraySum\IntArraySum.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntArraySum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[IntConv.exe_104]
+RelativePath=JIT\CodeGenBringUpTests\IntConv\IntConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Jmp1.exe_105]
+RelativePath=JIT\CodeGenBringUpTests\Jmp1\Jmp1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Jmp1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrue1.exe_106]
+RelativePath=JIT\CodeGenBringUpTests\JTrue1\JTrue1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueEqDbl.exe_107]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqDbl\JTrueEqDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueEqFP.exe_108]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqFP\JTrueEqFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueEqInt1.exe_109]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqInt1\JTrueEqInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGeDbl.exe_110]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeDbl\JTrueGeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGeFP.exe_111]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeFP\JTrueGeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGeInt1.exe_112]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeInt1\JTrueGeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGtDbl.exe_113]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtDbl\JTrueGtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGtFP.exe_114]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtFP\JTrueGtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueGtInt1.exe_115]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtInt1\JTrueGtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLeDbl.exe_116]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeDbl\JTrueLeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLeFP.exe_117]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeFP\JTrueLeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLeInt1.exe_118]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeInt1\JTrueLeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLtDbl.exe_119]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtDbl\JTrueLtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLtFP.exe_120]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtFP\JTrueLtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueLtInt1.exe_121]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtInt1\JTrueLtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueNeDbl.exe_122]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeDbl\JTrueNeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueNeFP.exe_123]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeFP\JTrueNeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JTrueNeInt1.exe_124]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeInt1\JTrueNeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Le1.exe_125]
+RelativePath=JIT\CodeGenBringUpTests\Le1\Le1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Le1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LeftShift.exe_126]
+RelativePath=JIT\CodeGenBringUpTests\LeftShift\LeftShift.exe
+WorkingDir=JIT\CodeGenBringUpTests\LeftShift
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LngConv.exe_127]
+RelativePath=JIT\CodeGenBringUpTests\LngConv\LngConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\LngConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Localloc.exe_128]
+RelativePath=JIT\CodeGenBringUpTests\Localloc\Localloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\Localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LocallocLarge.exe_129]
+RelativePath=JIT\CodeGenBringUpTests\LocallocLarge\LocallocLarge.exe
+WorkingDir=JIT\CodeGenBringUpTests\LocallocLarge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LongArgsAndReturn.exe_130]
+RelativePath=JIT\CodeGenBringUpTests\LongArgsAndReturn\LongArgsAndReturn.exe
+WorkingDir=JIT\CodeGenBringUpTests\LongArgsAndReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Lt1.exe_131]
+RelativePath=JIT\CodeGenBringUpTests\Lt1\Lt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Lt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul1.exe_132]
+RelativePath=JIT\CodeGenBringUpTests\mul1\mul1.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul2.exe_133]
+RelativePath=JIT\CodeGenBringUpTests\mul2\mul2.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul3.exe_134]
+RelativePath=JIT\CodeGenBringUpTests\mul3\mul3.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul4.exe_135]
+RelativePath=JIT\CodeGenBringUpTests\mul4\mul4.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Ne1.exe_136]
+RelativePath=JIT\CodeGenBringUpTests\Ne1\Ne1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ne1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[NegRMW.exe_137]
+RelativePath=JIT\CodeGenBringUpTests\NegRMW\NegRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NegRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[NestedCall.exe_138]
+RelativePath=JIT\CodeGenBringUpTests\NestedCall\NestedCall.exe
+WorkingDir=JIT\CodeGenBringUpTests\NestedCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[NotAndNeg.exe_139]
+RelativePath=JIT\CodeGenBringUpTests\NotAndNeg\NotAndNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotAndNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[NotRMW.exe_140]
+RelativePath=JIT\CodeGenBringUpTests\NotRMW\NotRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ObjAlloc.exe_141]
+RelativePath=JIT\CodeGenBringUpTests\ObjAlloc\ObjAlloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\ObjAlloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[OpMembersOfStructLocal.exe_142]
+RelativePath=JIT\CodeGenBringUpTests\OpMembersOfStructLocal\OpMembersOfStructLocal.exe
+WorkingDir=JIT\CodeGenBringUpTests\OpMembersOfStructLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Or1.exe_143]
+RelativePath=JIT\CodeGenBringUpTests\Or1\Or1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Or1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[OrRef.exe_144]
+RelativePath=JIT\CodeGenBringUpTests\OrRef\OrRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\OrRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[RecursiveTailCall.exe_145]
+RelativePath=JIT\CodeGenBringUpTests\RecursiveTailCall\RecursiveTailCall.exe
+WorkingDir=JIT\CodeGenBringUpTests\RecursiveTailCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem1.exe_146]
+RelativePath=JIT\CodeGenBringUpTests\rem1\rem1.exe
+WorkingDir=JIT\CodeGenBringUpTests\rem1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[RightShiftRef.exe_147]
+RelativePath=JIT\CodeGenBringUpTests\RightShiftRef\RightShiftRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\RightShiftRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Rotate.exe_148]
+RelativePath=JIT\CodeGenBringUpTests\Rotate\Rotate.exe
+WorkingDir=JIT\CodeGenBringUpTests\Rotate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[StaticCalls.exe_149]
+RelativePath=JIT\CodeGenBringUpTests\StaticCalls\StaticCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticCalls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[StaticValueField.exe_150]
+RelativePath=JIT\CodeGenBringUpTests\StaticValueField\StaticValueField.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticValueField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[StructFldAddr.exe_151]
+RelativePath=JIT\CodeGenBringUpTests\StructFldAddr\StructFldAddr.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructFldAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[StructInstMethod.exe_152]
+RelativePath=JIT\CodeGenBringUpTests\StructInstMethod\StructInstMethod.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructInstMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Sub1.exe_153]
+RelativePath=JIT\CodeGenBringUpTests\Sub1\Sub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Sub1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SubRef.exe_154]
+RelativePath=JIT\CodeGenBringUpTests\SubRef\SubRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\SubRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Swap.exe_155]
+RelativePath=JIT\CodeGenBringUpTests\Swap\Swap.exe
+WorkingDir=JIT\CodeGenBringUpTests\Swap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Switch.exe_156]
+RelativePath=JIT\CodeGenBringUpTests\Switch\Switch.exe
+WorkingDir=JIT\CodeGenBringUpTests\Switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Unbox.exe_157]
+RelativePath=JIT\CodeGenBringUpTests\Unbox\Unbox.exe
+WorkingDir=JIT\CodeGenBringUpTests\Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Xor1.exe_158]
+RelativePath=JIT\CodeGenBringUpTests\Xor1\Xor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Xor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[XorRef.exe_159]
+RelativePath=JIT\CodeGenBringUpTests\XorRef\XorRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\XorRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_Arrayscomplex3.exe_160]
+RelativePath=JIT\Directed\array-il\_Arrayscomplex3\_Arrayscomplex3.exe
+WorkingDir=JIT\Directed\array-il\_Arrayscomplex3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_Arrayssimple3.exe_161]
+RelativePath=JIT\Directed\array-il\_Arrayssimple3\_Arrayssimple3.exe
+WorkingDir=JIT\Directed\array-il\_Arrayssimple3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Complex1.exe_162]
+RelativePath=JIT\Directed\Arrays\Complex1\Complex1.exe
+WorkingDir=JIT\Directed\Arrays\Complex1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Complex2.exe_163]
+RelativePath=JIT\Directed\Arrays\Complex2\Complex2.exe
+WorkingDir=JIT\Directed\Arrays\Complex2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Simple1.exe_164]
+RelativePath=JIT\Directed\Arrays\Simple1\Simple1.exe
+WorkingDir=JIT\Directed\Arrays\Simple1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Simple2.exe_165]
+RelativePath=JIT\Directed\Arrays\Simple2\Simple2.exe
+WorkingDir=JIT\Directed\Arrays\Simple2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Base_1.exe_166]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1\Generic_Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Base_2.exe_167]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2\Generic_Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Base_3.exe_168]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3\Generic_Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Base_4.exe_169]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4\Generic_Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Base_6.exe_170]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6\Generic_Test_CSharp_Base_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Peer_1.exe_171]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1\Generic_Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Peer_2.exe_172]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2\Generic_Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Peer_3.exe_173]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3\Generic_Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Peer_4.exe_174]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4\Generic_Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Generic_Test_CSharp_Peer_6.exe_175]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6\Generic_Test_CSharp_Peer_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Base_1.exe_176]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_1\Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Base_2.exe_177]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_2\Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Base_3.exe_178]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_3\Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Base_4.exe_179]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_4\Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Peer_1.exe_180]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1\Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Peer_2.exe_181]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2\Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Peer_3.exe_182]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3\Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_CSharp_Peer_4.exe_183]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4\Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_And_Op_cs_d.exe_184]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_d\Bool_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_And_Op_cs_do.exe_185]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_do\Bool_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_And_Op_cs_r.exe_186]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_r\Bool_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_And_Op_cs_ro.exe_187]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_ro\Bool_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_No_Op_cs_d.exe_188]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_d\Bool_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_No_Op_cs_do.exe_189]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_do\Bool_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_No_Op_cs_r.exe_190]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_r\Bool_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_No_Op_cs_ro.exe_191]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_ro\Bool_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Or_Op_cs_d.exe_192]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_d\Bool_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Or_Op_cs_do.exe_193]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_do\Bool_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Or_Op_cs_r.exe_194]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_r\Bool_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Or_Op_cs_ro.exe_195]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_ro\Bool_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Xor_Op_cs_d.exe_196]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_d\Bool_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Xor_Op_cs_do.exe_197]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_do\Bool_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Xor_Op_cs_r.exe_198]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_r\Bool_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bool_Xor_Op_cs_ro.exe_199]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_ro\Bool_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_And_Op_cs_d.exe_200]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_d\Double_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_And_Op_cs_do.exe_201]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_do\Double_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_And_Op_cs_r.exe_202]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_r\Double_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_And_Op_cs_ro.exe_203]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_ro\Double_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_No_Op_cs_d.exe_204]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_d\Double_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_No_Op_cs_do.exe_205]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_do\Double_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_No_Op_cs_r.exe_206]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_r\Double_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_No_Op_cs_ro.exe_207]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_ro\Double_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Or_Op_cs_d.exe_208]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_d\Double_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Or_Op_cs_do.exe_209]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_do\Double_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Or_Op_cs_r.exe_210]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_r\Double_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Or_Op_cs_ro.exe_211]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_ro\Double_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Xor_Op_cs_d.exe_212]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_d\Double_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Xor_Op_cs_do.exe_213]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_do\Double_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Xor_Op_cs_r.exe_214]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_r\Double_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Double_Xor_Op_cs_ro.exe_215]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_ro\Double_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_And_Op_cs_d.exe_216]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_d\Float_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_And_Op_cs_do.exe_217]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_do\Float_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_And_Op_cs_r.exe_218]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_r\Float_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_And_Op_cs_ro.exe_219]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_ro\Float_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_No_Op_cs_d.exe_220]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_d\Float_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_No_Op_cs_do.exe_221]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_do\Float_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_No_Op_cs_r.exe_222]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_r\Float_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_No_Op_cs_ro.exe_223]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_ro\Float_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Or_Op_cs_d.exe_224]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_d\Float_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Or_Op_cs_do.exe_225]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_do\Float_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Or_Op_cs_r.exe_226]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_r\Float_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Or_Op_cs_ro.exe_227]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_ro\Float_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Xor_Op_cs_d.exe_228]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_d\Float_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Xor_Op_cs_do.exe_229]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_do\Float_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Xor_Op_cs_r.exe_230]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_r\Float_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Float_Xor_Op_cs_ro.exe_231]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_ro\Float_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_And_Op_cs_d.exe_232]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_d\Int_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_And_Op_cs_do.exe_233]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_do\Int_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_And_Op_cs_r.exe_234]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_r\Int_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_And_Op_cs_ro.exe_235]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_ro\Int_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_No_Op_cs_d.exe_236]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_d\Int_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_No_Op_cs_do.exe_237]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_do\Int_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_No_Op_cs_r.exe_238]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_r\Int_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_No_Op_cs_ro.exe_239]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_ro\Int_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Or_Op_cs_d.exe_240]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_d\Int_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Or_Op_cs_do.exe_241]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_do\Int_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Or_Op_cs_r.exe_242]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_r\Int_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Or_Op_cs_ro.exe_243]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_ro\Int_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Xor_Op_cs_d.exe_244]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_d\Int_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Xor_Op_cs_do.exe_245]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_do\Int_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Xor_Op_cs_r.exe_246]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_r\Int_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Int_Xor_Op_cs_ro.exe_247]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_ro\Int_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FPZero.exe_248]
+RelativePath=JIT\Directed\Convert\FPZero\FPZero.exe
+WorkingDir=JIT\Directed\Convert\FPZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[implicitConv.exe_249]
+RelativePath=JIT\Directed\Convert\implicitConv\implicitConv.exe
+WorkingDir=JIT\Directed\Convert\implicitConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[minopts_convu1.exe_250]
+RelativePath=JIT\Directed\Convert\minopts_convu1\minopts_convu1.exe
+WorkingDir=JIT\Directed\Convert\minopts_convu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FilterToHandler.exe_251]
+RelativePath=JIT\Directed\coverage\compiler\FilterToHandler\FilterToHandler.exe
+WorkingDir=JIT\Directed\coverage\compiler\FilterToHandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xaddmuly_cs_d.exe_252]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d\xaddmuly_cs_d.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[xaddmuly_cs_do.exe_253]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do\xaddmuly_cs_do.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[xaddmuly_cs_r.exe_254]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r\xaddmuly_cs_r.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[xaddmuly_cs_ro.exe_255]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro\xaddmuly_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[badendfinally.exe_256]
+RelativePath=JIT\Directed\coverage\importer\badendfinally\badendfinally.exe
+WorkingDir=JIT\Directed\coverage\importer\badendfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[badtailcall.exe_257]
+RelativePath=JIT\Directed\coverage\importer\badtailcall\badtailcall.exe
+WorkingDir=JIT\Directed\coverage\importer\badtailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byrefsubbyref1.exe_258]
+RelativePath=JIT\Directed\coverage\importer\byrefsubbyref1\byrefsubbyref1.exe
+WorkingDir=JIT\Directed\coverage\importer\byrefsubbyref1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[calli2.exe_259]
+RelativePath=JIT\Directed\coverage\importer\calli2\calli2.exe
+WorkingDir=JIT\Directed\coverage\importer\calli2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ceeillegal.exe_260]
+RelativePath=JIT\Directed\coverage\importer\ceeillegal\ceeillegal.exe
+WorkingDir=JIT\Directed\coverage\importer\ceeillegal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[badendfinally_il_d.exe_261]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d\badendfinally_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badendfinally_il_r.exe_262]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r\badendfinally_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badldsfld_il_d.exe_263]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d\badldsfld_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badldsfld_il_r.exe_264]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r\badldsfld_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badtailcall_il_d.exe_265]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d\badtailcall_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badtailcall_il_r.exe_266]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r\badtailcall_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bleref_il_d.exe_267]
+RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_d\bleref_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bleref_il_r.exe_268]
+RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_r\bleref_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[byrefsubbyref1_il_d.exe_269]
+RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d\byrefsubbyref1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[byrefsubbyref1_il_r.exe_270]
+RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r\byrefsubbyref1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[calli2_il_d.exe_271]
+RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_d\calli2_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[calli2_il_r.exe_272]
+RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_r\calli2_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceeillegal_il_d.exe_273]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d\ceeillegal_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceeillegal_il_r.exe_274]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r\ceeillegal_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldelemnullarr1_il_d.exe_275]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d\ldelemnullarr1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldelemnullarr1_il_r.exe_276]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r\ldelemnullarr1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldelemnullarr2_il_d.exe_277]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d\ldelemnullarr2_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldelemnullarr2_il_r.exe_278]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r\ldelemnullarr2_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldr4_il_d.exe_279]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d\ldfldr4_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldr4_il_r.exe_280]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r\ldfldr4_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldstatic1_il_d.exe_281]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d\ldfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldstatic1_il_r.exe_282]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r\ldfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldunboxedvt_il_d.exe_283]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d\ldfldunboxedvt_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldunboxedvt_il_r.exe_284]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r\ldfldunboxedvt_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldvirtftnsideeffect_il_d.exe_285]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d\ldvirtftnsideeffect_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldvirtftnsideeffect_il_r.exe_286]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r\ldvirtftnsideeffect_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonrefsdarr_il_d.exe_287]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d\nonrefsdarr_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonrefsdarr_il_r.exe_288]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r\nonrefsdarr_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullsdarr_il_d.exe_289]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d\nullsdarr_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullsdarr_il_r.exe_290]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r\nullsdarr_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[refanytype1_il_d.exe_291]
+RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d\refanytype1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[refanytype1_il_r.exe_292]
+RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r\refanytype1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stfldstatic1_il_d.exe_293]
+RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stfldstatic1_il_r.exe_294]
+RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[subovfun1_il_d.exe_295]
+RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d\subovfun1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[subovfun1_il_r.exe_296]
+RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r\subovfun1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilldind_il_d.exe_297]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d\volatilldind_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilldind_il_r.exe_298]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r\volatilldind_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilstind_il_d.exe_299]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d\volatilstind_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilstind_il_r.exe_300]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r\volatilstind_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldelemnullarr2.exe_301]
+RelativePath=JIT\Directed\coverage\importer\ldelemnullarr2\ldelemnullarr2.exe
+WorkingDir=JIT\Directed\coverage\importer\ldelemnullarr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldfldstatic1_il_r.exe_302]
+RelativePath=JIT\Directed\coverage\importer\ldfldstatic1_il_r\ldfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldfldunboxedvt.exe_303]
+RelativePath=JIT\Directed\coverage\importer\ldfldunboxedvt\ldfldunboxedvt.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldunboxedvt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldvirtftnsideeffect.exe_304]
+RelativePath=JIT\Directed\coverage\importer\ldvirtftnsideeffect\ldvirtftnsideeffect.exe
+WorkingDir=JIT\Directed\coverage\importer\ldvirtftnsideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nullsdarr.exe_305]
+RelativePath=JIT\Directed\coverage\importer\nullsdarr\nullsdarr.exe
+WorkingDir=JIT\Directed\coverage\importer\nullsdarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[refanytype1.exe_306]
+RelativePath=JIT\Directed\coverage\importer\refanytype1\refanytype1.exe
+WorkingDir=JIT\Directed\coverage\importer\refanytype1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic1_il_d.exe_307]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic1_il_r.exe_308]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[subovfun1_il_d.exe_309]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_d\subovfun1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[subovfun1_il_r.exe_310]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_r\subovfun1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatilldind.exe_311]
+RelativePath=JIT\Directed\coverage\importer\volatilldind\volatilldind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilldind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatilstind.exe_312]
+RelativePath=JIT\Directed\coverage\importer\volatilstind\volatilstind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilstind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[33objref_cs_d.exe_313]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_d\33objref_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[33objref_cs_do.exe_314]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_do\33objref_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[33objref_cs_r.exe_315]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_r\33objref_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[33objref_cs_ro.exe_316]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_ro\33objref_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[arrgetlen_il_d.exe_317]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_d\arrgetlen_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arrgetlen_il_r.exe_318]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_r\arrgetlen_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[callipinvoke.exe_319]
+RelativePath=JIT\Directed\coverage\oldtests\callipinvoke\callipinvoke.exe
+WorkingDir=JIT\Directed\coverage\oldtests\callipinvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse1_cs_d.exe_320]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_d\cse1_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse1_cs_do.exe_321]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_do\cse1_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse1_cs_r.exe_322]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_r\cse1_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse1_cs_ro.exe_323]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_ro\cse1_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse2_cs_d.exe_324]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_d\cse2_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse2_cs_do.exe_325]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_do\cse2_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse2_cs_r.exe_326]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_r\cse2_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse2_cs_ro.exe_327]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_ro\cse2_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[callipinvoke_il_d.exe_328]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d\callipinvoke_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[callipinvoke_il_r.exe_329]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r\callipinvoke_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldadd_cs_d.exe_330]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_d\lclfldadd_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldadd_cs_do.exe_331]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_do\lclfldadd_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldadd_cs_r.exe_332]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_r\lclfldadd_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldadd_cs_ro.exe_333]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro\lclfldadd_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclflddiv_cs_d.exe_334]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_d\lclflddiv_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclflddiv_cs_do.exe_335]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_do\lclflddiv_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclflddiv_cs_r.exe_336]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_r\lclflddiv_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclflddiv_cs_ro.exe_337]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro\lclflddiv_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldmul_cs_d.exe_338]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_d\lclfldmul_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldmul_cs_do.exe_339]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_do\lclfldmul_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldmul_cs_r.exe_340]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_r\lclfldmul_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldmul_cs_ro.exe_341]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro\lclfldmul_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldrem_cs_d.exe_342]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_d\lclfldrem_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldrem_cs_do.exe_343]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_do\lclfldrem_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldrem_cs_r.exe_344]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_r\lclfldrem_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldrem_cs_ro.exe_345]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro\lclfldrem_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldsub_cs_d.exe_346]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_d\lclfldsub_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldsub_cs_do.exe_347]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_do\lclfldsub_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lclfldsub_cs_r.exe_348]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_r\lclfldsub_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lclfldsub_cs_ro.exe_349]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro\lclfldsub_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[lcliimpl_il_d.exe_350]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_d\lcliimpl_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lcliimpl_il_r.exe_351]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_r\lcliimpl_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldfldstatic_il_d.exe_352]
+RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_d\ldfldstatic_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldfldstatic_il_r.exe_353]
+RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_r\ldfldstatic_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldsshrstsfld_il_d.exe_354]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d\ldsshrstsfld_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldsshrstsfld_il_r.exe_355]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r\ldsshrstsfld_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldvirtftncalli_il_d.exe_356]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d\ldvirtftncalli_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldvirtftncalli_il_r.exe_357]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r\ldvirtftncalli_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ovfldiv1_il_d.exe_358]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_d\ovfldiv1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ovfldiv1_il_r.exe_359]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_r\ovfldiv1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ovfldiv2_il_d.exe_360]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_d\ovfldiv2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ovfldiv2_il_r.exe_361]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_r\ovfldiv2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ovflrem1_il_d.exe_362]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_d\ovflrem1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ovflrem1_il_r.exe_363]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_r\ovflrem1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ovflrem2_il_d.exe_364]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_d\ovflrem2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ovflrem2_il_r.exe_365]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_r\ovflrem2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic1_il_d.exe_366]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic1_il_r.exe_367]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic2_il_d.exe_368]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_d\stfldstatic2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stfldstatic2_il_r.exe_369]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_r\stfldstatic2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[subbyref_il_d.exe_370]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_d\subbyref_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[subbyref_il_r.exe_371]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_r\subbyref_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly1_il_d.exe_372]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d\switchdefaultonly1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly1_il_r.exe_373]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r\switchdefaultonly1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly2_il_d.exe_374]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d\switchdefaultonly2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly2_il_r.exe_375]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r\switchdefaultonly2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly3_il_d.exe_376]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d\switchdefaultonly3_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[switchdefaultonly3_il_r.exe_377]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r\switchdefaultonly3_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tlstest_il_d.exe_378]
+RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_d\tlstest_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tlstest_il_r.exe_379]
+RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_r\tlstest_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trashreg_il_d.exe_380]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_d\trashreg_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[trashreg_il_r.exe_381]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_r\trashreg_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatilecpobj_il_d.exe_382]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_d\volatilecpobj_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatilecpobj_il_r.exe_383]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_r\volatilecpobj_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroinit_il_d.exe_384]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_d\zeroinit_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroinit_il_r.exe_385]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_r\zeroinit_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[excepobj.exe_386]
+RelativePath=JIT\Directed\ExcepFilters\excepobj\excepobj\excepobj.exe
+WorkingDir=JIT\Directed\ExcepFilters\excepobj\excepobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fault.exe_387]
+RelativePath=JIT\Directed\ExcepFilters\fault\fault\fault.exe
+WorkingDir=JIT\Directed\ExcepFilters\fault\fault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+HostStyle=Any
+[mixed.exe_388]
+RelativePath=JIT\Directed\ExcepFilters\mixed\mixed\mixed.exe
+WorkingDir=JIT\Directed\ExcepFilters\mixed\mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[mixed3.exe_389]
+RelativePath=JIT\Directed\ExcepFilters\mixed3\mixed3\mixed3.exe
+WorkingDir=JIT\Directed\ExcepFilters\mixed3\mixed3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CallOrder.exe_390]
+RelativePath=JIT\Directed\FaultHandlers\CallOrder\CallOrder\CallOrder.exe
+WorkingDir=JIT\Directed\FaultHandlers\CallOrder\CallOrder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Nesting.exe_391]
+RelativePath=JIT\Directed\FaultHandlers\Nesting\Nesting\Nesting.exe
+WorkingDir=JIT\Directed\FaultHandlers\Nesting\Nesting
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+HostStyle=Any
+[Simple.exe_392]
+RelativePath=JIT\Directed\FaultHandlers\Simple\Simple\Simple.exe
+WorkingDir=JIT\Directed\FaultHandlers\Simple\Simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[AttributeConflict.exe_393]
+RelativePath=JIT\Directed\forceinlining\AttributeConflict\AttributeConflict.exe
+WorkingDir=JIT\Directed\forceinlining\AttributeConflict
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[LargeNumberOfArgs.exe_394]
+RelativePath=JIT\Directed\forceinlining\LargeNumberOfArgs\LargeNumberOfArgs.exe
+WorkingDir=JIT\Directed\forceinlining\LargeNumberOfArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NegativeCases.exe_395]
+RelativePath=JIT\Directed\forceinlining\NegativeCases\NegativeCases.exe
+WorkingDir=JIT\Directed\forceinlining\NegativeCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NoMetaData.exe_396]
+RelativePath=JIT\Directed\forceinlining\NoMetaData\NoMetaData.exe
+WorkingDir=JIT\Directed\forceinlining\NoMetaData
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[PositiveCases.exe_397]
+RelativePath=JIT\Directed\forceinlining\PositiveCases\PositiveCases.exe
+WorkingDir=JIT\Directed\forceinlining\PositiveCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Recursion.exe_398]
+RelativePath=JIT\Directed\forceinlining\Recursion\Recursion.exe
+WorkingDir=JIT\Directed\forceinlining\Recursion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gettypetypeofmatrix.exe_399]
+RelativePath=JIT\Directed\gettypetypeof\gettypetypeofmatrix\gettypetypeofmatrix.exe
+WorkingDir=JIT\Directed\gettypetypeof\gettypetypeofmatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[leave1.exe_400]
+RelativePath=JIT\Directed\IL\leave\leave1\leave1.exe
+WorkingDir=JIT\Directed\IL\leave\leave1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[MutualRecur-TailCall.exe_401]
+RelativePath=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall\MutualRecur-TailCall.exe
+WorkingDir=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[PInvokeTail.exe_402]
+RelativePath=JIT\Directed\IL\PInvokeTail\PInvokeTail\PInvokeTail.exe
+WorkingDir=JIT\Directed\IL\PInvokeTail\PInvokeTail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TailWinApi.exe_403]
+RelativePath=JIT\Directed\IL\PInvokeTail\TailWinApi\TailWinApi.exe
+WorkingDir=JIT\Directed\IL\PInvokeTail\TailWinApi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Rethrow1.exe_404]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow1\Rethrow1.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Rethrow2.exe_405]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow2\Rethrow2.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jitTailcall1.exe_406]
+RelativePath=JIT\Directed\IL\Tailcall\jitTailcall1\jitTailcall1.exe
+WorkingDir=JIT\Directed\IL\Tailcall\jitTailcall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JitTailcall2.exe_407]
+RelativePath=JIT\Directed\IL\Tailcall\JitTailcall2\JitTailcall2.exe
+WorkingDir=JIT\Directed\IL\Tailcall\JitTailcall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cmpxchg.exe_408]
+RelativePath=JIT\Directed\intrinsic\interlocked\cmpxchg\cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cmpxchg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cse_cmpxchg.exe_409]
+RelativePath=JIT\Directed\intrinsic\interlocked\cse_cmpxchg\cse_cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cse_cmpxchg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[IntrinsicTest_Overflow.exe_410]
+RelativePath=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow\IntrinsicTest_Overflow.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[nullchecksuppress.exe_411]
+RelativePath=JIT\Directed\intrinsic\interlocked\nullchecksuppress\nullchecksuppress.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\nullchecksuppress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[regalloc1.exe_412]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc1\regalloc1.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[regalloc2.exe_413]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc2\regalloc2.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[rva_rvastatic1.exe_414]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic1\rva_rvastatic1.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rva_rvastatic2.exe_415]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic2\rva_rvastatic2.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rva_rvastatic3.exe_416]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic3\rva_rvastatic3.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rva_rvastatic4.exe_417]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic4\rva_rvastatic4.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pow0_cs_d.exe_418]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_d\pow0_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow0_cs_do.exe_419]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_do\pow0_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow0_cs_r.exe_420]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_r\pow0_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow0_cs_ro.exe_421]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_ro\pow0_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow1.exe_422]
+RelativePath=JIT\Directed\intrinsic\pow\pow1\pow1.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[pow2_cs_d.exe_423]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_d\pow2_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow2_cs_do.exe_424]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_do\pow2_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow2_cs_r.exe_425]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_r\pow2_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow2_cs_ro.exe_426]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_ro\pow2_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow3_cs_d.exe_427]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_d\pow3_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow3_cs_do.exe_428]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_do\pow3_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow3_cs_r.exe_429]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_r\pow3_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pow3_cs_ro.exe_430]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_ro\pow3_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch1_d.exe_431]
+RelativePath=JIT\Directed\leave\catch1_d\catch1_d.exe
+WorkingDir=JIT\Directed\leave\catch1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch1_r.exe_432]
+RelativePath=JIT\Directed\leave\catch1_r\catch1_r.exe
+WorkingDir=JIT\Directed\leave\catch1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch2_d.exe_433]
+RelativePath=JIT\Directed\leave\catch2_d\catch2_d.exe
+WorkingDir=JIT\Directed\leave\catch2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch2_r.exe_434]
+RelativePath=JIT\Directed\leave\catch2_r\catch2_r.exe
+WorkingDir=JIT\Directed\leave\catch2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch3_d.exe_435]
+RelativePath=JIT\Directed\leave\catch3_d\catch3_d.exe
+WorkingDir=JIT\Directed\leave\catch3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[catch3_r.exe_436]
+RelativePath=JIT\Directed\leave\catch3_r\catch3_r.exe
+WorkingDir=JIT\Directed\leave\catch3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter1_d.exe_437]
+RelativePath=JIT\Directed\leave\filter1_d\filter1_d.exe
+WorkingDir=JIT\Directed\leave\filter1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter1_r.exe_438]
+RelativePath=JIT\Directed\leave\filter1_r\filter1_r.exe
+WorkingDir=JIT\Directed\leave\filter1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter2_d.exe_439]
+RelativePath=JIT\Directed\leave\filter2_d\filter2_d.exe
+WorkingDir=JIT\Directed\leave\filter2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter2_r.exe_440]
+RelativePath=JIT\Directed\leave\filter2_r\filter2_r.exe
+WorkingDir=JIT\Directed\leave\filter2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter3_d.exe_441]
+RelativePath=JIT\Directed\leave\filter3_d\filter3_d.exe
+WorkingDir=JIT\Directed\leave\filter3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter3_r.exe_442]
+RelativePath=JIT\Directed\leave\filter3_r\filter3_r.exe
+WorkingDir=JIT\Directed\leave\filter3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try1_d.exe_443]
+RelativePath=JIT\Directed\leave\try1_d\try1_d.exe
+WorkingDir=JIT\Directed\leave\try1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try1_r.exe_444]
+RelativePath=JIT\Directed\leave\try1_r\try1_r.exe
+WorkingDir=JIT\Directed\leave\try1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try2_d.exe_445]
+RelativePath=JIT\Directed\leave\try2_d\try2_d.exe
+WorkingDir=JIT\Directed\leave\try2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try2_r.exe_446]
+RelativePath=JIT\Directed\leave\try2_r\try2_r.exe
+WorkingDir=JIT\Directed\leave\try2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try3_d.exe_447]
+RelativePath=JIT\Directed\leave\try3_d\try3_d.exe
+WorkingDir=JIT\Directed\leave\try3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[try3_r.exe_448]
+RelativePath=JIT\Directed\leave\try3_r\try3_r.exe
+WorkingDir=JIT\Directed\leave\try3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lifetime1.exe_449]
+RelativePath=JIT\Directed\lifetime\lifetime1\lifetime1.exe
+WorkingDir=JIT\Directed\lifetime\lifetime1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lifetime2.exe_450]
+RelativePath=JIT\Directed\lifetime\lifetime2\lifetime2.exe
+WorkingDir=JIT\Directed\lifetime\lifetime2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[localloc3_cs_d.exe_451]
+RelativePath=JIT\Directed\localloc\localloc3_cs_d\localloc3_cs_d.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[localloc3_cs_do.exe_452]
+RelativePath=JIT\Directed\localloc\localloc3_cs_do\localloc3_cs_do.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[localloc3_cs_r.exe_453]
+RelativePath=JIT\Directed\localloc\localloc3_cs_r\localloc3_cs_r.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[localloc3_cs_ro.exe_454]
+RelativePath=JIT\Directed\localloc\localloc3_cs_ro\localloc3_cs_ro.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[funcptrtest.exe_455]
+RelativePath=JIT\Directed\Misc\function_pointer\funcptrtest\funcptrtest.exe
+WorkingDir=JIT\Directed\Misc\function_pointer\funcptrtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gettypetypeofmatrix.exe_456]
+RelativePath=JIT\Directed\Misc\gettype\gettypetypeofmatrix\gettypetypeofmatrix.exe
+WorkingDir=JIT\Directed\Misc\gettype\gettypetypeofmatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BadRegArgs.exe_457]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs\BadRegArgs.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SideEffects.exe_458]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\SideEffects\SideEffects.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\SideEffects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[newarr.exe_459]
+RelativePath=JIT\Directed\newarr\newarr\newarr.exe
+WorkingDir=JIT\Directed\newarr\newarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[boxunboxenum_d.exe_460]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_d\boxunboxenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxenum_do.exe_461]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_do\boxunboxenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxenum_r.exe_462]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_r\boxunboxenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxenum_ro.exe_463]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_ro\boxunboxenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxinterface_d.exe_464]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_d\boxunboxinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxinterface_do.exe_465]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_do\boxunboxinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxinterface_r.exe_466]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_r\boxunboxinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxinterface_ro.exe_467]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_ro\boxunboxinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassenum_d.exe_468]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_d\castclassenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassenum_do.exe_469]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_do\castclassenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassenum_r.exe_470]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_r\castclassenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassenum_ro.exe_471]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_ro\castclassenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassinterface_d.exe_472]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_d\castclassinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassinterface_do.exe_473]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_do\castclassinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassinterface_r.exe_474]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_r\castclassinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassinterface_ro.exe_475]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_ro\castclassinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassvaluetype_d.exe_476]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_d\castclassvaluetype_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassvaluetype_do.exe_477]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_do\castclassvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassvaluetype_r.exe_478]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_r\castclassvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclassvaluetype_ro.exe_479]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_ro\castclassvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[constructor_d.exe_480]
+RelativePath=JIT\Directed\nullabletypes\constructor_d\constructor_d.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[constructor_do.exe_481]
+RelativePath=JIT\Directed\nullabletypes\constructor_do\constructor_do.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[constructor_r.exe_482]
+RelativePath=JIT\Directed\nullabletypes\constructor_r\constructor_r.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[constructor_ro.exe_483]
+RelativePath=JIT\Directed\nullabletypes\constructor_ro\constructor_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxvaluetype_do.exe_484]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do\boxunboxvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxvaluetype_r.exe_485]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r\boxunboxvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[boxunboxvaluetype_ro.exe_486]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro\boxunboxvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullcomparaison_d.exe_487]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d\nullcomparaison_d.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullcomparaison_do.exe_488]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do\nullcomparaison_do.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullcomparaison_r.exe_489]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r\nullcomparaison_r.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nullcomparaison_ro.exe_490]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro\nullcomparaison_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hashcode_d.exe_491]
+RelativePath=JIT\Directed\nullabletypes\hashcode_d\hashcode_d.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hashcode_do.exe_492]
+RelativePath=JIT\Directed\nullabletypes\hashcode_do\hashcode_do.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hashcode_r.exe_493]
+RelativePath=JIT\Directed\nullabletypes\hashcode_r\hashcode_r.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hashcode_ro.exe_494]
+RelativePath=JIT\Directed\nullabletypes\hashcode_ro\hashcode_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hasvalue_d.exe_495]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_d\hasvalue_d.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hasvalue_do.exe_496]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_do\hasvalue_do.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hasvalue_r.exe_497]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_r\hasvalue_r.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hasvalue_ro.exe_498]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_ro\hasvalue_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[invocation_d.exe_499]
+RelativePath=JIT\Directed\nullabletypes\invocation_d\invocation_d.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[invocation_do.exe_500]
+RelativePath=JIT\Directed\nullabletypes\invocation_do\invocation_do.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[invocation_r.exe_501]
+RelativePath=JIT\Directed\nullabletypes\invocation_r\invocation_r.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[invocation_ro.exe_502]
+RelativePath=JIT\Directed\nullabletypes\invocation_ro\invocation_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst2_d.exe_503]
+RelativePath=JIT\Directed\nullabletypes\isinst2_d\isinst2_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst2_do.exe_504]
+RelativePath=JIT\Directed\nullabletypes\isinst2_do\isinst2_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst2_r.exe_505]
+RelativePath=JIT\Directed\nullabletypes\isinst2_r\isinst2_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst2_ro.exe_506]
+RelativePath=JIT\Directed\nullabletypes\isinst2_ro\isinst2_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstboxed_d.exe_507]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_d\isinstboxed_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstboxed_do.exe_508]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_do\isinstboxed_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstboxed_r.exe_509]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_r\isinstboxed_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstboxed_ro.exe_510]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_ro\isinstboxed_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstenum_d.exe_511]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_d\isinstenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstenum_do.exe_512]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_do\isinstenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstenum_r.exe_513]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_r\isinstenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstenum_ro.exe_514]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_ro\isinstenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstgenerics_d.exe_515]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_d\isinstgenerics_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstgenerics_do.exe_516]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_do\isinstgenerics_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstgenerics_r.exe_517]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_r\isinstgenerics_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstgenerics_ro.exe_518]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_ro\isinstgenerics_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstinterface_d.exe_519]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_d\isinstinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstinterface_do.exe_520]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_do\isinstinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstinterface_r.exe_521]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_r\isinstinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstinterface_ro.exe_522]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_ro\isinstinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstvaluetype_d.exe_523]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_d\isinstvaluetype_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstvaluetype_do.exe_524]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_do\isinstvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstvaluetype_r.exe_525]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_r\isinstvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinstvaluetype_ro.exe_526]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_ro\isinstvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst_d.exe_527]
+RelativePath=JIT\Directed\nullabletypes\isinst_d\isinst_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst_do.exe_528]
+RelativePath=JIT\Directed\nullabletypes\isinst_do\isinst_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst_r.exe_529]
+RelativePath=JIT\Directed\nullabletypes\isinst_r\isinst_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst_ro.exe_530]
+RelativePath=JIT\Directed\nullabletypes\isinst_ro\isinst_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tostring_d.exe_531]
+RelativePath=JIT\Directed\nullabletypes\tostring_d\tostring_d.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tostring_do.exe_532]
+RelativePath=JIT\Directed\nullabletypes\tostring_do\tostring_do.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tostring_r.exe_533]
+RelativePath=JIT\Directed\nullabletypes\tostring_r\tostring_r.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tostring_ro.exe_534]
+RelativePath=JIT\Directed\nullabletypes\tostring_ro\tostring_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unboxnullable_d.exe_535]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_d\unboxnullable_d.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unboxnullable_do.exe_536]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_do\unboxnullable_do.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unboxnullable_r.exe_537]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_r\unboxnullable_r.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unboxnullable_ro.exe_538]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_ro\unboxnullable_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[value_d.exe_539]
+RelativePath=JIT\Directed\nullabletypes\value_d\value_d.exe
+WorkingDir=JIT\Directed\nullabletypes\value_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[value_do.exe_540]
+RelativePath=JIT\Directed\nullabletypes\value_do\value_do.exe
+WorkingDir=JIT\Directed\nullabletypes\value_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[value_r.exe_541]
+RelativePath=JIT\Directed\nullabletypes\value_r\value_r.exe
+WorkingDir=JIT\Directed\nullabletypes\value_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[value_ro.exe_542]
+RelativePath=JIT\Directed\nullabletypes\value_ro\value_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\value_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ccse_cs_d.exe_543]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_d\ccse_cs_d.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ccse_cs_do.exe_544]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_do\ccse_cs_do.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ccse_cs_r.exe_545]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_r\ccse_cs_r.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ccse_cs_ro.exe_546]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_ro\ccse_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_d.exe_547]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_d\callconv1_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_do.exe_548]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_do\callconv1_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_r.exe_549]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_r\callconv1_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_ro.exe_550]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_ro\callconv1_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_d.exe_551]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_d\callconv2_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_do.exe_552]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_do\callconv2_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_r.exe_553]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_r\callconv2_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_ro.exe_554]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_ro\callconv2_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv3_il_d.exe_555]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_d\callconv3_il_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv3_il_r.exe_556]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_r\callconv3_il_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[identity3_il_d.exe_557]
+RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_d\identity3_il_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[identity3_il_r.exe_558]
+RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_r\identity3_il_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed1_cs_d.exe_559]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_d\mixed1_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed1_cs_do.exe_560]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_do\mixed1_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed1_cs_r.exe_561]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_r\mixed1_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed1_cs_ro.exe_562]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_ro\mixed1_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed2_cs_d.exe_563]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_d\mixed2_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed2_cs_do.exe_564]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_do\mixed2_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed2_cs_r.exe_565]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_r\mixed2_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed2_cs_ro.exe_566]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_ro\mixed2_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[object-pin.exe_567]
+RelativePath=JIT\Directed\pinning\object-pin\object-pin\object-pin.exe
+WorkingDir=JIT\Directed\pinning\object-pin\object-pin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[calli_excep.exe_568]
+RelativePath=JIT\Directed\pinvoke\calli_excep\calli_excep.exe
+WorkingDir=JIT\Directed\pinvoke\calli_excep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[jump.exe_569]
+RelativePath=JIT\Directed\pinvoke\jump\jump.exe
+WorkingDir=JIT\Directed\pinvoke\jump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[preemptive_cooperative.exe_570]
+RelativePath=JIT\Directed\pinvoke\preemptive_cooperative\preemptive_cooperative.exe
+WorkingDir=JIT\Directed\pinvoke\preemptive_cooperative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sin.exe_571]
+RelativePath=JIT\Directed\pinvoke\sin\sin.exe
+WorkingDir=JIT\Directed\pinvoke\sin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sysinfo_cs.exe_572]
+RelativePath=JIT\Directed\pinvoke\sysinfo_cs\sysinfo_cs.exe
+WorkingDir=JIT\Directed\pinvoke\sysinfo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sysinfo_il.exe_573]
+RelativePath=JIT\Directed\pinvoke\sysinfo_il\sysinfo_il.exe
+WorkingDir=JIT\Directed\pinvoke\sysinfo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tail.exe_574]
+RelativePath=JIT\Directed\pinvoke\tail\tail.exe
+WorkingDir=JIT\Directed\pinvoke\tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_d.exe_575]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_d\callconv1_cs_d.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_do.exe_576]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_do\callconv1_cs_do.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_r.exe_577]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_r\callconv1_cs_r.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv1_cs_ro.exe_578]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_ro\callconv1_cs_ro.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_d.exe_579]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_d\callconv2_cs_d.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_do.exe_580]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_do\callconv2_cs_do.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_r.exe_581]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_r\callconv2_cs_r.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callconv2_cs_ro.exe_582]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_ro\callconv2_cs_ro.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_583]
+RelativePath=JIT\Directed\prefix\unaligned\1\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arglist.exe_584]
+RelativePath=JIT\Directed\prefix\unaligned\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array_tests.exe_585]
+RelativePath=JIT\Directed\prefix\unaligned\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Box_Unbox.exe_586]
+RelativePath=JIT\Directed\prefix\unaligned\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_587]
+RelativePath=JIT\Directed\prefix\unaligned\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpobj.exe_588]
+RelativePath=JIT\Directed\prefix\unaligned\1\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_589]
+RelativePath=JIT\Directed\prefix\unaligned\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fielda_tests.exe_590]
+RelativePath=JIT\Directed\prefix\unaligned\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[field_tests.exe_591]
+RelativePath=JIT\Directed\prefix\unaligned\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_592]
+RelativePath=JIT\Directed\prefix\unaligned\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initobj.exe_593]
+RelativePath=JIT\Directed\prefix\unaligned\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_stind.exe_594]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca.exe_595]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldobj.exe_596]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_597]
+RelativePath=JIT\Directed\prefix\unaligned\1\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_598]
+RelativePath=JIT\Directed\prefix\unaligned\2\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arglist.exe_599]
+RelativePath=JIT\Directed\prefix\unaligned\2\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array_tests.exe_600]
+RelativePath=JIT\Directed\prefix\unaligned\2\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Box_Unbox.exe_601]
+RelativePath=JIT\Directed\prefix\unaligned\2\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_602]
+RelativePath=JIT\Directed\prefix\unaligned\2\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpobj.exe_603]
+RelativePath=JIT\Directed\prefix\unaligned\2\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fielda_tests.exe_604]
+RelativePath=JIT\Directed\prefix\unaligned\2\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[field_tests.exe_605]
+RelativePath=JIT\Directed\prefix\unaligned\2\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_606]
+RelativePath=JIT\Directed\prefix\unaligned\2\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initobj.exe_607]
+RelativePath=JIT\Directed\prefix\unaligned\2\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_stind.exe_608]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca.exe_609]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldobj.exe_610]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_611]
+RelativePath=JIT\Directed\prefix\unaligned\2\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_612]
+RelativePath=JIT\Directed\prefix\unaligned\4\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arglist.exe_613]
+RelativePath=JIT\Directed\prefix\unaligned\4\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array_tests.exe_614]
+RelativePath=JIT\Directed\prefix\unaligned\4\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Box_Unbox.exe_615]
+RelativePath=JIT\Directed\prefix\unaligned\4\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_616]
+RelativePath=JIT\Directed\prefix\unaligned\4\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpobj.exe_617]
+RelativePath=JIT\Directed\prefix\unaligned\4\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_618]
+RelativePath=JIT\Directed\prefix\unaligned\4\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fielda_tests.exe_619]
+RelativePath=JIT\Directed\prefix\unaligned\4\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[field_tests.exe_620]
+RelativePath=JIT\Directed\prefix\unaligned\4\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_621]
+RelativePath=JIT\Directed\prefix\unaligned\4\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initobj.exe_622]
+RelativePath=JIT\Directed\prefix\unaligned\4\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_stind.exe_623]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca.exe_624]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldobj.exe_625]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_626]
+RelativePath=JIT\Directed\prefix\unaligned\4\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_627]
+RelativePath=JIT\Directed\prefix\volatile\1\add\add.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arglist.exe_628]
+RelativePath=JIT\Directed\prefix\volatile\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array_tests.exe_629]
+RelativePath=JIT\Directed\prefix\volatile\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Box_Unbox.exe_630]
+RelativePath=JIT\Directed\prefix\volatile\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_631]
+RelativePath=JIT\Directed\prefix\volatile\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpobj.exe_632]
+RelativePath=JIT\Directed\prefix\volatile\1\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add.exe_633]
+RelativePath=JIT\Directed\prefix\volatile\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fielda_tests.exe_634]
+RelativePath=JIT\Directed\prefix\volatile\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[field_tests.exe_635]
+RelativePath=JIT\Directed\prefix\volatile\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_636]
+RelativePath=JIT\Directed\prefix\volatile\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initobj.exe_637]
+RelativePath=JIT\Directed\prefix\volatile\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_stind.exe_638]
+RelativePath=JIT\Directed\prefix\volatile\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca.exe_639]
+RelativePath=JIT\Directed\prefix\volatile\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldobj.exe_640]
+RelativePath=JIT\Directed\prefix\volatile\1\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_641]
+RelativePath=JIT\Directed\prefix\volatile\1\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[byref2iu_il_d.exe_642]
+RelativePath=JIT\Directed\refbyref\byref2iu_il_d\byref2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\byref2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[byref2iu_il_r.exe_643]
+RelativePath=JIT\Directed\refbyref\byref2iu_il_r\byref2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\byref2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[byrefconvert_il_d.exe_644]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_d\byrefconvert_il_d.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byrefconvert_il_r.exe_645]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_r\byrefconvert_il_r.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ref2byref_il_d.exe_646]
+RelativePath=JIT\Directed\refbyref\ref2byref_il_d\ref2byref_il_d.exe
+WorkingDir=JIT\Directed\refbyref\ref2byref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ref2byref_il_r.exe_647]
+RelativePath=JIT\Directed\refbyref\ref2byref_il_r\ref2byref_il_r.exe
+WorkingDir=JIT\Directed\refbyref\ref2byref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ref2iu_il_d.exe_648]
+RelativePath=JIT\Directed\refbyref\ref2iu_il_d\ref2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\ref2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ref2iu_il_r.exe_649]
+RelativePath=JIT\Directed\refbyref\ref2iu_il_r\ref2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\ref2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[refpinned2iu_il_d.exe_650]
+RelativePath=JIT\Directed\refbyref\refpinned2iu_il_d\refpinned2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[refpinned2iu_il_r.exe_651]
+RelativePath=JIT\Directed\refbyref\refpinned2iu_il_r\refpinned2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[extended.exe_652]
+RelativePath=JIT\Directed\RVAInit\extended\extended.exe
+WorkingDir=JIT\Directed\RVAInit\extended
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcref1.exe_653]
+RelativePath=JIT\Directed\RVAInit\gcref1\gcref1.exe
+WorkingDir=JIT\Directed\RVAInit\gcref1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcref2.exe_654]
+RelativePath=JIT\Directed\RVAInit\gcref2\gcref2.exe
+WorkingDir=JIT\Directed\RVAInit\gcref2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nested.exe_655]
+RelativePath=JIT\Directed\RVAInit\nested\nested.exe
+WorkingDir=JIT\Directed\RVAInit\nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[oddsize.exe_656]
+RelativePath=JIT\Directed\RVAInit\oddsize\oddsize.exe
+WorkingDir=JIT\Directed\RVAInit\oddsize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overlap.exe_657]
+RelativePath=JIT\Directed\RVAInit\overlap\overlap.exe
+WorkingDir=JIT\Directed\RVAInit\overlap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simple.exe_658]
+RelativePath=JIT\Directed\RVAInit\simple\simple.exe
+WorkingDir=JIT\Directed\RVAInit\simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rvastatic1.exe_659]
+RelativePath=JIT\Directed\rvastatics\rvastatic1\rvastatic1.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rvastatic2.exe_660]
+RelativePath=JIT\Directed\rvastatics\rvastatic2\rvastatic2.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rvastatic3.exe_661]
+RelativePath=JIT\Directed\rvastatics\rvastatic3\rvastatic3.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rvastatic4.exe_662]
+RelativePath=JIT\Directed\rvastatics\rvastatic4\rvastatic4.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rvastatic5.exe_663]
+RelativePath=JIT\Directed\rvastatics\rvastatic5\rvastatic5.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[int16_cs_d.exe_664]
+RelativePath=JIT\Directed\shift\int16_cs_d\int16_cs_d.exe
+WorkingDir=JIT\Directed\shift\int16_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_cs_do.exe_665]
+RelativePath=JIT\Directed\shift\int16_cs_do\int16_cs_do.exe
+WorkingDir=JIT\Directed\shift\int16_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_cs_r.exe_666]
+RelativePath=JIT\Directed\shift\int16_cs_r\int16_cs_r.exe
+WorkingDir=JIT\Directed\shift\int16_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_cs_ro.exe_667]
+RelativePath=JIT\Directed\shift\int16_cs_ro\int16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int16_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_d.exe_668]
+RelativePath=JIT\Directed\shift\int16_d\int16_d.exe
+WorkingDir=JIT\Directed\shift\int16_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_do.exe_669]
+RelativePath=JIT\Directed\shift\int16_do\int16_do.exe
+WorkingDir=JIT\Directed\shift\int16_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_r.exe_670]
+RelativePath=JIT\Directed\shift\int16_r\int16_r.exe
+WorkingDir=JIT\Directed\shift\int16_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int16_ro.exe_671]
+RelativePath=JIT\Directed\shift\int16_ro\int16_ro.exe
+WorkingDir=JIT\Directed\shift\int16_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_cs_d.exe_672]
+RelativePath=JIT\Directed\shift\int32_cs_d\int32_cs_d.exe
+WorkingDir=JIT\Directed\shift\int32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_cs_do.exe_673]
+RelativePath=JIT\Directed\shift\int32_cs_do\int32_cs_do.exe
+WorkingDir=JIT\Directed\shift\int32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_cs_r.exe_674]
+RelativePath=JIT\Directed\shift\int32_cs_r\int32_cs_r.exe
+WorkingDir=JIT\Directed\shift\int32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_cs_ro.exe_675]
+RelativePath=JIT\Directed\shift\int32_cs_ro\int32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_d.exe_676]
+RelativePath=JIT\Directed\shift\int32_d\int32_d.exe
+WorkingDir=JIT\Directed\shift\int32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_do.exe_677]
+RelativePath=JIT\Directed\shift\int32_do\int32_do.exe
+WorkingDir=JIT\Directed\shift\int32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_r.exe_678]
+RelativePath=JIT\Directed\shift\int32_r\int32_r.exe
+WorkingDir=JIT\Directed\shift\int32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int32_ro.exe_679]
+RelativePath=JIT\Directed\shift\int32_ro\int32_ro.exe
+WorkingDir=JIT\Directed\shift\int32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int64_d.exe_680]
+RelativePath=JIT\Directed\shift\int64_d\int64_d.exe
+WorkingDir=JIT\Directed\shift\int64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int64_do.exe_681]
+RelativePath=JIT\Directed\shift\int64_do\int64_do.exe
+WorkingDir=JIT\Directed\shift\int64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int64_r.exe_682]
+RelativePath=JIT\Directed\shift\int64_r\int64_r.exe
+WorkingDir=JIT\Directed\shift\int64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int64_ro.exe_683]
+RelativePath=JIT\Directed\shift\int64_ro\int64_ro.exe
+WorkingDir=JIT\Directed\shift\int64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int8_il_d.exe_684]
+RelativePath=JIT\Directed\shift\int8_il_d\int8_il_d.exe
+WorkingDir=JIT\Directed\shift\int8_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int8_il_r.exe_685]
+RelativePath=JIT\Directed\shift\int8_il_r\int8_il_r.exe
+WorkingDir=JIT\Directed\shift\int8_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nativeint_il_d.exe_686]
+RelativePath=JIT\Directed\shift\nativeint_il_d\nativeint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nativeint_il_r.exe_687]
+RelativePath=JIT\Directed\shift\nativeint_il_r\nativeint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nativeuint_il_d.exe_688]
+RelativePath=JIT\Directed\shift\nativeuint_il_d\nativeuint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nativeuint_il_r.exe_689]
+RelativePath=JIT\Directed\shift\nativeuint_il_r\nativeuint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_cs_d.exe_690]
+RelativePath=JIT\Directed\shift\uint16_cs_d\uint16_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_cs_do.exe_691]
+RelativePath=JIT\Directed\shift\uint16_cs_do\uint16_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_cs_r.exe_692]
+RelativePath=JIT\Directed\shift\uint16_cs_r\uint16_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_cs_ro.exe_693]
+RelativePath=JIT\Directed\shift\uint16_cs_ro\uint16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_d.exe_694]
+RelativePath=JIT\Directed\shift\uint16_d\uint16_d.exe
+WorkingDir=JIT\Directed\shift\uint16_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_do.exe_695]
+RelativePath=JIT\Directed\shift\uint16_do\uint16_do.exe
+WorkingDir=JIT\Directed\shift\uint16_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_r.exe_696]
+RelativePath=JIT\Directed\shift\uint16_r\uint16_r.exe
+WorkingDir=JIT\Directed\shift\uint16_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint16_ro.exe_697]
+RelativePath=JIT\Directed\shift\uint16_ro\uint16_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_cs_d.exe_698]
+RelativePath=JIT\Directed\shift\uint32_cs_d\uint32_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_cs_do.exe_699]
+RelativePath=JIT\Directed\shift\uint32_cs_do\uint32_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_cs_r.exe_700]
+RelativePath=JIT\Directed\shift\uint32_cs_r\uint32_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_cs_ro.exe_701]
+RelativePath=JIT\Directed\shift\uint32_cs_ro\uint32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_d.exe_702]
+RelativePath=JIT\Directed\shift\uint32_d\uint32_d.exe
+WorkingDir=JIT\Directed\shift\uint32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_do.exe_703]
+RelativePath=JIT\Directed\shift\uint32_do\uint32_do.exe
+WorkingDir=JIT\Directed\shift\uint32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_r.exe_704]
+RelativePath=JIT\Directed\shift\uint32_r\uint32_r.exe
+WorkingDir=JIT\Directed\shift\uint32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint32_ro.exe_705]
+RelativePath=JIT\Directed\shift\uint32_ro\uint32_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint64_d.exe_706]
+RelativePath=JIT\Directed\shift\uint64_d\uint64_d.exe
+WorkingDir=JIT\Directed\shift\uint64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint64_do.exe_707]
+RelativePath=JIT\Directed\shift\uint64_do\uint64_do.exe
+WorkingDir=JIT\Directed\shift\uint64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint64_r.exe_708]
+RelativePath=JIT\Directed\shift\uint64_r\uint64_r.exe
+WorkingDir=JIT\Directed\shift\uint64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint64_ro.exe_709]
+RelativePath=JIT\Directed\shift\uint64_ro\uint64_ro.exe
+WorkingDir=JIT\Directed\shift\uint64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_cs_d.exe_710]
+RelativePath=JIT\Directed\shift\uint8_cs_d\uint8_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_cs_do.exe_711]
+RelativePath=JIT\Directed\shift\uint8_cs_do\uint8_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_cs_r.exe_712]
+RelativePath=JIT\Directed\shift\uint8_cs_r\uint8_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_cs_ro.exe_713]
+RelativePath=JIT\Directed\shift\uint8_cs_ro\uint8_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_d.exe_714]
+RelativePath=JIT\Directed\shift\uint8_d\uint8_d.exe
+WorkingDir=JIT\Directed\shift\uint8_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_do.exe_715]
+RelativePath=JIT\Directed\shift\uint8_do\uint8_do.exe
+WorkingDir=JIT\Directed\shift\uint8_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_r.exe_716]
+RelativePath=JIT\Directed\shift\uint8_r\uint8_r.exe
+WorkingDir=JIT\Directed\shift\uint8_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint8_ro.exe_717]
+RelativePath=JIT\Directed\shift\uint8_ro\uint8_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess1_cs_d.exe_718]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_d\straccess1_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess1_cs_do.exe_719]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_do\straccess1_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess1_cs_r.exe_720]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_r\straccess1_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess1_cs_ro.exe_721]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_ro\straccess1_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess2_cs_d.exe_722]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_d\straccess2_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess2_cs_do.exe_723]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_do\straccess2_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess2_cs_r.exe_724]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_r\straccess2_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess2_cs_ro.exe_725]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_ro\straccess2_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess3_cs_d.exe_726]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_d\straccess3_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess3_cs_do.exe_727]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_do\straccess3_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess3_cs_r.exe_728]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_r\straccess3_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess3_cs_ro.exe_729]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_ro\straccess3_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[straccess4.exe_730]
+RelativePath=JIT\Directed\StrAccess\straccess4\straccess4.exe
+WorkingDir=JIT\Directed\StrAccess\straccess4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[StructABI.exe_731]
+RelativePath=JIT\Directed\StructABI\StructABI\StructABI.exe
+WorkingDir=JIT\Directed\StructABI\StructABI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;ISSUE_2988;NEED_TRIAGE
+HostStyle=Any
+[SP1.exe_732]
+RelativePath=JIT\Directed\StructPromote\SP1\SP1.exe
+WorkingDir=JIT\Directed\StructPromote\SP1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP1a.exe_733]
+RelativePath=JIT\Directed\StructPromote\SP1a\SP1a.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP1a2.exe_734]
+RelativePath=JIT\Directed\StructPromote\SP1a2\SP1a2.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP1b.exe_735]
+RelativePath=JIT\Directed\StructPromote\SP1b\SP1b.exe
+WorkingDir=JIT\Directed\StructPromote\SP1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP1c.exe_736]
+RelativePath=JIT\Directed\StructPromote\SP1c\SP1c.exe
+WorkingDir=JIT\Directed\StructPromote\SP1c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP1d.exe_737]
+RelativePath=JIT\Directed\StructPromote\SP1d\SP1d.exe
+WorkingDir=JIT\Directed\StructPromote\SP1d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP2.exe_738]
+RelativePath=JIT\Directed\StructPromote\SP2\SP2.exe
+WorkingDir=JIT\Directed\StructPromote\SP2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SP2a.exe_739]
+RelativePath=JIT\Directed\StructPromote\SP2a\SP2a.exe
+WorkingDir=JIT\Directed\StructPromote\SP2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3151;REL_PASS
+HostStyle=Any
+[SP2b.exe_740]
+RelativePath=JIT\Directed\StructPromote\SP2b\SP2b.exe
+WorkingDir=JIT\Directed\StructPromote\SP2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3151
+HostStyle=Any
+[SP2c.exe_741]
+RelativePath=JIT\Directed\StructPromote\SP2c\SP2c.exe
+WorkingDir=JIT\Directed\StructPromote\SP2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3151
+HostStyle=Any
+[SpAddr.exe_742]
+RelativePath=JIT\Directed\StructPromote\SpAddr\SpAddr.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SpAddrAT.exe_743]
+RelativePath=JIT\Directed\StructPromote\SpAddrAT\SpAddrAT.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddrAT
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tailcall.exe_744]
+RelativePath=JIT\Directed\tailcall\tailcall\tailcall.exe
+WorkingDir=JIT\Directed\tailcall\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fault.exe_745]
+RelativePath=JIT\Directed\throwbox\fault\fault.exe
+WorkingDir=JIT\Directed\throwbox\fault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[filter.exe_746]
+RelativePath=JIT\Directed\throwbox\filter\filter.exe
+WorkingDir=JIT\Directed\throwbox\filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[finally.exe_747]
+RelativePath=JIT\Directed\throwbox\finally\finally.exe
+WorkingDir=JIT\Directed\throwbox\finally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[rethrow.exe_748]
+RelativePath=JIT\Directed\throwbox\rethrow\rethrow.exe
+WorkingDir=JIT\Directed\throwbox\rethrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mutualrecurthd-tls.exe_749]
+RelativePath=JIT\Directed\tls\mutualrecurthd-tls\mutualrecurthd-tls.exe
+WorkingDir=JIT\Directed\tls\mutualrecurthd-tls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test-tls.exe_750]
+RelativePath=JIT\Directed\tls\test-tls\test-tls.exe
+WorkingDir=JIT\Directed\tls\test-tls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TypedReference.exe_751]
+RelativePath=JIT\Directed\TypedReference\TypedReference\TypedReference.exe
+WorkingDir=JIT\Directed\TypedReference\TypedReference
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_846218.exe_752]
+RelativePath=JIT\Directed\UnrollLoop\Dev10_846218\Dev10_846218.exe
+WorkingDir=JIT\Directed\UnrollLoop\Dev10_846218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop1_cs_d.exe_753]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_d\loop1_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop1_cs_do.exe_754]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_do\loop1_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop1_cs_r.exe_755]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_r\loop1_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop1_cs_ro.exe_756]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_ro\loop1_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop2_cs_d.exe_757]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_d\loop2_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop2_cs_do.exe_758]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_do\loop2_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop2_cs_r.exe_759]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_r\loop2_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop2_cs_ro.exe_760]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_ro\loop2_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop3_il_d.exe_761]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_d\loop3_il_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop3_il_r.exe_762]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_r\loop3_il_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop4_cs_d.exe_763]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_d\loop4_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop4_cs_do.exe_764]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_do\loop4_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop4_cs_r.exe_765]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_r\loop4_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop4_cs_ro.exe_766]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_ro\loop4_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loop6_cs_d.exe_767]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_d\loop6_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop6_cs_do.exe_768]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_do\loop6_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop6_cs_r.exe_769]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_r\loop6_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loop6_cs_ro.exe_770]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_ro\loop6_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Dev10_863995.exe_771]
+RelativePath=JIT\Directed\zeroinit\Dev10_863995\Dev10_863995.exe
+WorkingDir=JIT\Directed\zeroinit\Dev10_863995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_byte.exe_772]
+RelativePath=JIT\Directed\zeroinit\init_byte\init_byte.exe
+WorkingDir=JIT\Directed\zeroinit\init_byte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_int32.exe_773]
+RelativePath=JIT\Directed\zeroinit\init_int32\init_int32.exe
+WorkingDir=JIT\Directed\zeroinit\init_int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_int64.exe_774]
+RelativePath=JIT\Directed\zeroinit\init_int64\init_int64.exe
+WorkingDir=JIT\Directed\zeroinit\init_int64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_struct.exe_775]
+RelativePath=JIT\Directed\zeroinit\init_struct\init_struct.exe
+WorkingDir=JIT\Directed\zeroinit\init_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_uint32.exe_776]
+RelativePath=JIT\Directed\zeroinit\init_uint32\init_uint32.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[init_uint64.exe_777]
+RelativePath=JIT\Directed\zeroinit\init_uint64\init_uint64.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tail.exe_778]
+RelativePath=JIT\Directed\zeroinit\tail\tail.exe
+WorkingDir=JIT\Directed\zeroinit\tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_779]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01_instance.exe_780]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01_static.exe_781]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class02.exe_782]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02\class02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class03.exe_783]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03\class03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class04.exe_784]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04\class04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class05.exe_785]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05\class05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class06.exe_786]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06\class06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class07.exe_787]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07\class07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struc01.exe_788]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01\struc01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Struct01.exe_789]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01\Struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Struct01_instance.exe_790]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance\Struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01_static.exe_791]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct02.exe_792]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02\struct02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct03.exe_793]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03\struct03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct04.exe_794]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04\struct04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct05.exe_795]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05\struct05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct06.exe_796]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06\struct06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct07.exe_797]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07\struct07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_798]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01_instance.exe_799]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01_static.exe_800]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_801]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01_instance.exe_802]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance\struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01_static.exe_803]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_804]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_805]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_806]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_807]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class1_cs_d.exe_808]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_d\class1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class1_cs_do.exe_809]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_do\class1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class1_cs_r.exe_810]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_r\class1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class1_cs_ro.exe_811]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_ro\class1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class1_il_d.exe_812]
+RelativePath=JIT\Generics\ConstrainedCall\class1_il_d\class1_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[class1_il_r.exe_813]
+RelativePath=JIT\Generics\ConstrainedCall\class1_il_r\class1_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[class2_cs_d.exe_814]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_d\class2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class2_cs_do.exe_815]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_do\class2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class2_cs_r.exe_816]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_r\class2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class2_cs_ro.exe_817]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_ro\class2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class2_il_d.exe_818]
+RelativePath=JIT\Generics\ConstrainedCall\class2_il_d\class2_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[class2_il_r.exe_819]
+RelativePath=JIT\Generics\ConstrainedCall\class2_il_r\class2_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[vt1_cs_d.exe_820]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_d\vt1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt1_cs_do.exe_821]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_do\vt1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt1_cs_r.exe_822]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_r\vt1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt1_cs_ro.exe_823]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_ro\vt1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt1_il_d.exe_824]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_d\vt1_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt1_il_r.exe_825]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_r\vt1_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_cs_d.exe_826]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_d\vt2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_cs_do.exe_827]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_do\vt2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_cs_r.exe_828]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_r\vt2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_cs_ro.exe_829]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_ro\vt2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_il_d.exe_830]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_d\vt2_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt2_il_r.exe_831]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_r\vt2_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_cs_d.exe_832]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_d\vt3_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_cs_do.exe_833]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_do\vt3_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_cs_r.exe_834]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_r\vt3_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_cs_ro.exe_835]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_ro\vt3_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_il_d.exe_836]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_d\vt3_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt3_il_r.exe_837]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_r\vt3_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt4_cs_d.exe_838]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_d\vt4_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt4_cs_do.exe_839]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_do\vt4_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt4_cs_r.exe_840]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_r\vt4_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt4_cs_ro.exe_841]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_ro\vt4_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vt4_il_d.exe_842]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_il_d\vt4_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[vt4_il_r.exe_843]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_il_r\vt4_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call_instance01.exe_844]
+RelativePath=JIT\Generics\Constraints\call_instance01\call_instance01.exe
+WorkingDir=JIT\Generics\Constraints\call_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Call_instance01_d.exe_845]
+RelativePath=JIT\Generics\Constraints\Call_instance01_d\Call_instance01_d.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Call_instance01_do.exe_846]
+RelativePath=JIT\Generics\Constraints\Call_instance01_do\Call_instance01_do.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Call_instance01_r.exe_847]
+RelativePath=JIT\Generics\Constraints\Call_instance01_r\Call_instance01_r.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Call_instance01_ro.exe_848]
+RelativePath=JIT\Generics\Constraints\Call_instance01_ro\Call_instance01_ro.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[call_static01.exe_849]
+RelativePath=JIT\Generics\Constraints\call_static01\call_static01.exe
+WorkingDir=JIT\Generics\Constraints\call_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convert_instance01.exe_850]
+RelativePath=JIT\Generics\Constraints\convert_instance01\convert_instance01.exe
+WorkingDir=JIT\Generics\Constraints\convert_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convert_static01.exe_851]
+RelativePath=JIT\Generics\Constraints\convert_static01\convert_static01.exe
+WorkingDir=JIT\Generics\Constraints\convert_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[transitive_instance01.exe_852]
+RelativePath=JIT\Generics\Constraints\transitive_instance01\transitive_instance01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[transitive_static01.exe_853]
+RelativePath=JIT\Generics\Constraints\transitive_static01\transitive_static01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[box_unbox01.exe_854]
+RelativePath=JIT\Generics\Conversions\Boxing\box_unbox01\box_unbox01.exe
+WorkingDir=JIT\Generics\Conversions\Boxing\box_unbox01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentogen01.exe_855]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen01\gentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentogen02.exe_856]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen02\gentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentogen03.exe_857]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen03\gentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentonongen01.exe_858]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen01\gentonongen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentonongen02.exe_859]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen02\gentonongen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gentonongen03.exe_860]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen03\gentonongen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nongentogen01.exe_861]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen01\nongentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nongentogen02.exe_862]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen02\nongentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nongentogen03.exe_863]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen03\nongentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos55915408cs.exe_864]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs\chaos55915408cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos55915408cs_o.exe_865]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs_o\chaos55915408cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos56200037cs.exe_866]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs\chaos56200037cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos56200037cs_o.exe_867]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs_o\chaos56200037cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos65204782cs.exe_868]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs\chaos65204782cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[chaos65204782cs_o.exe_869]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs_o\chaos65204782cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[general_class_instance01.exe_870]
+RelativePath=JIT\Generics\Exceptions\general_class_instance01\general_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[general_class_static01.exe_871]
+RelativePath=JIT\Generics\Exceptions\general_class_static01\general_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[general_struct_instance01.exe_872]
+RelativePath=JIT\Generics\Exceptions\general_struct_instance01\general_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[general_struct_static01.exe_873]
+RelativePath=JIT\Generics\Exceptions\general_struct_static01\general_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[specific_class_instance01.exe_874]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance01\specific_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[specific_class_instance02.exe_875]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance02\specific_class_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[specific_class_static01.exe_876]
+RelativePath=JIT\Generics\Exceptions\specific_class_static01\specific_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[specific_class_static02.exe_877]
+RelativePath=JIT\Generics\Exceptions\specific_class_static02\specific_class_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[specific_struct_instance01.exe_878]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance01\specific_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[specific_struct_instance02.exe_879]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance02\specific_struct_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[specific_struct_static01.exe_880]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static01\specific_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[specific_struct_static02.exe_881]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static02\specific_struct_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[getclassfrommethodparam.exe_882]
+RelativePath=JIT\Generics\Fields\getclassfrommethodparam\getclassfrommethodparam.exe
+WorkingDir=JIT\Generics\Fields\getclassfrommethodparam
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[instance_assignment_class01.exe_883]
+RelativePath=JIT\Generics\Fields\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_assignment_struct01.exe_884]
+RelativePath=JIT\Generics\Fields\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_class01.exe_885]
+RelativePath=JIT\Generics\Fields\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_struct01.exe_886]
+RelativePath=JIT\Generics\Fields\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_class01.exe_887]
+RelativePath=JIT\Generics\Fields\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_struct01.exe_888]
+RelativePath=JIT\Generics\Fields\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_class01.exe_889]
+RelativePath=JIT\Generics\Fields\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_struct01.exe_890]
+RelativePath=JIT\Generics\Fields\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_class01.exe_891]
+RelativePath=JIT\Generics\Fields\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_struct01.exe_892]
+RelativePath=JIT\Generics\Fields\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_class01.exe_893]
+RelativePath=JIT\Generics\Fields\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_struct01.exe_894]
+RelativePath=JIT\Generics\Fields\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[baseclass01.exe_895]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass01\baseclass01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[baseclass02.exe_896]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass02\baseclass02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[baseclass03.exe_897]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass03\baseclass03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[baseclass04.exe_898]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass04\baseclass04.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[baseclass05.exe_899]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass05\baseclass05.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_900]
+RelativePath=JIT\Generics\Instantiation\Classes\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class02.exe_901]
+RelativePath=JIT\Generics\Instantiation\Classes\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class03.exe_902]
+RelativePath=JIT\Generics\Instantiation\Classes\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Delegate001.exe_903]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate001\Delegate001.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate002.exe_904]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate002\Delegate002.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate003.exe_905]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate003\Delegate003.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate004.exe_906]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate004\Delegate004.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate005.exe_907]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate005\Delegate005.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate006.exe_908]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate006\Delegate006.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate007.exe_909]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate007\Delegate007.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate008.exe_910]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate008\Delegate008.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate009.exe_911]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate009\Delegate009.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate010.exe_912]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate010\Delegate010.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate011.exe_913]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate011\Delegate011.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate012.exe_914]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate012\Delegate012.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate013.exe_915]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate013\Delegate013.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate014.exe_916]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate014\Delegate014.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate015.exe_917]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate015\Delegate015.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate016.exe_918]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate016\Delegate016.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate017.exe_919]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate017\Delegate017.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate018.exe_920]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate018\Delegate018.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate019.exe_921]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate019\Delegate019.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate020.exe_922]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate020\Delegate020.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate021.exe_923]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate021\Delegate021.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate022.exe_924]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate022\Delegate022.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate023.exe_925]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate023\Delegate023.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate024.exe_926]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate024\Delegate024.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate025.exe_927]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate025\Delegate025.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate026.exe_928]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate026\Delegate026.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate027.exe_929]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate027\Delegate027.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate028.exe_930]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate028\Delegate028.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate029.exe_931]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate029\Delegate029.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate030.exe_932]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate030\Delegate030.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate031.exe_933]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate031\Delegate031.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Delegate032.exe_934]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate032\Delegate032.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[class01.exe_935]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class02.exe_936]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class03.exe_937]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class04.exe_938]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class04\class04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class05.exe_939]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class05\class05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_940]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct02.exe_941]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct03.exe_942]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct04.exe_943]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct04\struct04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct05.exe_944]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct05\struct05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_945]
+RelativePath=JIT\Generics\Instantiation\Structs\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct02.exe_946]
+RelativePath=JIT\Generics\Instantiation\Structs\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct03.exe_947]
+RelativePath=JIT\Generics\Instantiation\Structs\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_assignment_class01.exe_948]
+RelativePath=JIT\Generics\Locals\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_assignment_struct01.exe_949]
+RelativePath=JIT\Generics\Locals\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_class01.exe_950]
+RelativePath=JIT\Generics\Locals\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_struct01.exe_951]
+RelativePath=JIT\Generics\Locals\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_class01.exe_952]
+RelativePath=JIT\Generics\Locals\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_struct01.exe_953]
+RelativePath=JIT\Generics\Locals\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_class01.exe_954]
+RelativePath=JIT\Generics\Locals\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_struct01.exe_955]
+RelativePath=JIT\Generics\Locals\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_class01.exe_956]
+RelativePath=JIT\Generics\Locals\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_struct01.exe_957]
+RelativePath=JIT\Generics\Locals\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_class01.exe_958]
+RelativePath=JIT\Generics\Locals\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_struct01.exe_959]
+RelativePath=JIT\Generics\Locals\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class_instance01.exe_960]
+RelativePath=JIT\Generics\MemberAccess\class_instance01\class_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class_static01.exe_961]
+RelativePath=JIT\Generics\MemberAccess\class_static01\class_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[interface_class01.exe_962]
+RelativePath=JIT\Generics\MemberAccess\interface_class01\interface_class01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[interface_class02.exe_963]
+RelativePath=JIT\Generics\MemberAccess\interface_class02\interface_class02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[interface_struct01.exe_964]
+RelativePath=JIT\Generics\MemberAccess\interface_struct01\interface_struct01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[interface_struct02.exe_965]
+RelativePath=JIT\Generics\MemberAccess\interface_struct02\interface_struct02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct_instance01.exe_966]
+RelativePath=JIT\Generics\MemberAccess\struct_instance01\struct_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct_static01.exe_967]
+RelativePath=JIT\Generics\MemberAccess\struct_static01\struct_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_assignment_class01.exe_968]
+RelativePath=JIT\Generics\Parameters\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_assignment_struct01.exe_969]
+RelativePath=JIT\Generics\Parameters\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_class01.exe_970]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_equalnull_struct01.exe_971]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_class01.exe_972]
+RelativePath=JIT\Generics\Parameters\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance_passing_struct01.exe_973]
+RelativePath=JIT\Generics\Parameters\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_class01.exe_974]
+RelativePath=JIT\Generics\Parameters\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_assignment_struct01.exe_975]
+RelativePath=JIT\Generics\Parameters\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_class01.exe_976]
+RelativePath=JIT\Generics\Parameters\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_equalnull_struct01.exe_977]
+RelativePath=JIT\Generics\Parameters\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_class01.exe_978]
+RelativePath=JIT\Generics\Parameters\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static_passing_struct01.exe_979]
+RelativePath=JIT\Generics\Parameters\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[instance01.exe_980]
+RelativePath=JIT\Generics\pinvoke\instance01\instance01.exe
+WorkingDir=JIT\Generics\pinvoke\instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[instance02.exe_981]
+RelativePath=JIT\Generics\pinvoke\instance02\instance02.exe
+WorkingDir=JIT\Generics\pinvoke\instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[instance03.exe_982]
+RelativePath=JIT\Generics\pinvoke\instance03\instance03.exe
+WorkingDir=JIT\Generics\pinvoke\instance03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[static01.exe_983]
+RelativePath=JIT\Generics\pinvoke\static01\static01.exe
+WorkingDir=JIT\Generics\pinvoke\static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[static02.exe_984]
+RelativePath=JIT\Generics\pinvoke\static02\static02.exe
+WorkingDir=JIT\Generics\pinvoke\static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ddb148379.exe_985]
+RelativePath=JIT\Generics\regression\DDB148379\ddb148379\ddb148379.exe
+WorkingDir=JIT\Generics\regression\DDB148379\ddb148379
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class01.exe_986]
+RelativePath=JIT\Generics\Typeof\class01\class01.exe
+WorkingDir=JIT\Generics\Typeof\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class02.exe_987]
+RelativePath=JIT\Generics\Typeof\class02\class02.exe
+WorkingDir=JIT\Generics\Typeof\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[class03.exe_988]
+RelativePath=JIT\Generics\Typeof\class03\class03.exe
+WorkingDir=JIT\Generics\Typeof\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[dynamicTypes.exe_989]
+RelativePath=JIT\Generics\Typeof\dynamicTypes\dynamicTypes.exe
+WorkingDir=JIT\Generics\Typeof\dynamicTypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[objectBoxing.exe_990]
+RelativePath=JIT\Generics\Typeof\objectBoxing\objectBoxing.exe
+WorkingDir=JIT\Generics\Typeof\objectBoxing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[refTypesdynamic.exe_991]
+RelativePath=JIT\Generics\Typeof\refTypesdynamic\refTypesdynamic.exe
+WorkingDir=JIT\Generics\Typeof\refTypesdynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct01.exe_992]
+RelativePath=JIT\Generics\Typeof\struct01\struct01.exe
+WorkingDir=JIT\Generics\Typeof\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct02.exe_993]
+RelativePath=JIT\Generics\Typeof\struct02\struct02.exe
+WorkingDir=JIT\Generics\Typeof\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct03.exe_994]
+RelativePath=JIT\Generics\Typeof\struct03\struct03.exe
+WorkingDir=JIT\Generics\Typeof\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[valueTypeBoxing.exe_995]
+RelativePath=JIT\Generics\Typeof\valueTypeBoxing\valueTypeBoxing.exe
+WorkingDir=JIT\Generics\Typeof\valueTypeBoxing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[default_class01.exe_996]
+RelativePath=JIT\Generics\TypeParameters\default_class01\default_class01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[default_struct01.exe_997]
+RelativePath=JIT\Generics\TypeParameters\default_struct01\default_struct01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[add.exe_998]
+RelativePath=JIT\IL_Conformance\Old\Base\add\add.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[add_ovf.exe_999]
+RelativePath=JIT\IL_Conformance\Old\Base\add_ovf\add_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\add_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[and.exe_1000]
+RelativePath=JIT\IL_Conformance\Old\Base\and\and.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\and
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq.exe_1001]
+RelativePath=JIT\IL_Conformance\Old\Base\beq\beq.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\beq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_s.exe_1002]
+RelativePath=JIT\IL_Conformance\Old\Base\beq_s\beq_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\beq_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge.exe_1003]
+RelativePath=JIT\IL_Conformance\Old\Base\bge\bge.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_s.exe_1004]
+RelativePath=JIT\IL_Conformance\Old\Base\bge_s\bge_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bge_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt.exe_1005]
+RelativePath=JIT\IL_Conformance\Old\Base\bgt\bgt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_s.exe_1006]
+RelativePath=JIT\IL_Conformance\Old\Base\bgt_s\bgt_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bgt_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble.exe_1007]
+RelativePath=JIT\IL_Conformance\Old\Base\ble\ble.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_s.exe_1008]
+RelativePath=JIT\IL_Conformance\Old\Base\ble_s\ble_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ble_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt.exe_1009]
+RelativePath=JIT\IL_Conformance\Old\Base\blt\blt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\blt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_s.exe_1010]
+RelativePath=JIT\IL_Conformance\Old\Base\blt_s\blt_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\blt_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne.exe_1011]
+RelativePath=JIT\IL_Conformance\Old\Base\bne\bne.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_s.exe_1012]
+RelativePath=JIT\IL_Conformance\Old\Base\bne_s\bne_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bne_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[br.exe_1013]
+RelativePath=JIT\IL_Conformance\Old\Base\br\br.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brfalse.exe_1014]
+RelativePath=JIT\IL_Conformance\Old\Base\brfalse\brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brfalse_s.exe_1015]
+RelativePath=JIT\IL_Conformance\Old\Base\brfalse_s\brfalse_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brfalse_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brtrue.exe_1016]
+RelativePath=JIT\IL_Conformance\Old\Base\brtrue\brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brtrue_s.exe_1017]
+RelativePath=JIT\IL_Conformance\Old\Base\brtrue_s\brtrue_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brtrue_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[br_s.exe_1018]
+RelativePath=JIT\IL_Conformance\Old\Base\br_s\br_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\br_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call.exe_1019]
+RelativePath=JIT\IL_Conformance\Old\Base\call\call.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq.exe_1020]
+RelativePath=JIT\IL_Conformance\Old\Base\ceq\ceq.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ceq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt.exe_1021]
+RelativePath=JIT\IL_Conformance\Old\Base\cgt\cgt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\cgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ckfinite.exe_1022]
+RelativePath=JIT\IL_Conformance\Old\Base\ckfinite\ckfinite.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ckfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt.exe_1023]
+RelativePath=JIT\IL_Conformance\Old\Base\clt\clt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\clt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv.exe_1024]
+RelativePath=JIT\IL_Conformance\Old\Base\conv\conv.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf.exe_1025]
+RelativePath=JIT\IL_Conformance\Old\Base\conv_ovf\conv_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\conv_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_1026]
+RelativePath=JIT\IL_Conformance\Old\Base\cpblk\cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div.exe_1027]
+RelativePath=JIT\IL_Conformance\Old\Base\div\div.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dup.exe_1028]
+RelativePath=JIT\IL_Conformance\Old\Base\dup\dup.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\dup
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_1029]
+RelativePath=JIT\IL_Conformance\Old\Base\initblk\initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[jmp.exe_1030]
+RelativePath=JIT\IL_Conformance\Old\Base\jmp\jmp.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldargs_stargs.exe_1031]
+RelativePath=JIT\IL_Conformance\Old\Base\ldargs_stargs\ldargs_stargs.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldargs_stargs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_n.exe_1032]
+RelativePath=JIT\IL_Conformance\Old\Base\ldarg_n\ldarg_n.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_n
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_starg.exe_1033]
+RelativePath=JIT\IL_Conformance\Old\Base\ldarg_starg\ldarg_starg.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_starg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc.exe_1034]
+RelativePath=JIT\IL_Conformance\Old\Base\ldc\ldc.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_i4_n.exe_1035]
+RelativePath=JIT\IL_Conformance\Old\Base\ldc_i4_n\ldc_i4_n.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldc_i4_n
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldftn_calli.exe_1036]
+RelativePath=JIT\IL_Conformance\Old\Base\ldftn_calli\ldftn_calli.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldftn_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_stind.exe_1037]
+RelativePath=JIT\IL_Conformance\Old\Base\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca.exe_1038]
+RelativePath=JIT\IL_Conformance\Old\Base\ldloca\ldloca.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_stloc.exe_1039]
+RelativePath=JIT\IL_Conformance\Old\Base\ldloc_stloc\ldloc_stloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldloc_stloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldnull.exe_1040]
+RelativePath=JIT\IL_Conformance\Old\Base\ldnull\ldnull.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul.exe_1041]
+RelativePath=JIT\IL_Conformance\Old\Base\mul\mul.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf.exe_1042]
+RelativePath=JIT\IL_Conformance\Old\Base\mul_ovf\mul_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\mul_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[neg.exe_1043]
+RelativePath=JIT\IL_Conformance\Old\Base\neg\neg.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nop.exe_1044]
+RelativePath=JIT\IL_Conformance\Old\Base\nop\nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[not.exe_1045]
+RelativePath=JIT\IL_Conformance\Old\Base\not\not.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\not
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[or.exe_1046]
+RelativePath=JIT\IL_Conformance\Old\Base\or\or.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\or
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pop.exe_1047]
+RelativePath=JIT\IL_Conformance\Old\Base\pop\pop.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\pop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem.exe_1048]
+RelativePath=JIT\IL_Conformance\Old\Base\rem\rem.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\rem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret.exe_1049]
+RelativePath=JIT\IL_Conformance\Old\Base\ret\ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shl.exe_1050]
+RelativePath=JIT\IL_Conformance\Old\Base\shl\shl.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\shl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shr.exe_1051]
+RelativePath=JIT\IL_Conformance\Old\Base\shr\shr.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\shr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub.exe_1052]
+RelativePath=JIT\IL_Conformance\Old\Base\sub\sub.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf.exe_1053]
+RelativePath=JIT\IL_Conformance\Old\Base\sub_ovf\sub_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\sub_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch.exe_1054]
+RelativePath=JIT\IL_Conformance\Old\Base\switch\switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tailcall.exe_1055]
+RelativePath=JIT\IL_Conformance\Old\Base\tailcall\tailcall.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unaligned.exe_1056]
+RelativePath=JIT\IL_Conformance\Old\Base\unaligned\unaligned.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\unaligned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatile.exe_1057]
+RelativePath=JIT\IL_Conformance\Old\Base\volatile\volatile.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\volatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xor.exe_1058]
+RelativePath=JIT\IL_Conformance\Old\Base\xor\xor.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\xor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_i.exe_1059]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i\add_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_I4.exe_1060]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_I4\add_I4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_i8.exe_1061]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i8\add_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_i1.exe_1062]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1\add_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_i2.exe_1063]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2\add_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_i4.exe_1064]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4\add_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_i8.exe_1065]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8\add_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_u1.exe_1066]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1\add_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_u2.exe_1067]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2\add_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_u4.exe_1068]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4\add_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_ovf_u8.exe_1069]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8\add_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_r4.exe_1070]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r4\add_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[add_r8.exe_1071]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r8\add_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[and_u4.exe_1072]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u4\and_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[and_u8.exe_1073]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u8\and_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_i.exe_1074]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i\beq_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_i4.exe_1075]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i4\beq_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_i8.exe_1076]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i8\beq_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_r4.exe_1077]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r4\beq_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[beq_r8.exe_1078]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r8\beq_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_i4.exe_1079]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i4\bge_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_i8.exe_1080]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i8\bge_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_r4.exe_1081]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r4\bge_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_r8.exe_1082]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r8\bge_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_u.exe_1083]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_u\bge_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_un_i4.exe_1084]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4\bge_un_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_un_i8.exe_1085]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8\bge_un_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_un_r4.exe_1086]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4\bge_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bge_un_r8.exe_1087]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8\bge_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_i4.exe_1088]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4\bgt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_i8.exe_1089]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8\bgt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_r4.exe_1090]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4\bgt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_r8.exe_1091]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8\bgt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_u.exe_1092]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u\bgt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_u4.exe_1093]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4\bgt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_u8.exe_1094]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8\bgt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_un_r4.exe_1095]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4\bgt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bgt_un_r8.exe_1096]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8\bgt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_i4.exe_1097]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i4\ble_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_i8.exe_1098]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i8\ble_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_r4.exe_1099]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r4\ble_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_r8.exe_1100]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r8\ble_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_u.exe_1101]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u\ble_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_u4.exe_1102]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u4\ble_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_u8.exe_1103]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u8\ble_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_un_r4.exe_1104]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4\ble_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ble_un_r8.exe_1105]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8\ble_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_i4.exe_1106]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i4\blt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_i8.exe_1107]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i8\blt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_r4.exe_1108]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r4\blt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_r8.exe_1109]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r8\blt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_u.exe_1110]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u\blt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_u4.exe_1111]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u4\blt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_u8.exe_1112]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u8\blt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_un_r4.exe_1113]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4\blt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[blt_un_r8.exe_1114]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8\blt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_u.exe_1115]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u\bne_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_u4.exe_1116]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u4\bne_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_u8.exe_1117]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u8\bne_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_un_r4.exe_1118]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4\bne_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_un_r8.exe_1119]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8\bne_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[br.exe_1120]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\br\br.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brfalse.exe_1121]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brfalse\brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[brtrue.exe_1122]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brtrue\brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call.exe_1123]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\call\call.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq_i.exe_1124]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i\ceq_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq_i4.exe_1125]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4\ceq_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq_i8.exe_1126]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8\ceq_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq_r4.exe_1127]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4\ceq_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ceq_r8.exe_1128]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8\ceq_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_i4.exe_1129]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4\cgt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_i8.exe_1130]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8\cgt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_r4.exe_1131]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4\cgt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_r8.exe_1132]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8\cgt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_u.exe_1133]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u\cgt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_u4.exe_1134]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4\cgt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_u8.exe_1135]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8\cgt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_un_r4.exe_1136]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4\cgt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cgt_un_r8.exe_1137]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8\cgt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ckfinite_r4.exe_1138]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4\ckfinite_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ckfinite_r8.exe_1139]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8\ckfinite_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_i4.exe_1140]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i4\clt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_i8.exe_1141]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i8\clt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_r4.exe_1142]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r4\clt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_r8.exe_1143]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r8\clt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_u.exe_1144]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u\clt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_u4.exe_1145]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u4\clt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_u8.exe_1146]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u8\clt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_un_r4.exe_1147]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4\clt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[clt_un_r8.exe_1148]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8\clt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Conv_I4.exe_1149]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4\Conv_I4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Conv_I8.exe_1150]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8\Conv_I8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i1_un.exe_1151]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un\conv_ovf_i1_un.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[conv_ovf_i4_i1.exe_1152]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1\conv_ovf_i4_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i4_i2.exe_1153]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2\conv_ovf_i4_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i4_u4.exe_1154]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4\conv_ovf_i4_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i8_i.exe_1155]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i\conv_ovf_i8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i8_i4.exe_1156]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4\conv_ovf_i8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_i8_u8.exe_1157]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8\conv_ovf_i8_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_r8_i.exe_1158]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i\conv_ovf_r8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_r8_i4.exe_1159]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4\conv_ovf_r8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_r8_i8.exe_1160]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8\conv_ovf_r8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u4_i.exe_1161]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i\conv_ovf_u4_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u4_i4.exe_1162]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4\conv_ovf_u4_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u4_u1.exe_1163]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1\conv_ovf_u4_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u4_u2.exe_1164]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2\conv_ovf_u4_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u8_i8.exe_1165]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8\conv_ovf_u8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[conv_ovf_u8_u4.exe_1166]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4\conv_ovf_u8_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Conv_R4.exe_1167]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4\Conv_R4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpblk.exe_1168]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cpblk\cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_br.exe_1169]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_br\c_br.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_brfalse.exe_1170]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse\c_brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_brtrue.exe_1171]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue\c_brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_call.exe_1172]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_call\c_call.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_cpblk.exe_1173]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk\c_cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_initblk.exe_1174]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_initblk\c_initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_ldvirtftn.exe_1175]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn\c_ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_localloc.exe_1176]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_localloc\c_localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_nop.exe_1177]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_nop\c_nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_ret.exe_1178]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ret\c_ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[c_switch.exe_1179]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_switch\c_switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_i4.exe_1180]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i4\div_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_i8.exe_1181]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i8\div_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_r4.exe_1182]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r4\div_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_r8.exe_1183]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r8\div_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_u4.exe_1184]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u4\div_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[div_u8.exe_1185]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u8\div_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dup4.exe_1186]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup4\dup4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dup8.exe_1187]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup8\dup8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dupi.exe_1188]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dupi\dupi.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dupi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initblk.exe_1189]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\initblk\initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_i.exe_1190]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i\ldarga_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_i4.exe_1191]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4\ldarga_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_i8.exe_1192]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8\ldarga_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_r4.exe_1193]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4\ldarga_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_r8.exe_1194]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8\ldarga_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarga_ref.exe_1195]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref\ldarga_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_i.exe_1196]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i\ldarg_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_i4.exe_1197]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4\ldarg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_i8.exe_1198]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8\ldarg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_r4.exe_1199]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4\ldarg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_r8.exe_1200]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8\ldarg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_ref.exe_1201]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref\ldarg_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_add_ovf_i1.exe_1202]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1\ldc_add_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_i2.exe_1203]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2\ldc_add_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_i4.exe_1204]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4\ldc_add_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_i8.exe_1205]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8\ldc_add_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_u1.exe_1206]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1\ldc_add_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_u2.exe_1207]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2\ldc_add_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_u4.exe_1208]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4\ldc_add_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_add_ovf_u8.exe_1209]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8\ldc_add_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ckfinite_r4.exe_1210]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4\ldc_ckfinite_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ckfinite_r8.exe_1211]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8\ldc_ckfinite_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_i4_i1.exe_1212]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1\ldc_conv_ovf_i4_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_i4_i2.exe_1213]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2\ldc_conv_ovf_i4_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_i4_u4.exe_1214]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4\ldc_conv_ovf_i4_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_i8_i4.exe_1215]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4\ldc_conv_ovf_i8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_i8_u8.exe_1216]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8\ldc_conv_ovf_i8_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_r8_i.exe_1217]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i\ldc_conv_ovf_r8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_r8_i4.exe_1218]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4\ldc_conv_ovf_r8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_r8_i8.exe_1219]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8\ldc_conv_ovf_r8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u4_i.exe_1220]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i\ldc_conv_ovf_u4_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u4_i4.exe_1221]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4\ldc_conv_ovf_u4_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u4_u1.exe_1222]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1\ldc_conv_ovf_u4_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u4_u2.exe_1223]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2\ldc_conv_ovf_u4_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u8_i8.exe_1224]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8\ldc_conv_ovf_u8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_conv_ovf_u8_u4.exe_1225]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4\ldc_conv_ovf_u8_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_c_cpblk.exe_1226]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk\ldc_c_cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_c_initblk.exe_1227]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk\ldc_c_initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_c_nop.exe_1228]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop\ldc_c_nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_c_ret.exe_1229]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret\ldc_c_ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_c_switch.exe_1230]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch\ldc_c_switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_i4.exe_1231]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4\ldc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_i8.exe_1232]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8\ldc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_mul_ovf_i1.exe_1233]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1\ldc_mul_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_i2.exe_1234]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2\ldc_mul_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_i4.exe_1235]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4\ldc_mul_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_i8.exe_1236]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8\ldc_mul_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_u1.exe_1237]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1\ldc_mul_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_u2.exe_1238]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2\ldc_mul_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_u4.exe_1239]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4\ldc_mul_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_mul_ovf_u8.exe_1240]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8\ldc_mul_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_neg_i4.exe_1241]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4\ldc_neg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_neg_i8.exe_1242]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8\ldc_neg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_r4.exe_1243]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4\ldc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_r8.exe_1244]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8\ldc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldc_ret_i.exe_1245]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i\ldc_ret_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ret_i4.exe_1246]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4\ldc_ret_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ret_i8.exe_1247]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8\ldc_ret_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ret_r4.exe_1248]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4\ldc_ret_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ret_r8.exe_1249]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8\ldc_ret_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_ret_ref.exe_1250]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref\ldc_ret_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_i.exe_1251]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i\ldc_sub_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_i1.exe_1252]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1\ldc_sub_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_i2.exe_1253]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2\ldc_sub_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_i4.exe_1254]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4\ldc_sub_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_i8.exe_1255]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8\ldc_sub_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_u1.exe_1256]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1\ldc_sub_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_u2.exe_1257]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2\ldc_sub_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_u4.exe_1258]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4\ldc_sub_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldc_sub_ovf_u8.exe_1259]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8\ldc_sub_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldftn.exe_1260]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldftn\ldftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_i.exe_1261]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i\ldind_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_i1.exe_1262]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1\ldind_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_i2.exe_1263]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2\ldind_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_i4.exe_1264]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4\ldind_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_i8.exe_1265]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8\ldind_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_r4.exe_1266]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4\ldind_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_r8.exe_1267]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8\ldind_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_ref.exe_1268]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref\ldind_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_u1.exe_1269]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1\ldind_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_u2.exe_1270]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2\ldind_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldind_u4.exe_1271]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4\ldind_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_i.exe_1272]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i\ldloc_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_i4.exe_1273]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4\ldloc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_i8.exe_1274]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8\ldloc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_r4.exe_1275]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4\ldloc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_r8.exe_1276]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8\ldloc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_ref.exe_1277]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref\ldloc_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldnull_i.exe_1278]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i\ldnull_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldnull_ref.exe_1279]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref\ldnull_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldvirtftn.exe_1280]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn\ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_1281]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\localloc\localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_i4.exe_1282]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i4\mul_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_i8.exe_1283]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i8\mul_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_i1.exe_1284]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1\mul_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_i2.exe_1285]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2\mul_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_i4.exe_1286]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4\mul_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_i8.exe_1287]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8\mul_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_u1.exe_1288]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1\mul_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_u2.exe_1289]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2\mul_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_u4.exe_1290]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4\mul_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_ovf_u8.exe_1291]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8\mul_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_r4.exe_1292]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r4\mul_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mul_r8.exe_1293]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r8\mul_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[neg_i4.exe_1294]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i4\neg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[neg_i8.exe_1295]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i8\neg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[neg_r4.exe_1296]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r4\neg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[neg_r8.exe_1297]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r8\neg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nop.exe_1298]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\nop\nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[not_u4.exe_1299]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u4\not_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[not_u8.exe_1300]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u8\not_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[or_u4.exe_1301]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u4\or_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[or_u8.exe_1302]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u8\or_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pop4.exe_1303]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop4\pop4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pop8.exe_1304]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop8\pop8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[popi.exe_1305]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\popi\popi.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[refs.exe_1306]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\refs\refs.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\refs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_i4.exe_1307]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i4\rem_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_i8.exe_1308]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i8\rem_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_r4.exe_1309]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r4\rem_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_r8.exe_1310]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r8\rem_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_u4.exe_1311]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u4\rem_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rem_u8.exe_1312]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u8\rem_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret.exe_1313]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret\ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_i.exe_1314]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i\ret_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_i4.exe_1315]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i4\ret_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_i8.exe_1316]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i8\ret_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_r4.exe_1317]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r4\ret_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_r8.exe_1318]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r8\ret_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ret_ref.exe_1319]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_ref\ret_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shl_u4.exe_1320]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u4\shl_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shl_u8.exe_1321]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u8\shl_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shr_i4.exe_1322]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i4\shr_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shr_i8.exe_1323]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i8\shr_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shr_u4.exe_1324]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u4\shr_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[shr_u8.exe_1325]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u8\shr_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sizeof.exe_1326]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sizeof\sizeof.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_i.exe_1327]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i\starg_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_i4.exe_1328]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i4\starg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_i8.exe_1329]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i8\starg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_r4.exe_1330]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r4\starg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_r8.exe_1331]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r8\starg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[starg_ref.exe_1332]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_ref\starg_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_i1.exe_1333]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i1\stind_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_i2.exe_1334]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i2\stind_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_i4.exe_1335]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i4\stind_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_i8.exe_1336]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i8\stind_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_r8.exe_1337]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_r8\stind_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stind_ref.exe_1338]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_ref\stind_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_i.exe_1339]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i\stloc_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_i4.exe_1340]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4\stloc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_i8.exe_1341]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8\stloc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_r4.exe_1342]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4\stloc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_r8.exe_1343]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8\stloc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[stloc_ref.exe_1344]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref\stloc_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_i.exe_1345]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i\sub_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_i4.exe_1346]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i4\sub_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_i8.exe_1347]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i8\sub_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_i1.exe_1348]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1\sub_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_i2.exe_1349]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2\sub_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_i4.exe_1350]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4\sub_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_i8.exe_1351]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8\sub_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_u1.exe_1352]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1\sub_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_u2.exe_1353]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2\sub_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_u4.exe_1354]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4\sub_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_ovf_u8.exe_1355]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8\sub_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_r4.exe_1356]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r4\sub_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sub_r8.exe_1357]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r8\sub_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch.exe_1358]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\switch\switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xor_u4.exe_1359]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u4\xor_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xor_u8.exe_1360]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u8\xor_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AutoInit.exe_1361]
+RelativePath=JIT\IL_Conformance\Old\directed\AutoInit\AutoInit.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\AutoInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[heap_ovf.exe_1362]
+RelativePath=JIT\IL_Conformance\Old\directed\heap_ovf\heap_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\heap_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_i1.exe_1363]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i1\ldarg_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_i2.exe_1364]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i2\ldarg_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_i4.exe_1365]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i4\ldarg_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_i8.exe_1366]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i8\ldarg_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_r4.exe_1367]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r4\ldarg_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldarg_s_r8.exe_1368]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r8\ldarg_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_i1.exe_1369]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i1\ldloca_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_i2.exe_1370]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i2\ldloca_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_i4.exe_1371]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i4\ldloca_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_i8.exe_1372]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i8\ldloca_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_r4.exe_1373]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r4\ldloca_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloca_s_r8.exe_1374]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r8\ldloca_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_i1.exe_1375]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i1\ldloc_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_i2.exe_1376]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i2\ldloc_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_i4.exe_1377]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i4\ldloc_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_i8.exe_1378]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i8\ldloc_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_r4.exe_1379]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r4\ldloc_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldloc_s_r8.exe_1380]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r8\ldloc_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array_tests.exe_1381]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\array_tests\array_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Box_Unbox.exe_1382]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callintf.exe_1383]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callintf\callintf.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callintf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callnonvirt.exe_1384]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callnonvirt\callnonvirt.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callnonvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callstatic.exe_1385]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callstatic\callstatic.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callstatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callsuper.exe_1386]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callsuper\callsuper.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callsuper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[callvirt.exe_1387]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callvirt\callvirt.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass.exe_1388]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\castclass\castclass.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\castclass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cpobj.exe_1389]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\cpobj\cpobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fielda_tests.exe_1390]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[field_tests.exe_1391]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\field_tests\field_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[initobj.exe_1392]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\initobj\initobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[isinst.exe_1393]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\isinst\isinst.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\isinst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldlen.exe_1394]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldlen\ldlen.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldobj.exe_1395]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldobj\ldobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldstr.exe_1396]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldstr\ldstr.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldstr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldtoken.exe_1397]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldtoken\ldtoken.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ldvirtftn.exe_1398]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldvirtftn\ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localloc.exe_1399]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\localloc\localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[newobj.exe_1400]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\newobj\newobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seh_tests.exe_1401]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\seh_tests\seh_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\seh_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw.exe_1402]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\throw\throw.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[repro52.exe_1403]
+RelativePath=JIT\jit64\ebvts\cs\generics\generics\repro52\repro52.exe
+WorkingDir=JIT\jit64\ebvts\cs\generics\generics\repro52
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopEH.exe_1404]
+RelativePath=JIT\jit64\eh\basics\loopEH\loopEH.exe
+WorkingDir=JIT\jit64\eh\basics\loopEH
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter1.exe_1405]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter1\throwinfinallyintryfilter1.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter2.exe_1406]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter2\throwinfinallyintryfilter2.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter3.exe_1407]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter3\throwinfinallyintryfilter3.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwisfirstinstruction.exe_1408]
+RelativePath=JIT\jit64\eh\basics\throwisfirstinstruction\throwisfirstinstruction.exe
+WorkingDir=JIT\jit64\eh\basics\throwisfirstinstruction
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset1.exe_1409]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1\nestedTryRegionsWithSameOffset1.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset1_o.exe_1410]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o\nestedTryRegionsWithSameOffset1_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset2.exe_1411]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2\nestedTryRegionsWithSameOffset2.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset2_o.exe_1412]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o\nestedTryRegionsWithSameOffset2_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset3.exe_1413]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3\nestedTryRegionsWithSameOffset3.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedTryRegionsWithSameOffset3_o.exe_1414]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o\nestedTryRegionsWithSameOffset3_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitincatch.exe_1415]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitincatch\nonlocalexitincatch.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitincatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitinfinally.exe_1416]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally\nonlocalexitinfinally.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitinhandler.exe_1417]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler\nonlocalexitinhandler.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitinroot.exe_1418]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinroot\nonlocalexitinroot.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinroot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitintry.exe_1419]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitintry\nonlocalexitintry.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitintry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler.exe_1420]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler\nonlocalgotoinatryblockinahandler.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitfromnestedcatch.exe_1421]
+RelativePath=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch\nonlocalexitfromnestedcatch.exe
+WorkingDir=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[148343.exe_1422]
+RelativePath=JIT\jit64\gc\misc\148343\148343.exe
+WorkingDir=JIT\jit64\gc\misc\148343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[9param.exe_1423]
+RelativePath=JIT\jit64\gc\misc\9param\9param.exe
+WorkingDir=JIT\jit64\gc\misc\9param
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[9_and_alloca2.exe_1424]
+RelativePath=JIT\jit64\gc\misc\9_and_alloca2\9_and_alloca2.exe
+WorkingDir=JIT\jit64\gc\misc\9_and_alloca2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[alloca3.exe_1425]
+RelativePath=JIT\jit64\gc\misc\alloca3\alloca3.exe
+WorkingDir=JIT\jit64\gc\misc\alloca3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh1.exe_1426]
+RelativePath=JIT\jit64\gc\misc\eh1\eh1.exe
+WorkingDir=JIT\jit64\gc\misc\eh1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fgtest1.exe_1427]
+RelativePath=JIT\jit64\gc\misc\fgtest1\fgtest1.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fgtest2.exe_1428]
+RelativePath=JIT\jit64\gc\misc\fgtest2\fgtest2.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[funclet.exe_1429]
+RelativePath=JIT\jit64\gc\misc\funclet\funclet.exe
+WorkingDir=JIT\jit64\gc\misc\funclet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[gc-pinned-code-motion.exe_1430]
+RelativePath=JIT\jit64\gc\misc\gc-pinned-code-motion\gc-pinned-code-motion.exe
+WorkingDir=JIT\jit64\gc\misc\gc-pinned-code-motion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcparaminreg.exe_1431]
+RelativePath=JIT\jit64\gc\misc\gcparaminreg\gcparaminreg.exe
+WorkingDir=JIT\jit64\gc\misc\gcparaminreg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ret_struct_test1.exe_1432]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test1\ret_struct_test1.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ret_struct_test4.exe_1433]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test4\ret_struct_test4.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simple1.exe_1434]
+RelativePath=JIT\jit64\gc\misc\simple1\simple1.exe
+WorkingDir=JIT\jit64\gc\misc\simple1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct1.exe_1435]
+RelativePath=JIT\jit64\gc\misc\struct1\struct1.exe
+WorkingDir=JIT\jit64\gc\misc\struct1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct1_2.exe_1436]
+RelativePath=JIT\jit64\gc\misc\struct1_2\struct1_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct1_4.exe_1437]
+RelativePath=JIT\jit64\gc\misc\struct1_4\struct1_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct1_5.exe_1438]
+RelativePath=JIT\jit64\gc\misc\struct1_5\struct1_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct2.exe_1439]
+RelativePath=JIT\jit64\gc\misc\struct2\struct2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct2_2.exe_1440]
+RelativePath=JIT\jit64\gc\misc\struct2_2\struct2_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct2_4.exe_1441]
+RelativePath=JIT\jit64\gc\misc\struct2_4\struct2_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct2_5.exe_1442]
+RelativePath=JIT\jit64\gc\misc\struct2_5\struct2_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct2_5_2.exe_1443]
+RelativePath=JIT\jit64\gc\misc\struct2_5_2\struct2_5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct3.exe_1444]
+RelativePath=JIT\jit64\gc\misc\struct3\struct3.exe
+WorkingDir=JIT\jit64\gc\misc\struct3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct3_2.exe_1445]
+RelativePath=JIT\jit64\gc\misc\struct3_2\struct3_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct3_4.exe_1446]
+RelativePath=JIT\jit64\gc\misc\struct3_4\struct3_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct3_5.exe_1447]
+RelativePath=JIT\jit64\gc\misc\struct3_5\struct3_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct4.exe_1448]
+RelativePath=JIT\jit64\gc\misc\struct4\struct4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct4_2.exe_1449]
+RelativePath=JIT\jit64\gc\misc\struct4_2\struct4_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct4_4.exe_1450]
+RelativePath=JIT\jit64\gc\misc\struct4_4\struct4_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct4_5.exe_1451]
+RelativePath=JIT\jit64\gc\misc\struct4_5\struct4_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct5.exe_1452]
+RelativePath=JIT\jit64\gc\misc\struct5\struct5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct5_2.exe_1453]
+RelativePath=JIT\jit64\gc\misc\struct5_2\struct5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct5_4.exe_1454]
+RelativePath=JIT\jit64\gc\misc\struct5_4\struct5_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct5_5.exe_1455]
+RelativePath=JIT\jit64\gc\misc\struct5_5\struct5_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct6.exe_1456]
+RelativePath=JIT\jit64\gc\misc\struct6\struct6.exe
+WorkingDir=JIT\jit64\gc\misc\struct6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct6_2.exe_1457]
+RelativePath=JIT\jit64\gc\misc\struct6_2\struct6_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2988
+HostStyle=Any
+[struct6_4.exe_1458]
+RelativePath=JIT\jit64\gc\misc\struct6_4\struct6_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct6_5.exe_1459]
+RelativePath=JIT\jit64\gc\misc\struct6_5\struct6_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct7_1.exe_1460]
+RelativePath=JIT\jit64\gc\misc\struct7_1\struct7_1.exe
+WorkingDir=JIT\jit64\gc\misc\struct7_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct8.exe_1461]
+RelativePath=JIT\jit64\gc\misc\struct8\struct8.exe
+WorkingDir=JIT\jit64\gc\misc\struct8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct9.exe_1462]
+RelativePath=JIT\jit64\gc\misc\struct9\struct9.exe
+WorkingDir=JIT\jit64\gc\misc\struct9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[struct9_2.exe_1463]
+RelativePath=JIT\jit64\gc\misc\struct9_2\struct9_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct9_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_1.exe_1464]
+RelativePath=JIT\jit64\gc\misc\structfp1_1\structfp1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_2.exe_1465]
+RelativePath=JIT\jit64\gc\misc\structfp1_2\structfp1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_3.exe_1466]
+RelativePath=JIT\jit64\gc\misc\structfp1_3\structfp1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_4.exe_1467]
+RelativePath=JIT\jit64\gc\misc\structfp1_4\structfp1_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_5.exe_1468]
+RelativePath=JIT\jit64\gc\misc\structfp1_5\structfp1_5.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp1_6.exe_1469]
+RelativePath=JIT\jit64\gc\misc\structfp1_6\structfp1_6.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp2_1.exe_1470]
+RelativePath=JIT\jit64\gc\misc\structfp2_1\structfp2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp2_2.exe_1471]
+RelativePath=JIT\jit64\gc\misc\structfp2_2\structfp2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp2_3.exe_1472]
+RelativePath=JIT\jit64\gc\misc\structfp2_3\structfp2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp2_4.exe_1473]
+RelativePath=JIT\jit64\gc\misc\structfp2_4\structfp2_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp3_1.exe_1474]
+RelativePath=JIT\jit64\gc\misc\structfp3_1\structfp3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp3_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp4_1.exe_1475]
+RelativePath=JIT\jit64\gc\misc\structfp4_1\structfp4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp5_1.exe_1476]
+RelativePath=JIT\jit64\gc\misc\structfp5_1\structfp5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfp6_1.exe_1477]
+RelativePath=JIT\jit64\gc\misc\structfp6_1\structfp6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structfpseh5_1.exe_1478]
+RelativePath=JIT\jit64\gc\misc\structfpseh5_1\structfpseh5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[structfpseh6_1.exe_1479]
+RelativePath=JIT\jit64\gc\misc\structfpseh6_1\structfpseh6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[structref1_1.exe_1480]
+RelativePath=JIT\jit64\gc\misc\structref1_1\structref1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structref1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret1_1.exe_1481]
+RelativePath=JIT\jit64\gc\misc\structret1_1\structret1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret1_2.exe_1482]
+RelativePath=JIT\jit64\gc\misc\structret1_2\structret1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret1_3.exe_1483]
+RelativePath=JIT\jit64\gc\misc\structret1_3\structret1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret2_1.exe_1484]
+RelativePath=JIT\jit64\gc\misc\structret2_1\structret2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret2_2.exe_1485]
+RelativePath=JIT\jit64\gc\misc\structret2_2\structret2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret2_3.exe_1486]
+RelativePath=JIT\jit64\gc\misc\structret2_3\structret2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret3_1.exe_1487]
+RelativePath=JIT\jit64\gc\misc\structret3_1\structret3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret3_2.exe_1488]
+RelativePath=JIT\jit64\gc\misc\structret3_2\structret3_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret3_3.exe_1489]
+RelativePath=JIT\jit64\gc\misc\structret3_3\structret3_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret4_1.exe_1490]
+RelativePath=JIT\jit64\gc\misc\structret4_1\structret4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret4_2.exe_1491]
+RelativePath=JIT\jit64\gc\misc\structret4_2\structret4_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret4_3.exe_1492]
+RelativePath=JIT\jit64\gc\misc\structret4_3\structret4_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret5_1.exe_1493]
+RelativePath=JIT\jit64\gc\misc\structret5_1\structret5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret5_2.exe_1494]
+RelativePath=JIT\jit64\gc\misc\structret5_2\structret5_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret5_3.exe_1495]
+RelativePath=JIT\jit64\gc\misc\structret5_3\structret5_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret6_1.exe_1496]
+RelativePath=JIT\jit64\gc\misc\structret6_1\structret6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret6_2.exe_1497]
+RelativePath=JIT\jit64\gc\misc\structret6_2\structret6_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structret6_3.exe_1498]
+RelativePath=JIT\jit64\gc\misc\structret6_3\structret6_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structva1_1.exe_1499]
+RelativePath=JIT\jit64\gc\misc\structva1_1\structva1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structva1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1500]
+RelativePath=JIT\jit64\gc\misc\test1\test1.exe
+WorkingDir=JIT\jit64\gc\misc\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test2.exe_1501]
+RelativePath=JIT\jit64\gc\misc\test2\test2.exe
+WorkingDir=JIT\jit64\gc\misc\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test3.exe_1502]
+RelativePath=JIT\jit64\gc\misc\test3\test3.exe
+WorkingDir=JIT\jit64\gc\misc\test3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test_noalloca.exe_1503]
+RelativePath=JIT\jit64\gc\misc\test_noalloca\test_noalloca.exe
+WorkingDir=JIT\jit64\gc\misc\test_noalloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vbil.exe_1504]
+RelativePath=JIT\jit64\gc\misc\vbil\vbil.exe
+WorkingDir=JIT\jit64\gc\misc\vbil
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[143837.exe_1505]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\143837\143837.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\143837
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[339415.exe_1506]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\339415\339415.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\339415
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[hfa_nd0A_d.exe_1507]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_d\hfa_nd0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0A_r.exe_1508]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_r\hfa_nd0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1A_d.exe_1509]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_d\hfa_nd1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1A_r.exe_1510]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_r\hfa_nd1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2A_d.exe_1511]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_d\hfa_nd2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2A_r.exe_1512]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_r\hfa_nd2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0A_d.exe_1513]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_d\hfa_nf0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0A_r.exe_1514]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_r\hfa_nf0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1A_d.exe_1515]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_d\hfa_nf1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1A_r.exe_1516]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_r\hfa_nf1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2A_d.exe_1517]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_d\hfa_nf2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2A_r.exe_1518]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_r\hfa_nf2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0A_d.exe_1519]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_d\hfa_sd0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0A_r.exe_1520]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_r\hfa_sd0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1A_d.exe_1521]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_d\hfa_sd1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1A_r.exe_1522]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_r\hfa_sd1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2A_d.exe_1523]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_d\hfa_sd2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2A_r.exe_1524]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_r\hfa_sd2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0A_d.exe_1525]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_d\hfa_sf0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0A_r.exe_1526]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_r\hfa_sf0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1A_d.exe_1527]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_d\hfa_sf1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1A_r.exe_1528]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_r\hfa_sf1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2A_d.exe_1529]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_d\hfa_sf2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2A_r.exe_1530]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_r\hfa_sf2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0B_d.exe_1531]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_d\hfa_nd0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0B_r.exe_1532]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_r\hfa_nd0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2B_d.exe_1533]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_d\hfa_nd2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2B_r.exe_1534]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_r\hfa_nd2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0B_d.exe_1535]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_d\hfa_nf0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0B_r.exe_1536]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_r\hfa_nf0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2B_d.exe_1537]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_d\hfa_nf2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2B_r.exe_1538]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_r\hfa_nf2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0B_d.exe_1539]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_d\hfa_sd0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0B_r.exe_1540]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_r\hfa_sd0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2B_d.exe_1541]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_d\hfa_sd2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2B_r.exe_1542]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_r\hfa_sd2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0B_d.exe_1543]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_d\hfa_sf0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0B_r.exe_1544]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_r\hfa_sf0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2B_d.exe_1545]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_d\hfa_sf2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2B_r.exe_1546]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_r\hfa_sf2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0C_d.exe_1547]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_d\hfa_nd0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0C_r.exe_1548]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_r\hfa_nd0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1C_d.exe_1549]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_d\hfa_nd1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1C_r.exe_1550]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_r\hfa_nd1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2C_d.exe_1551]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_d\hfa_nd2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2C_r.exe_1552]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_r\hfa_nd2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0C_d.exe_1553]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_d\hfa_nf0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0C_r.exe_1554]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_r\hfa_nf0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1C_d.exe_1555]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_d\hfa_nf1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1C_r.exe_1556]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_r\hfa_nf1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2C_d.exe_1557]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_d\hfa_nf2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2C_r.exe_1558]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_r\hfa_nf2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0C_d.exe_1559]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_d\hfa_sd0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0C_r.exe_1560]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_r\hfa_sd0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1C_d.exe_1561]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_d\hfa_sd1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1C_r.exe_1562]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_r\hfa_sd1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2C_d.exe_1563]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_d\hfa_sd2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2C_r.exe_1564]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_r\hfa_sd2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0C_d.exe_1565]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_d\hfa_sf0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0C_r.exe_1566]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_r\hfa_sf0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1C_d.exe_1567]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_d\hfa_sf1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1C_r.exe_1568]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_r\hfa_sf1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2C_d.exe_1569]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_d\hfa_sf2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2C_r.exe_1570]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_r\hfa_sf2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0E_d.exe_1571]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_d\hfa_nd0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0E_r.exe_1572]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_r\hfa_nd0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1E_d.exe_1573]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_d\hfa_nd1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1E_r.exe_1574]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_r\hfa_nd1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2E_d.exe_1575]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_d\hfa_nd2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2E_r.exe_1576]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_r\hfa_nd2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0E_d.exe_1577]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_d\hfa_nf0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0E_r.exe_1578]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_r\hfa_nf0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1E_d.exe_1579]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_d\hfa_nf1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1E_r.exe_1580]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_r\hfa_nf1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2E_d.exe_1581]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_d\hfa_nf2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2E_r.exe_1582]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_r\hfa_nf2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0E_d.exe_1583]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_d\hfa_sd0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0E_r.exe_1584]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_r\hfa_sd0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1E_d.exe_1585]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_d\hfa_sd1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1E_r.exe_1586]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_r\hfa_sd1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2E_d.exe_1587]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_d\hfa_sd2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2E_r.exe_1588]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_r\hfa_sd2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0E_d.exe_1589]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_d\hfa_sf0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0E_r.exe_1590]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_r\hfa_sf0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1E_d.exe_1591]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_d\hfa_sf1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1E_r.exe_1592]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_r\hfa_sf1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2E_d.exe_1593]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_d\hfa_sf2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2E_r.exe_1594]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_r\hfa_sf2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0G_d.exe_1595]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_d\hfa_nd0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd0G_r.exe_1596]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_r\hfa_nd0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1G_d.exe_1597]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_d\hfa_nd1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd1G_r.exe_1598]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_r\hfa_nd1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2G_d.exe_1599]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_d\hfa_nd2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nd2G_r.exe_1600]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_r\hfa_nd2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0G_d.exe_1601]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_d\hfa_nf0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf0G_r.exe_1602]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_r\hfa_nf0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1G_d.exe_1603]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_d\hfa_nf1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf1G_r.exe_1604]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_r\hfa_nf1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2G_d.exe_1605]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_d\hfa_nf2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_nf2G_r.exe_1606]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_r\hfa_nf2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0G_d.exe_1607]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_d\hfa_sd0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd0G_r.exe_1608]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_r\hfa_sd0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1G_d.exe_1609]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_d\hfa_sd1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd1G_r.exe_1610]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_r\hfa_sd1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2G_d.exe_1611]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_d\hfa_sd2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sd2G_r.exe_1612]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_r\hfa_sd2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0G_d.exe_1613]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_d\hfa_sf0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf0G_r.exe_1614]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_r\hfa_sf0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1G_d.exe_1615]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_d\hfa_sf1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf1G_r.exe_1616]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_r\hfa_sf1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2G_d.exe_1617]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_d\hfa_sf2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hfa_sf2G_r.exe_1618]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_r\hfa_sf2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call03_dynamic.exe_1619]
+RelativePath=JIT\jit64\localloc\call\call03_dynamic\call03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call03_large.exe_1620]
+RelativePath=JIT\jit64\localloc\call\call03_large\call03_large.exe
+WorkingDir=JIT\jit64\localloc\call\call03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call03_small.exe_1621]
+RelativePath=JIT\jit64\localloc\call\call03_small\call03_small.exe
+WorkingDir=JIT\jit64\localloc\call\call03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call04_dynamic.exe_1622]
+RelativePath=JIT\jit64\localloc\call\call04_dynamic\call04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call04_large.exe_1623]
+RelativePath=JIT\jit64\localloc\call\call04_large\call04_large.exe
+WorkingDir=JIT\jit64\localloc\call\call04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call04_small.exe_1624]
+RelativePath=JIT\jit64\localloc\call\call04_small\call04_small.exe
+WorkingDir=JIT\jit64\localloc\call\call04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call05_dynamic.exe_1625]
+RelativePath=JIT\jit64\localloc\call\call05_dynamic\call05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call05_large.exe_1626]
+RelativePath=JIT\jit64\localloc\call\call05_large\call05_large.exe
+WorkingDir=JIT\jit64\localloc\call\call05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call05_small.exe_1627]
+RelativePath=JIT\jit64\localloc\call\call05_small\call05_small.exe
+WorkingDir=JIT\jit64\localloc\call\call05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call06_dynamic.exe_1628]
+RelativePath=JIT\jit64\localloc\call\call06_dynamic\call06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call06_large.exe_1629]
+RelativePath=JIT\jit64\localloc\call\call06_large\call06_large.exe
+WorkingDir=JIT\jit64\localloc\call\call06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call06_small.exe_1630]
+RelativePath=JIT\jit64\localloc\call\call06_small\call06_small.exe
+WorkingDir=JIT\jit64\localloc\call\call06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call07_dynamic.exe_1631]
+RelativePath=JIT\jit64\localloc\call\call07_dynamic\call07_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call07_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call07_small.exe_1632]
+RelativePath=JIT\jit64\localloc\call\call07_small\call07_small.exe
+WorkingDir=JIT\jit64\localloc\call\call07_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh01_dynamic.exe_1633]
+RelativePath=JIT\jit64\localloc\eh\eh01_dynamic\eh01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh01_large.exe_1634]
+RelativePath=JIT\jit64\localloc\eh\eh01_large\eh01_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh01_small.exe_1635]
+RelativePath=JIT\jit64\localloc\eh\eh01_small\eh01_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh02_dynamic.exe_1636]
+RelativePath=JIT\jit64\localloc\eh\eh02_dynamic\eh02_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh02_large.exe_1637]
+RelativePath=JIT\jit64\localloc\eh\eh02_large\eh02_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh02_small.exe_1638]
+RelativePath=JIT\jit64\localloc\eh\eh02_small\eh02_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh03_dynamic.exe_1639]
+RelativePath=JIT\jit64\localloc\eh\eh03_dynamic\eh03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh03_large.exe_1640]
+RelativePath=JIT\jit64\localloc\eh\eh03_large\eh03_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh03_small.exe_1641]
+RelativePath=JIT\jit64\localloc\eh\eh03_small\eh03_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh04_dynamic.exe_1642]
+RelativePath=JIT\jit64\localloc\eh\eh04_dynamic\eh04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh04_large.exe_1643]
+RelativePath=JIT\jit64\localloc\eh\eh04_large\eh04_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh04_small.exe_1644]
+RelativePath=JIT\jit64\localloc\eh\eh04_small\eh04_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh05_dynamic.exe_1645]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_dynamic\eh05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh05_large.exe_1646]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_large\eh05_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh05_small.exe_1647]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_small\eh05_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh06_dynamic.exe_1648]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_dynamic\eh06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh06_large.exe_1649]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_large\eh06_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh06_small.exe_1650]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_small\eh06_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh07_dynamic.exe_1651]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_dynamic\eh07_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh07_large.exe_1652]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_large\eh07_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh07_small.exe_1653]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_small\eh07_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh08_dynamic.exe_1654]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_dynamic\eh08_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh08_large.exe_1655]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_large\eh08_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh08_small.exe_1656]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_small\eh08_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh09_dynamic.exe_1657]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_dynamic\eh09_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh09_large.exe_1658]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_large\eh09_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh09_small.exe_1659]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_small\eh09_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh11_dynamic.exe_1660]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_dynamic\eh11_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh11_large.exe_1661]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_large\eh11_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh11_small.exe_1662]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_small\eh11_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh12_dynamic.exe_1663]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_dynamic\eh12_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh12_large.exe_1664]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_large\eh12_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh12_small.exe_1665]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_small\eh12_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh13_dynamic.exe_1666]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_dynamic\eh13_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh13_large.exe_1667]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_large\eh13_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[eh13_small.exe_1668]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_small\eh13_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind01_dynamic.exe_1669]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_dynamic\unwind01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind01_large.exe_1670]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_large\unwind01_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind01_small.exe_1671]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_small\unwind01_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind02_dynamic.exe_1672]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_dynamic\unwind02_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind02_large.exe_1673]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_large\unwind02_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind02_small.exe_1674]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_small\unwind02_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind03_dynamic.exe_1675]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_dynamic\unwind03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind03_large.exe_1676]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_large\unwind03_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind03_small.exe_1677]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_small\unwind03_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind04_dynamic.exe_1678]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_dynamic\unwind04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind04_large.exe_1679]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_large\unwind04_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind04_small.exe_1680]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_small\unwind04_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind05_dynamic.exe_1681]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_dynamic\unwind05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind05_large.exe_1682]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_large\unwind05_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind05_small.exe_1683]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_small\unwind05_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind06_dynamic.exe_1684]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_dynamic\unwind06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind06_large.exe_1685]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_large\unwind06_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unwind06_small.exe_1686]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_small\unwind06_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[verify01_dynamic.exe_1687]
+RelativePath=JIT\jit64\localloc\verify\verify01_dynamic\verify01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[verify01_large.exe_1688]
+RelativePath=JIT\jit64\localloc\verify\verify01_large\verify01_large.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[verify01_small.exe_1689]
+RelativePath=JIT\jit64\localloc\verify\verify01_small\verify01_small.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[zeroinit01_large.exe_1690]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroinit01_large\zeroinit01_large.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroinit01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroInit01_small.exe_1691]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroInit01_small\zeroInit01_small.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroInit01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mcc_i00.exe_1692]
+RelativePath=JIT\jit64\mcc\interop\mcc_i00\mcc_i00.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i00
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i01.exe_1693]
+RelativePath=JIT\jit64\mcc\interop\mcc_i01\mcc_i01.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i02.exe_1694]
+RelativePath=JIT\jit64\mcc\interop\mcc_i02\mcc_i02.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i03.exe_1695]
+RelativePath=JIT\jit64\mcc\interop\mcc_i03\mcc_i03.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i04.exe_1696]
+RelativePath=JIT\jit64\mcc\interop\mcc_i04\mcc_i04.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i05.exe_1697]
+RelativePath=JIT\jit64\mcc\interop\mcc_i05\mcc_i05.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i06.exe_1698]
+RelativePath=JIT\jit64\mcc\interop\mcc_i06\mcc_i06.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i07.exe_1699]
+RelativePath=JIT\jit64\mcc\interop\mcc_i07\mcc_i07.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i10.exe_1700]
+RelativePath=JIT\jit64\mcc\interop\mcc_i10\mcc_i10.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i11.exe_1701]
+RelativePath=JIT\jit64\mcc\interop\mcc_i11\mcc_i11.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i12.exe_1702]
+RelativePath=JIT\jit64\mcc\interop\mcc_i12\mcc_i12.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i13.exe_1703]
+RelativePath=JIT\jit64\mcc\interop\mcc_i13\mcc_i13.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i14.exe_1704]
+RelativePath=JIT\jit64\mcc\interop\mcc_i14\mcc_i14.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i15.exe_1705]
+RelativePath=JIT\jit64\mcc\interop\mcc_i15\mcc_i15.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i16.exe_1706]
+RelativePath=JIT\jit64\mcc\interop\mcc_i16\mcc_i16.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i17.exe_1707]
+RelativePath=JIT\jit64\mcc\interop\mcc_i17\mcc_i17.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i30.exe_1708]
+RelativePath=JIT\jit64\mcc\interop\mcc_i30\mcc_i30.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i31.exe_1709]
+RelativePath=JIT\jit64\mcc\interop\mcc_i31\mcc_i31.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i31
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i32.exe_1710]
+RelativePath=JIT\jit64\mcc\interop\mcc_i32\mcc_i32.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i33.exe_1711]
+RelativePath=JIT\jit64\mcc\interop\mcc_i33\mcc_i33.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i33
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i34.exe_1712]
+RelativePath=JIT\jit64\mcc\interop\mcc_i34\mcc_i34.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i34
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i35.exe_1713]
+RelativePath=JIT\jit64\mcc\interop\mcc_i35\mcc_i35.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i35
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i36.exe_1714]
+RelativePath=JIT\jit64\mcc\interop\mcc_i36\mcc_i36.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i36
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i37.exe_1715]
+RelativePath=JIT\jit64\mcc\interop\mcc_i37\mcc_i37.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i37
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i50.exe_1716]
+RelativePath=JIT\jit64\mcc\interop\mcc_i50\mcc_i50.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i50
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i51.exe_1717]
+RelativePath=JIT\jit64\mcc\interop\mcc_i51\mcc_i51.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i51
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i52.exe_1718]
+RelativePath=JIT\jit64\mcc\interop\mcc_i52\mcc_i52.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i52
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i53.exe_1719]
+RelativePath=JIT\jit64\mcc\interop\mcc_i53\mcc_i53.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i53
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i54.exe_1720]
+RelativePath=JIT\jit64\mcc\interop\mcc_i54\mcc_i54.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i54
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i55.exe_1721]
+RelativePath=JIT\jit64\mcc\interop\mcc_i55\mcc_i55.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i55
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i56.exe_1722]
+RelativePath=JIT\jit64\mcc\interop\mcc_i56\mcc_i56.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i56
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i57.exe_1723]
+RelativePath=JIT\jit64\mcc\interop\mcc_i57\mcc_i57.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i57
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i60.exe_1724]
+RelativePath=JIT\jit64\mcc\interop\mcc_i60\mcc_i60.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i60
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i61.exe_1725]
+RelativePath=JIT\jit64\mcc\interop\mcc_i61\mcc_i61.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i61
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i62.exe_1726]
+RelativePath=JIT\jit64\mcc\interop\mcc_i62\mcc_i62.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i62
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i63.exe_1727]
+RelativePath=JIT\jit64\mcc\interop\mcc_i63\mcc_i63.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i63
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i64.exe_1728]
+RelativePath=JIT\jit64\mcc\interop\mcc_i64\mcc_i64.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i65.exe_1729]
+RelativePath=JIT\jit64\mcc\interop\mcc_i65\mcc_i65.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i65
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i66.exe_1730]
+RelativePath=JIT\jit64\mcc\interop\mcc_i66\mcc_i66.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i66
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i67.exe_1731]
+RelativePath=JIT\jit64\mcc\interop\mcc_i67\mcc_i67.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i67
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i70.exe_1732]
+RelativePath=JIT\jit64\mcc\interop\mcc_i70\mcc_i70.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i70
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i71.exe_1733]
+RelativePath=JIT\jit64\mcc\interop\mcc_i71\mcc_i71.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i71
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i72.exe_1734]
+RelativePath=JIT\jit64\mcc\interop\mcc_i72\mcc_i72.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i72
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i73.exe_1735]
+RelativePath=JIT\jit64\mcc\interop\mcc_i73\mcc_i73.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i73
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i74.exe_1736]
+RelativePath=JIT\jit64\mcc\interop\mcc_i74\mcc_i74.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i74
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i75.exe_1737]
+RelativePath=JIT\jit64\mcc\interop\mcc_i75\mcc_i75.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i75
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i76.exe_1738]
+RelativePath=JIT\jit64\mcc\interop\mcc_i76\mcc_i76.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i76
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i77.exe_1739]
+RelativePath=JIT\jit64\mcc\interop\mcc_i77\mcc_i77.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i77
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i80.exe_1740]
+RelativePath=JIT\jit64\mcc\interop\mcc_i80\mcc_i80.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i80
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i81.exe_1741]
+RelativePath=JIT\jit64\mcc\interop\mcc_i81\mcc_i81.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i81
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i82.exe_1742]
+RelativePath=JIT\jit64\mcc\interop\mcc_i82\mcc_i82.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i82
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i83.exe_1743]
+RelativePath=JIT\jit64\mcc\interop\mcc_i83\mcc_i83.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i83
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i84.exe_1744]
+RelativePath=JIT\jit64\mcc\interop\mcc_i84\mcc_i84.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i84
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i85.exe_1745]
+RelativePath=JIT\jit64\mcc\interop\mcc_i85\mcc_i85.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i85
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i86.exe_1746]
+RelativePath=JIT\jit64\mcc\interop\mcc_i86\mcc_i86.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i86
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mcc_i87.exe_1747]
+RelativePath=JIT\jit64\mcc\interop\mcc_i87\mcc_i87.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i87
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CGRecurseAAA_d.exe_1748]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d\CGRecurseAAA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAA_do.exe_1749]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do\CGRecurseAAA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAA_r.exe_1750]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r\CGRecurseAAA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAA_ro.exe_1751]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro\CGRecurseAAA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAC_d.exe_1752]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d\CGRecurseAAC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAC_do.exe_1753]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do\CGRecurseAAC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAC_r.exe_1754]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r\CGRecurseAAC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseAAC_ro.exe_1755]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro\CGRecurseAAC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACA_d.exe_1756]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d\CGRecurseACA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACA_do.exe_1757]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do\CGRecurseACA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACA_r.exe_1758]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r\CGRecurseACA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACA_ro.exe_1759]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro\CGRecurseACA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACC_d.exe_1760]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d\CGRecurseACC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACC_do.exe_1761]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do\CGRecurseACC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACC_r.exe_1762]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r\CGRecurseACC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CGRecurseACC_ro.exe_1763]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro\CGRecurseACC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress1_d.exe_1764]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_d\CgStress1_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+HostStyle=Any
+[CgStress1_do.exe_1765]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_do\CgStress1_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+HostStyle=Any
+[CgStress1_r.exe_1766]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_r\CgStress1_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+HostStyle=Any
+[CgStress1_ro.exe_1767]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_ro\CgStress1_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+HostStyle=Any
+[CgStress2_d.exe_1768]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_d\CgStress2_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress2_do.exe_1769]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_do\CgStress2_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress2_r.exe_1770]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_r\CgStress2_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress2_ro.exe_1771]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_ro\CgStress2_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress3_d.exe_1772]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_d\CgStress3_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress3_do.exe_1773]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_do\CgStress3_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress3_r.exe_1774]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_r\CgStress3_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CgStress3_ro.exe_1775]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_ro\CgStress3_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jmp_dbg.exe_1776]
+RelativePath=JIT\jit64\opt\cg\il\jmp_dbg\jmp_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jmp_impl.exe_1777]
+RelativePath=JIT\jit64\opt\cg\il\jmp_impl\jmp_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_impl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jmp_opt.exe_1778]
+RelativePath=JIT\jit64\opt\cg\il\jmp_opt\jmp_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jmp_ret.exe_1779]
+RelativePath=JIT\jit64\opt\cg\il\jmp_ret\jmp_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldftn_dbg.exe_1780]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_dbg\ldftn_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldftn_impl.exe_1781]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_impl\ldftn_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_impl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldftn_opt.exe_1782]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_opt\ldftn_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ldftn_ret.exe_1783]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_ret\ldftn_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cprop001_d.exe_1784]
+RelativePath=JIT\jit64\opt\cprop\cprop001_d\cprop001_d.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cprop001_do.exe_1785]
+RelativePath=JIT\jit64\opt\cprop\cprop001_do\cprop001_do.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cprop001_r.exe_1786]
+RelativePath=JIT\jit64\opt\cprop\cprop001_r\cprop001_r.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cprop001_ro.exe_1787]
+RelativePath=JIT\jit64\opt\cprop\cprop001_ro\cprop001_ro.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cprop002.exe_1788]
+RelativePath=JIT\jit64\opt\cprop\cprop002\cprop002.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_844071.exe_1789]
+RelativePath=JIT\jit64\opt\cprop\Dev10_844071\Dev10_844071.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_844071
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_884217_IL.exe_1790]
+RelativePath=JIT\jit64\opt\cprop\Dev10_884217_IL\Dev10_884217_IL.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_884217_IL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[implicitDownConv.exe_1791]
+RelativePath=JIT\jit64\opt\cprop\implicitDownConv\implicitDownConv.exe
+WorkingDir=JIT\jit64\opt\cprop\implicitDownConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arrayexpr1.exe_1792]
+RelativePath=JIT\jit64\opt\cse\arrayexpr1\arrayexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arrayexpr2_d_loop_try.exe_1793]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_d_loop_try\arrayexpr2_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arrayexpr2_r.exe_1794]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r\arrayexpr2_r.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arrayexpr2_ro_loop.exe_1795]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_ro_loop\arrayexpr2_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arrayexpr2_r_loop.exe_1796]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop\arrayexpr2_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arrayexpr2_r_loop_try.exe_1797]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop_try\arrayexpr2_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arrayexpr2_r_try.exe_1798]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_try\arrayexpr2_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fieldexpr1.exe_1799]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1\fieldexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fieldexpr1_1.exe_1800]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1_1\fieldexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fieldexpr2.exe_1801]
+RelativePath=JIT\jit64\opt\cse\fieldexpr2\fieldexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[fieldExprUnchecked1.exe_1802]
+RelativePath=JIT\jit64\opt\cse\fieldExprUnchecked1\fieldExprUnchecked1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldExprUnchecked1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[HugeArray.exe_1803]
+RelativePath=JIT\jit64\opt\cse\HugeArray\HugeArray.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[HugeArray1.exe_1804]
+RelativePath=JIT\jit64\opt\cse\HugeArray1\HugeArray1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[hugeexpr1.exe_1805]
+RelativePath=JIT\jit64\opt\cse\hugeexpr1\hugeexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[HugeField1.exe_1806]
+RelativePath=JIT\jit64\opt\cse\HugeField1\HugeField1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[HugeField2.exe_1807]
+RelativePath=JIT\jit64\opt\cse\HugeField2\HugeField2.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[hugeSimpleExpr1.exe_1808]
+RelativePath=JIT\jit64\opt\cse\hugeSimpleExpr1\hugeSimpleExpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeSimpleExpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mixedexpr1_d_loop_try.exe_1809]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_d_loop_try\mixedexpr1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixedexpr1_r.exe_1810]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r\mixedexpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mixedexpr1_ro_loop.exe_1811]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_ro_loop\mixedexpr1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixedexpr1_r_loop.exe_1812]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop\mixedexpr1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixedexpr1_r_loop_try.exe_1813]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop_try\mixedexpr1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixedexpr1_r_try.exe_1814]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_try\mixedexpr1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pointerexpr1.exe_1815]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1\pointerexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[pointerexpr1_1.exe_1816]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1_1\pointerexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr1.exe_1817]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1\simpleexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr1_1.exe_1818]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1_1\simpleexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr2.exe_1819]
+RelativePath=JIT\jit64\opt\cse\simpleexpr2\simpleexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr3.exe_1820]
+RelativePath=JIT\jit64\opt\cse\simpleexpr3\simpleexpr3.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr4_d_loop_try.exe_1821]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_d_loop_try\simpleexpr4_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpleexpr4_r.exe_1822]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r\simpleexpr4_r.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simpleexpr4_ro_loop.exe_1823]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_ro_loop\simpleexpr4_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpleexpr4_r_loop.exe_1824]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop\simpleexpr4_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpleexpr4_r_loop_try.exe_1825]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop_try\simpleexpr4_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpleexpr4_r_try.exe_1826]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_try\simpleexpr4_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExpr1_1.exe_1827]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_1\staticFieldExpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[staticFieldExpr1_d_loop_try.exe_1828]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try\staticFieldExpr1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExpr1_r.exe_1829]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r\staticFieldExpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[staticFieldExpr1_ro_loop.exe_1830]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop\staticFieldExpr1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExpr1_r_loop.exe_1831]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop\staticFieldExpr1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExpr1_r_loop_try.exe_1832]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try\staticFieldExpr1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExpr1_r_try.exe_1833]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_try\staticFieldExpr1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExprUnchecked1_d_loop_try.exe_1834]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try\staticFieldExprUnchecked1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExprUnchecked1_r.exe_1835]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r\staticFieldExprUnchecked1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[staticFieldExprUnchecked1_ro_loop.exe_1836]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop\staticFieldExprUnchecked1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExprUnchecked1_r_loop.exe_1837]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop\staticFieldExprUnchecked1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExprUnchecked1_r_loop_try.exe_1838]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try\staticFieldExprUnchecked1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[staticFieldExprUnchecked1_r_try.exe_1839]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try\staticFieldExprUnchecked1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilefield.exe_1840]
+RelativePath=JIT\jit64\opt\cse\volatilefield\volatilefield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilefield
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatilestaticfield.exe_1841]
+RelativePath=JIT\jit64\opt\cse\volatilestaticfield\volatilestaticfield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilestaticfield
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[VolatileTest_op_add.exe_1842]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_add\VolatileTest_op_add.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_and.exe_1843]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_and\VolatileTest_op_and.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_and
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_div.exe_1844]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_div\VolatileTest_op_div.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_mod.exe_1845]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mod\VolatileTest_op_mod.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_mul.exe_1846]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mul\VolatileTest_op_mul.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_or.exe_1847]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_or\VolatileTest_op_or.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_or
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_shr.exe_1848]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_shr\VolatileTest_op_shr.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_shr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_sub.exe_1849]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_sub\VolatileTest_op_sub.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VolatileTest_op_xor.exe_1850]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_xor\VolatileTest_op_xor.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_xor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[caninline_d.exe_1851]
+RelativePath=JIT\jit64\opt\inl\caninline_d\caninline_d.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[caninline_do.exe_1852]
+RelativePath=JIT\jit64\opt\inl\caninline_do\caninline_do.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[caninline_r.exe_1853]
+RelativePath=JIT\jit64\opt\inl\caninline_r\caninline_r.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[caninline_ro.exe_1854]
+RelativePath=JIT\jit64\opt\inl\caninline_ro\caninline_ro.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[inl001.exe_1855]
+RelativePath=JIT\jit64\opt\inl\inl001\inl001.exe
+WorkingDir=JIT\jit64\opt\inl\inl001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lim_001.exe_1856]
+RelativePath=JIT\jit64\opt\lim\lim_001\lim_001.exe
+WorkingDir=JIT\jit64\opt\lim\lim_001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lim_002.exe_1857]
+RelativePath=JIT\jit64\opt\lim\lim_002\lim_002.exe
+WorkingDir=JIT\jit64\opt\lim\lim_002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lur_01.exe_1858]
+RelativePath=JIT\jit64\opt\lur\lur_01\lur_01.exe
+WorkingDir=JIT\jit64\opt\lur\lur_01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lur_02.exe_1859]
+RelativePath=JIT\jit64\opt\lur\lur_02\lur_02.exe
+WorkingDir=JIT\jit64\opt\lur\lur_02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[osr001.exe_1860]
+RelativePath=JIT\jit64\opt\osr\osr001\osr001.exe
+WorkingDir=JIT\jit64\opt\osr\osr001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[osr015.exe_1861]
+RelativePath=JIT\jit64\opt\osr\osr015\osr015.exe
+WorkingDir=JIT\jit64\opt\osr\osr015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[193825_udo.exe_1862]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo\193825_udo.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[193825_uro.exe_1863]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro\193825_uro.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bne_dbg.exe_1864]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg\bne_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bne_opt.exe_1865]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt\bne_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[conv_dbg.exe_1866]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[conv_opt.exe_1867]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[div_dbg.exe_1868]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg\div_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[div_opt.exe_1869]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_opt\div_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul1_dbg.exe_1870]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg\mul1_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul1_opt.exe_1871]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt\mul1_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul_exception_dbg.exe_1872]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg\mul_exception_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[mul_exception_opt.exe_1873]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt\mul_exception_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[rem_dbg.exe_1874]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg\rem_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3263
+HostStyle=Any
+[rem_opt.exe_1875]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt\rem_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3263
+HostStyle=Any
+[conv_dbg.exe_1876]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[conv_opt.exe_1877]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[foo2_dbg.exe_1878]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg\foo2_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[foo2_opt.exe_1879]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt\foo2_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[foo_dbg.exe_1880]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg\foo_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[foo_opt.exe_1881]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt\foo_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBound_o.exe_1882]
+RelativePath=JIT\jit64\opt\rngchk\ArrayBound_o\ArrayBound_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayBound_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ArrayWith2Loops_o.exe_1883]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWith2Loops_o\ArrayWith2Loops_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWith2Loops_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ArrayWithFunc_o.exe_1884]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWithFunc_o\ArrayWithFunc_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWithFunc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ArrayWithThread_o.exe_1885]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWithThread_o\ArrayWithThread_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWithThread_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BadMatrixMul_o.exe_1886]
+RelativePath=JIT\jit64\opt\rngchk\BadMatrixMul_o\BadMatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\BadMatrixMul_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[JaggedArray_o.exe_1887]
+RelativePath=JIT\jit64\opt\rngchk\JaggedArray_o\JaggedArray_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\JaggedArray_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[MatrixMul_o.exe_1888]
+RelativePath=JIT\jit64\opt\rngchk\MatrixMul_o\MatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\MatrixMul_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[RngchkStress1_o.exe_1889]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress1_o\RngchkStress1_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress1_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[RngchkStress2_o.exe_1890]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress2_o\RngchkStress2_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress2_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[RngchkStress3.exe_1891]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress3\RngchkStress3.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[SimpleArray_01_o.exe_1892]
+RelativePath=JIT\jit64\opt\rngchk\SimpleArray_01_o\SimpleArray_01_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\SimpleArray_01_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[foo.exe_1893]
+RelativePath=JIT\jit64\regress\asurt\143616\foo\foo.exe
+WorkingDir=JIT\jit64\regress\asurt\143616\foo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[103087.exe_1894]
+RelativePath=JIT\jit64\regress\ddb\103087\103087\103087.exe
+WorkingDir=JIT\jit64\regress\ddb\103087\103087
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[113574.exe_1895]
+RelativePath=JIT\jit64\regress\ddb\113574\113574\113574.exe
+WorkingDir=JIT\jit64\regress\ddb\113574\113574
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[118414.exe_1896]
+RelativePath=JIT\jit64\regress\ddb\118414\118414\118414.exe
+WorkingDir=JIT\jit64\regress\ddb\118414\118414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[127931.exe_1897]
+RelativePath=JIT\jit64\regress\ddb\127931\127931\127931.exe
+WorkingDir=JIT\jit64\regress\ddb\127931\127931
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[132977.exe_1898]
+RelativePath=JIT\jit64\regress\ddb\132977\132977\132977.exe
+WorkingDir=JIT\jit64\regress\ddb\132977\132977
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ddb87766.exe_1899]
+RelativePath=JIT\jit64\regress\ddb\87766\ddb87766\ddb87766.exe
+WorkingDir=JIT\jit64\regress\ddb\87766\ddb87766
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[objectusedonlyinhandler.exe_1900]
+RelativePath=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler\objectusedonlyinhandler.exe
+WorkingDir=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simple.exe_1901]
+RelativePath=JIT\jit64\regress\ndpw\160545\simple\simple.exe
+WorkingDir=JIT\jit64\regress\ndpw\160545\simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[interior_pointer.exe_1902]
+RelativePath=JIT\jit64\regress\ndpw\21015\interior_pointer\interior_pointer.exe
+WorkingDir=JIT\jit64\regress\ndpw\21015\interior_pointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b21220.exe_1903]
+RelativePath=JIT\jit64\regress\ndpw\21220\b21220\b21220.exe
+WorkingDir=JIT\jit64\regress\ndpw\21220\b21220
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1904]
+RelativePath=JIT\jit64\regress\phoenix\62322\test\test.exe
+WorkingDir=JIT\jit64\regress\phoenix\62322\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1905]
+RelativePath=JIT\jit64\regress\vsw\102754\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\102754\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test2.exe_1906]
+RelativePath=JIT\jit64\regress\vsw\102754\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\102754\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1907]
+RelativePath=JIT\jit64\regress\vsw\102964\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102964\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1908]
+RelativePath=JIT\jit64\regress\vsw\102974\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102974\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1909]
+RelativePath=JIT\jit64\regress\vsw\153682\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\153682\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1910]
+RelativePath=JIT\jit64\regress\vsw\266693\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\266693\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1911]
+RelativePath=JIT\jit64\regress\vsw\286991\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\286991\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1912]
+RelativePath=JIT\jit64\regress\vsw\329169\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\329169\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1913]
+RelativePath=JIT\jit64\regress\vsw\333007\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\333007\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1914]
+RelativePath=JIT\jit64\regress\vsw\336666\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\336666\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1915]
+RelativePath=JIT\jit64\regress\vsw\373472\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\373472\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[test.exe_1916]
+RelativePath=JIT\jit64\regress\vsw\404708\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\404708\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1917]
+RelativePath=JIT\jit64\regress\vsw\460412\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\460412\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1918]
+RelativePath=JIT\jit64\regress\vsw\471729\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\471729\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1919]
+RelativePath=JIT\jit64\regress\vsw\517867\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\517867\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1920]
+RelativePath=JIT\jit64\regress\vsw\524070\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test2.exe_1921]
+RelativePath=JIT\jit64\regress\vsw\524070\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[simple-repro.exe_1922]
+RelativePath=JIT\jit64\regress\vsw\528315\simple-repro\simple-repro.exe
+WorkingDir=JIT\jit64\regress\vsw\528315\simple-repro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[exchange.exe_1923]
+RelativePath=JIT\jit64\regress\vsw\534486\exchange\exchange.exe
+WorkingDir=JIT\jit64\regress\vsw\534486\exchange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1924]
+RelativePath=JIT\jit64\regress\vsw\538615\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\538615\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test1.exe_1925]
+RelativePath=JIT\jit64\regress\vsw\539509\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\539509\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3104
+HostStyle=Any
+[test1.exe_1926]
+RelativePath=JIT\jit64\regress\vsw\541067\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\541067\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1927]
+RelativePath=JIT\jit64\regress\vsw\543229\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\543229\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1928]
+RelativePath=JIT\jit64\regress\vsw\543645\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\543645\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sql_stress4.exe_1929]
+RelativePath=JIT\jit64\regress\vsw\546707\sql_stress4\sql_stress4.exe
+WorkingDir=JIT\jit64\regress\vsw\546707\sql_stress4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1930]
+RelativePath=JIT\jit64\regress\vsw\549880\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\549880\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test.exe_1931]
+RelativePath=JIT\jit64\regress\vsw\552940\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\552940\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[opadd.exe_1932]
+RelativePath=JIT\jit64\regress\vsw\560402\opadd\opadd.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opadd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[opmul.exe_1933]
+RelativePath=JIT\jit64\regress\vsw\560402\opmul\opmul.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opmul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[opsub.exe_1934]
+RelativePath=JIT\jit64\regress\vsw\560402\opsub\opsub.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1935]
+RelativePath=JIT\jit64\regress\vsw\568666\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\568666\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_1936]
+RelativePath=JIT\jit64\regress\vsw\575343\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test2.exe_1937]
+RelativePath=JIT\jit64\regress\vsw\575343\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stret.exe_1938]
+RelativePath=JIT\jit64\regress\vsw\601425\stret\stret.exe
+WorkingDir=JIT\jit64\regress\vsw\601425\stret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Bug606733.exe_1939]
+RelativePath=JIT\jit64\regress\vsw\606733\Bug606733\Bug606733.exe
+WorkingDir=JIT\jit64\regress\vsw\606733\Bug606733
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[607586.exe_1940]
+RelativePath=JIT\jit64\regress\vsw\607586\607586\607586.exe
+WorkingDir=JIT\jit64\regress\vsw\607586\607586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[vsw610378.exe_1941]
+RelativePath=JIT\jit64\regress\vsw\610378\vsw610378\vsw610378.exe
+WorkingDir=JIT\jit64\regress\vsw\610378\vsw610378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overflow01_add.exe_1942]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_add\overflow01_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow01_div.exe_1943]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_div\overflow01_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow01_mul.exe_1944]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_mul\overflow01_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow01_sub.exe_1945]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_sub\overflow01_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow02_add.exe_1946]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_add\overflow02_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow02_div.exe_1947]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_div\overflow02_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow02_mul.exe_1948]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_mul\overflow02_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow02_sub.exe_1949]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_sub\overflow02_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow03_add.exe_1950]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_add\overflow03_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow03_div.exe_1951]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_div\overflow03_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow03_mul.exe_1952]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_mul\overflow03_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow03_sub.exe_1953]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_sub\overflow03_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow04_add.exe_1954]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_add\overflow04_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow04_div.exe_1955]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_div\overflow04_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow04_mul.exe_1956]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_mul\overflow04_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[overflow04_sub.exe_1957]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_sub\overflow04_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox001.exe_1958]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001\box-unbox001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox002.exe_1959]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002\box-unbox002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox003.exe_1960]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003\box-unbox003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox004.exe_1961]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004\box-unbox004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox005.exe_1962]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005\box-unbox005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox006.exe_1963]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006\box-unbox006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox007.exe_1964]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007\box-unbox007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox008.exe_1965]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008\box-unbox008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox009.exe_1966]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009\box-unbox009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox010.exe_1967]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010\box-unbox010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox011.exe_1968]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011\box-unbox011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox012.exe_1969]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012\box-unbox012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox013.exe_1970]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013\box-unbox013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox014.exe_1971]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014\box-unbox014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox015.exe_1972]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015\box-unbox015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox016.exe_1973]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016\box-unbox016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox017.exe_1974]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017\box-unbox017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox018.exe_1975]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018\box-unbox018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox019.exe_1976]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019\box-unbox019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox020.exe_1977]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020\box-unbox020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox021.exe_1978]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021\box-unbox021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox022.exe_1979]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022\box-unbox022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox023.exe_1980]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023\box-unbox023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox024.exe_1981]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024\box-unbox024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox025.exe_1982]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025\box-unbox025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox026.exe_1983]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026\box-unbox026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox027.exe_1984]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027\box-unbox027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox028.exe_1985]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028\box-unbox028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox029.exe_1986]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029\box-unbox029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox030.exe_1987]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030\box-unbox030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox031.exe_1988]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031\box-unbox031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox032.exe_1989]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032\box-unbox032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox033.exe_1990]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033\box-unbox033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox034.exe_1991]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034\box-unbox034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox037.exe_1992]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037\box-unbox037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox038.exe_1993]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038\box-unbox038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox039.exe_1994]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039\box-unbox039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox040.exe_1995]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040\box-unbox040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox041.exe_1996]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041\box-unbox041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox042.exe_1997]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042\box-unbox042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox043.exe_1998]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043\box-unbox043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox044.exe_1999]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044\box-unbox044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox045.exe_2000]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045\box-unbox045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-enum001.exe_2001]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001\box-unbox-enum001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-enum002.exe_2002]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002\box-unbox-enum002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-enum003.exe_2003]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003\box-unbox-enum003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics001.exe_2004]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001\box-unbox-generics001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics002.exe_2005]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002\box-unbox-generics002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics003.exe_2006]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003\box-unbox-generics003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics004.exe_2007]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004\box-unbox-generics004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics005.exe_2008]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005\box-unbox-generics005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics006.exe_2009]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006\box-unbox-generics006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics007.exe_2010]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007\box-unbox-generics007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics008.exe_2011]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008\box-unbox-generics008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics009.exe_2012]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009\box-unbox-generics009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics010.exe_2013]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010\box-unbox-generics010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics011.exe_2014]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011\box-unbox-generics011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics012.exe_2015]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012\box-unbox-generics012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics013.exe_2016]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013\box-unbox-generics013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics014.exe_2017]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014\box-unbox-generics014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics015.exe_2018]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015\box-unbox-generics015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics016.exe_2019]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016\box-unbox-generics016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics017.exe_2020]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017\box-unbox-generics017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics018.exe_2021]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018\box-unbox-generics018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics019.exe_2022]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019\box-unbox-generics019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics020.exe_2023]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020\box-unbox-generics020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics021.exe_2024]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021\box-unbox-generics021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics022.exe_2025]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022\box-unbox-generics022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics023.exe_2026]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023\box-unbox-generics023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics024.exe_2027]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024\box-unbox-generics024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics025.exe_2028]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025\box-unbox-generics025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics026.exe_2029]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026\box-unbox-generics026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics027.exe_2030]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027\box-unbox-generics027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics028.exe_2031]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028\box-unbox-generics028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics029.exe_2032]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029\box-unbox-generics029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics030.exe_2033]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030\box-unbox-generics030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics031.exe_2034]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031\box-unbox-generics031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics032.exe_2035]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032\box-unbox-generics032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics033.exe_2036]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033\box-unbox-generics033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics034.exe_2037]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034\box-unbox-generics034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics037.exe_2038]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037\box-unbox-generics037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics038.exe_2039]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038\box-unbox-generics038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics039.exe_2040]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039\box-unbox-generics039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics040.exe_2041]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040\box-unbox-generics040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics041.exe_2042]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041\box-unbox-generics041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics042.exe_2043]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042\box-unbox-generics042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics043.exe_2044]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043\box-unbox-generics043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics044.exe_2045]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044\box-unbox-generics044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-generics045.exe_2046]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045\box-unbox-generics045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface001.exe_2047]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001\box-unbox-interface001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface002.exe_2048]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002\box-unbox-interface002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface003.exe_2049]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003\box-unbox-interface003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface004.exe_2050]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004\box-unbox-interface004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface005.exe_2051]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005\box-unbox-interface005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface006.exe_2052]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006\box-unbox-interface006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface007.exe_2053]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007\box-unbox-interface007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface008.exe_2054]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008\box-unbox-interface008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface009.exe_2055]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009\box-unbox-interface009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface010.exe_2056]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010\box-unbox-interface010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface011.exe_2057]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011\box-unbox-interface011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface012.exe_2058]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012\box-unbox-interface012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface013.exe_2059]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013\box-unbox-interface013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface014.exe_2060]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014\box-unbox-interface014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface015.exe_2061]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015\box-unbox-interface015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface016.exe_2062]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016\box-unbox-interface016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface017.exe_2063]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017\box-unbox-interface017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-interface018.exe_2064]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018\box-unbox-interface018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null001.exe_2065]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001\box-unbox-null001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null002.exe_2066]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002\box-unbox-null002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null003.exe_2067]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003\box-unbox-null003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null004.exe_2068]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004\box-unbox-null004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null005.exe_2069]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005\box-unbox-null005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null006.exe_2070]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006\box-unbox-null006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null007.exe_2071]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007\box-unbox-null007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null008.exe_2072]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008\box-unbox-null008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null009.exe_2073]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009\box-unbox-null009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null010.exe_2074]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010\box-unbox-null010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null011.exe_2075]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011\box-unbox-null011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null012.exe_2076]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012\box-unbox-null012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null013.exe_2077]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013\box-unbox-null013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null014.exe_2078]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014\box-unbox-null014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null015.exe_2079]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015\box-unbox-null015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null016.exe_2080]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016\box-unbox-null016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null017.exe_2081]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017\box-unbox-null017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null018.exe_2082]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018\box-unbox-null018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null019.exe_2083]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019\box-unbox-null019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null020.exe_2084]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020\box-unbox-null020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null021.exe_2085]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021\box-unbox-null021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null022.exe_2086]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022\box-unbox-null022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null023.exe_2087]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023\box-unbox-null023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null024.exe_2088]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024\box-unbox-null024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null025.exe_2089]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025\box-unbox-null025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null026.exe_2090]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026\box-unbox-null026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null027.exe_2091]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027\box-unbox-null027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null028.exe_2092]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028\box-unbox-null028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null029.exe_2093]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029\box-unbox-null029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null030.exe_2094]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030\box-unbox-null030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null031.exe_2095]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031\box-unbox-null031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null032.exe_2096]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032\box-unbox-null032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null033.exe_2097]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033\box-unbox-null033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null034.exe_2098]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034\box-unbox-null034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null037.exe_2099]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037\box-unbox-null037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null038.exe_2100]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038\box-unbox-null038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null039.exe_2101]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039\box-unbox-null039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null040.exe_2102]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040\box-unbox-null040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null041.exe_2103]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041\box-unbox-null041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null042.exe_2104]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042\box-unbox-null042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null043.exe_2105]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043\box-unbox-null043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null044.exe_2106]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044\box-unbox-null044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-null045.exe_2107]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045\box-unbox-null045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value001.exe_2108]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001\box-unbox-value001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value002.exe_2109]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002\box-unbox-value002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value003.exe_2110]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003\box-unbox-value003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value004.exe_2111]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004\box-unbox-value004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value005.exe_2112]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005\box-unbox-value005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value006.exe_2113]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006\box-unbox-value006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value007.exe_2114]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007\box-unbox-value007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value008.exe_2115]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008\box-unbox-value008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value009.exe_2116]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009\box-unbox-value009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value010.exe_2117]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010\box-unbox-value010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value011.exe_2118]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011\box-unbox-value011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value012.exe_2119]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012\box-unbox-value012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value013.exe_2120]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013\box-unbox-value013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value014.exe_2121]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014\box-unbox-value014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value015.exe_2122]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015\box-unbox-value015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value016.exe_2123]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016\box-unbox-value016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value017.exe_2124]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017\box-unbox-value017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value018.exe_2125]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018\box-unbox-value018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value019.exe_2126]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019\box-unbox-value019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value020.exe_2127]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020\box-unbox-value020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value021.exe_2128]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021\box-unbox-value021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value022.exe_2129]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022\box-unbox-value022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value023.exe_2130]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023\box-unbox-value023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value024.exe_2131]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024\box-unbox-value024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value025.exe_2132]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025\box-unbox-value025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value026.exe_2133]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026\box-unbox-value026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value027.exe_2134]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027\box-unbox-value027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value028.exe_2135]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028\box-unbox-value028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value029.exe_2136]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029\box-unbox-value029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value030.exe_2137]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030\box-unbox-value030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value031.exe_2138]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031\box-unbox-value031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value032.exe_2139]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032\box-unbox-value032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value033.exe_2140]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033\box-unbox-value033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value034.exe_2141]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034\box-unbox-value034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value037.exe_2142]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037\box-unbox-value037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value038.exe_2143]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038\box-unbox-value038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value039.exe_2144]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039\box-unbox-value039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value040.exe_2145]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040\box-unbox-value040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value041.exe_2146]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041\box-unbox-value041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value042.exe_2147]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042\box-unbox-value042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value043.exe_2148]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043\box-unbox-value043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value044.exe_2149]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044\box-unbox-value044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[box-unbox-value045.exe_2150]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045\box-unbox-value045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass001.exe_2151]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001\castclass001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass002.exe_2152]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002\castclass002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass003.exe_2153]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003\castclass003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass004.exe_2154]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004\castclass004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass005.exe_2155]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005\castclass005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass006.exe_2156]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006\castclass006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass007.exe_2157]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007\castclass007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass008.exe_2158]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008\castclass008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass009.exe_2159]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009\castclass009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass010.exe_2160]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010\castclass010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass011.exe_2161]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011\castclass011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass012.exe_2162]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012\castclass012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass013.exe_2163]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013\castclass013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass014.exe_2164]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014\castclass014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass015.exe_2165]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015\castclass015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass016.exe_2166]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016\castclass016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass017.exe_2167]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017\castclass017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass018.exe_2168]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018\castclass018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass019.exe_2169]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019\castclass019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass020.exe_2170]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020\castclass020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass021.exe_2171]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021\castclass021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass022.exe_2172]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022\castclass022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass023.exe_2173]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023\castclass023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass024.exe_2174]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024\castclass024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass025.exe_2175]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025\castclass025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass026.exe_2176]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026\castclass026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass027.exe_2177]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027\castclass027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass028.exe_2178]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028\castclass028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass029.exe_2179]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029\castclass029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass030.exe_2180]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030\castclass030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass031.exe_2181]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031\castclass031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass032.exe_2182]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032\castclass032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass033.exe_2183]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033\castclass033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass034.exe_2184]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034\castclass034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass037.exe_2185]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037\castclass037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass038.exe_2186]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038\castclass038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass039.exe_2187]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039\castclass039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass040.exe_2188]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040\castclass040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass041.exe_2189]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041\castclass041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass042.exe_2190]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042\castclass042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass043.exe_2191]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043\castclass043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass044.exe_2192]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044\castclass044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass045.exe_2193]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045\castclass045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-enum001.exe_2194]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001\castclass-enum001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-enum002.exe_2195]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002\castclass-enum002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-enum003.exe_2196]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003\castclass-enum003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics001.exe_2197]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001\castclass-generics001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics002.exe_2198]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002\castclass-generics002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics003.exe_2199]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003\castclass-generics003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics004.exe_2200]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004\castclass-generics004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics005.exe_2201]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005\castclass-generics005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics006.exe_2202]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006\castclass-generics006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics007.exe_2203]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007\castclass-generics007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics008.exe_2204]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008\castclass-generics008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics009.exe_2205]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009\castclass-generics009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics010.exe_2206]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010\castclass-generics010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics011.exe_2207]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011\castclass-generics011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics012.exe_2208]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012\castclass-generics012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics013.exe_2209]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013\castclass-generics013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics014.exe_2210]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014\castclass-generics014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics015.exe_2211]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015\castclass-generics015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics016.exe_2212]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016\castclass-generics016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics017.exe_2213]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017\castclass-generics017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics018.exe_2214]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018\castclass-generics018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics019.exe_2215]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019\castclass-generics019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics020.exe_2216]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020\castclass-generics020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics021.exe_2217]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021\castclass-generics021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics022.exe_2218]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022\castclass-generics022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics023.exe_2219]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023\castclass-generics023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics024.exe_2220]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024\castclass-generics024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics025.exe_2221]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025\castclass-generics025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics026.exe_2222]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026\castclass-generics026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics027.exe_2223]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027\castclass-generics027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics028.exe_2224]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028\castclass-generics028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics029.exe_2225]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029\castclass-generics029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics030.exe_2226]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030\castclass-generics030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics031.exe_2227]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031\castclass-generics031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics032.exe_2228]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032\castclass-generics032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics033.exe_2229]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033\castclass-generics033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics034.exe_2230]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034\castclass-generics034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics037.exe_2231]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037\castclass-generics037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics038.exe_2232]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038\castclass-generics038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics039.exe_2233]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039\castclass-generics039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics040.exe_2234]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040\castclass-generics040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics041.exe_2235]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041\castclass-generics041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics042.exe_2236]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042\castclass-generics042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics043.exe_2237]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043\castclass-generics043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics044.exe_2238]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044\castclass-generics044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-generics045.exe_2239]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045\castclass-generics045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface001.exe_2240]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001\castclass-interface001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface002.exe_2241]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002\castclass-interface002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface003.exe_2242]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003\castclass-interface003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface004.exe_2243]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004\castclass-interface004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface005.exe_2244]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005\castclass-interface005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface006.exe_2245]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006\castclass-interface006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface007.exe_2246]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007\castclass-interface007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface008.exe_2247]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008\castclass-interface008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface009.exe_2248]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009\castclass-interface009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface010.exe_2249]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010\castclass-interface010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface011.exe_2250]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011\castclass-interface011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface012.exe_2251]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012\castclass-interface012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface013.exe_2252]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013\castclass-interface013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface014.exe_2253]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014\castclass-interface014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface015.exe_2254]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015\castclass-interface015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface016.exe_2255]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016\castclass-interface016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface017.exe_2256]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017\castclass-interface017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-interface018.exe_2257]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018\castclass-interface018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null001.exe_2258]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001\castclass-null001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null002.exe_2259]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002\castclass-null002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null003.exe_2260]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003\castclass-null003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null004.exe_2261]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004\castclass-null004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null005.exe_2262]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005\castclass-null005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null006.exe_2263]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006\castclass-null006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null007.exe_2264]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007\castclass-null007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null008.exe_2265]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008\castclass-null008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null009.exe_2266]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009\castclass-null009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null010.exe_2267]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010\castclass-null010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null011.exe_2268]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011\castclass-null011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null012.exe_2269]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012\castclass-null012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null013.exe_2270]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013\castclass-null013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null014.exe_2271]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014\castclass-null014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null015.exe_2272]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015\castclass-null015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null016.exe_2273]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016\castclass-null016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null017.exe_2274]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017\castclass-null017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null018.exe_2275]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018\castclass-null018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null019.exe_2276]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019\castclass-null019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null020.exe_2277]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020\castclass-null020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null021.exe_2278]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021\castclass-null021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null022.exe_2279]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022\castclass-null022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null023.exe_2280]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023\castclass-null023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null024.exe_2281]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024\castclass-null024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null025.exe_2282]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025\castclass-null025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null026.exe_2283]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026\castclass-null026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null027.exe_2284]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027\castclass-null027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null028.exe_2285]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028\castclass-null028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null029.exe_2286]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029\castclass-null029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null030.exe_2287]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030\castclass-null030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null031.exe_2288]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031\castclass-null031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null032.exe_2289]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032\castclass-null032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null033.exe_2290]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033\castclass-null033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null034.exe_2291]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034\castclass-null034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null037.exe_2292]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037\castclass-null037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null038.exe_2293]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038\castclass-null038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null039.exe_2294]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039\castclass-null039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null040.exe_2295]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040\castclass-null040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null041.exe_2296]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041\castclass-null041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null042.exe_2297]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042\castclass-null042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null043.exe_2298]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043\castclass-null043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null044.exe_2299]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044\castclass-null044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[castclass-null045.exe_2300]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045\castclass-null045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ver_fg_13.exe_2301]
+RelativePath=JIT\jit64\verif\sniff\fg\ver_fg_13\ver_fg_13.exe
+WorkingDir=JIT\jit64\verif\sniff\fg\ver_fg_13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbghuge_b.exe_2302]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_b\_il_dbghuge_b.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_i4.exe_2303]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_i4\_il_dbghuge_i4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_objref.exe_2304]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_objref\_il_dbghuge_objref.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_r4.exe_2305]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r4\_il_dbghuge_r4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_r8.exe_2306]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r8\_il_dbghuge_r8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_struct.exe_2307]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_struct\_il_dbghuge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_u8.exe_2308]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_u8\_il_dbghuge_u8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_b.exe_2309]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_b\_il_relhuge_b.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_i4.exe_2310]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_i4\_il_relhuge_i4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_objref.exe_2311]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_objref\_il_relhuge_objref.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_r4.exe_2312]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r4\_il_relhuge_r4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_r8.exe_2313]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r8\_il_relhuge_r8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_struct.exe_2314]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_struct\_il_relhuge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_u8.exe_2315]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_u8\_il_relhuge_u8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[huge_struct.exe_2316]
+RelativePath=JIT\Methodical\Arrays\huge_struct\huge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[_dbglcs.exe_2317]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_dbglcs2.exe_2318]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs2\_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbglcsbas.exe_2319]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbas\_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_dbglcsbox.exe_2320]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbox\_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbglcsmax.exe_2321]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmax\_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_dbglcsmixed.exe_2322]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmixed\_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbglcsval.exe_2323]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsval\_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbglcsvalbox.exe_2324]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsvalbox\_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbglcs_ldlen.exe_2325]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen\_il_dbglcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rellcs_ldlen.exe_2326]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen\_il_rellcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rellcs.exe_2327]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_rellcs2.exe_2328]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs2\_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rellcsbas.exe_2329]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbas\_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_rellcsbox.exe_2330]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbox\_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rellcsmax.exe_2331]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmax\_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_rellcsmixed.exe_2332]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmixed\_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rellcsval.exe_2333]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsval\_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rellcsvalbox.exe_2334]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsvalbox\_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcs.exe_2335]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PAS
+HostStyle=Any
+[_speed_dbglcs2.exe_2336]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs2\_speed_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcsbas.exe_2337]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas\_speed_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcsbox.exe_2338]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox\_speed_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcsmax.exe_2339]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax\_speed_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_speed_dbglcsmixed.exe_2340]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed\_speed_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcsval.exe_2341]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsval\_speed_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcsvalbox.exe_2342]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox\_speed_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcs.exe_2343]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcs2.exe_2344]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs2\_speed_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcsbas.exe_2345]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbas\_speed_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcsbox.exe_2346]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbox\_speed_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcsmax.exe_2347]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmax\_speed_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_speed_rellcsmixed.exe_2348]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed\_speed_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcsval.exe_2349]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsval\_speed_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcsvalbox.exe_2350]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox\_speed_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgarrres.exe_2351]
+RelativePath=JIT\Methodical\Arrays\misc\_dbgarrres\_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbggcarr.exe_2352]
+RelativePath=JIT\Methodical\Arrays\misc\_dbggcarr\_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgselfref.exe_2353]
+RelativePath=JIT\Methodical\Arrays\misc\_dbgselfref\_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgaddress.exe_2354]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgaddress\_il_dbgaddress.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgaddress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgarrres.exe_2355]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgarrres\_il_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbggcarr.exe_2356]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbggcarr\_il_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbginitializearray_enum.exe_2357]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum\_il_dbginitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldelem_get.exe_2358]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgldelem_get\_il_dbgldelem_get.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgldelem_get
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbglength0.exe_2359]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbglength0\_il_dbglength0.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglength0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbglengthm2.exe_2360]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbglengthm2\_il_dbglengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglengthm2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgselfref.exe_2361]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgselfref\_il_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reladdress.exe_2362]
+RelativePath=JIT\Methodical\Arrays\misc\_il_reladdress\_il_reladdress.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_reladdress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relarrres.exe_2363]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relarrres\_il_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relgcarr.exe_2364]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relgcarr\_il_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relinitializearray_enum.exe_2365]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum\_il_relinitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldelem_get.exe_2366]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relldelem_get\_il_relldelem_get.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relldelem_get
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_rellength0.exe_2367]
+RelativePath=JIT\Methodical\Arrays\misc\_il_rellength0\_il_rellength0.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_rellength0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_rellengthm2.exe_2368]
+RelativePath=JIT\Methodical\Arrays\misc\_il_rellengthm2\_il_rellengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_rellengthm2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relselfref.exe_2369]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relselfref\_il_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relarrres.exe_2370]
+RelativePath=JIT\Methodical\Arrays\misc\_relarrres\_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relgcarr.exe_2371]
+RelativePath=JIT\Methodical\Arrays\misc\_relgcarr\_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relselfref.exe_2372]
+RelativePath=JIT\Methodical\Arrays\misc\_relselfref\_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgarrres.exe_2373]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgarrres\_speed_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbggcarr.exe_2374]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbggcarr\_speed_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgselfref.exe_2375]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgselfref\_speed_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relarrres.exe_2376]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relarrres\_speed_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relgcarr.exe_2377]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relgcarr\_speed_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relselfref.exe_2378]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relselfref\_speed_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgfloat64_range1.exe_2379]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1\_il_dbgfloat64_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgfloat64_range2.exe_2380]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2\_il_dbgfloat64_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_0.exe_2381]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0\_il_dbgint32_0.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_0_5a.exe_2382]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a\_il_dbgint32_0_5a.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_0_5b.exe_2383]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b\_il_dbgint32_0_5b.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_1.exe_2384]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_1\_il_dbgint32_1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_m1.exe_2385]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_m1\_il_dbgint32_m1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_m1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_neg_range.exe_2386]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range\_il_dbgint32_neg_range.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_range1.exe_2387]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range1\_il_dbgint32_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgint32_range2.exe_2388]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range2\_il_dbgint32_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relfloat64_range1.exe_2389]
+RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range1\_il_relfloat64_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relfloat64_range2.exe_2390]
+RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range2\_il_relfloat64_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_0.exe_2391]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0\_il_relint32_0.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_0_5a.exe_2392]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5a\_il_relint32_0_5a.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_0_5b.exe_2393]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5b\_il_relint32_0_5b.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_1.exe_2394]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_1\_il_relint32_1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_m1.exe_2395]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_m1\_il_relint32_m1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_m1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_neg_range.exe_2396]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_neg_range\_il_relint32_neg_range.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_neg_range
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_range1.exe_2397]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range1\_il_relint32_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relint32_range2.exe_2398]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range2\_il_relint32_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relnegIndexRngChkElim.exe_2399]
+RelativePath=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim\_il_relnegIndexRngChkElim.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4flat_cs_d.exe_2400]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_d\i4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4flat_cs_do.exe_2401]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_do\i4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4flat_cs_r.exe_2402]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_r\i4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4flat_cs_ro.exe_2403]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_ro\i4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4_cs_d.exe_2404]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_d\i4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4_cs_do.exe_2405]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_do\i4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4_cs_r.exe_2406]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_r\i4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4_cs_ro.exe_2407]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_ro\i4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8flat_cs_d.exe_2408]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_d\i8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8flat_cs_do.exe_2409]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_do\i8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8flat_cs_r.exe_2410]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_r\i8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8flat_cs_ro.exe_2411]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_ro\i8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8_cs_d.exe_2412]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_d\i8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8_cs_do.exe_2413]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_do\i8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8_cs_r.exe_2414]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_r\i8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8_cs_ro.exe_2415]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_ro\i8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4flat_cs_d.exe_2416]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_d\r4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4flat_cs_do.exe_2417]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_do\r4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4flat_cs_r.exe_2418]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_r\r4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4flat_cs_ro.exe_2419]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_ro\r4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4_cs_d.exe_2420]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_d\r4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4_cs_do.exe_2421]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_do\r4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4_cs_r.exe_2422]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_r\r4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4_cs_ro.exe_2423]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_ro\r4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8flat_cs_d.exe_2424]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_d\r8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8flat_cs_do.exe_2425]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_do\r8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8flat_cs_r.exe_2426]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_r\r8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8flat_cs_ro.exe_2427]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_ro\r8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8_cs_d.exe_2428]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_d\r8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8_cs_do.exe_2429]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_do\r8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8_cs_r.exe_2430]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_r\r8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8_cs_ro.exe_2431]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_ro\r8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgarray.exe_2432]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgarray\_il_dbgarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgchain.exe_2433]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgchain\_il_dbgchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgchain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgfinally.exe_2434]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally\_il_dbgfinally.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghuge_filter.exe_2435]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter\_il_dbghuge_filter.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgjump.exe_2436]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgjump\_il_dbgjump.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgjump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbglocal.exe_2437]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocal\_il_dbglocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbglocalloc.exe_2438]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc\_il_dbglocalloc.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgsimple.exe_2439]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple\_il_dbgsimple.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgtailcall.exe_2440]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall\_il_dbgtailcall.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgtry.exe_2441]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtry\_il_dbgtry.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relarray.exe_2442]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relarray\_il_relarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relchain.exe_2443]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relchain\_il_relchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relchain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relfinally.exe_2444]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relfinally\_il_relfinally.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_filter.exe_2445]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter\_il_relhuge_filter.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reljump.exe_2446]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reljump\_il_reljump.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reljump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_rellocal.exe_2447]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocal\_il_rellocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rellocalloc.exe_2448]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc\_il_rellocalloc.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relsimple.exe_2449]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relsimple\_il_relsimple.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relsimple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reltailcall.exe_2450]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltailcall\_il_reltailcall.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reltry.exe_2451]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltry\_il_reltry.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbginstance_cs.exe_2452]
+RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_cs\_dbginstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbginstance_il.exe_2453]
+RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_il\_dbginstance_il.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbginstance_cs.exe_2454]
+RelativePath=JIT\Methodical\Boxing\callconv\_odbginstance_cs\_odbginstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_odbginstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelinstance_cs.exe_2455]
+RelativePath=JIT\Methodical\Boxing\callconv\_orelinstance_cs\_orelinstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_orelinstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relinstance_cs.exe_2456]
+RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_cs\_relinstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relinstance_il.exe_2457]
+RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_il\_relinstance_il.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgfibo_cs.exe_2458]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_cs\_dbgfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgfibo_il.exe_2459]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_il\_dbgfibo_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_cs.exe_2460]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_cs\_dbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_il.exe_2461]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_il\_dbgsin_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgfibo_cs.exe_2462]
+RelativePath=JIT\Methodical\Boxing\functional\_odbgfibo_cs\_odbgfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_odbgfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_cs.exe_2463]
+RelativePath=JIT\Methodical\Boxing\functional\_odbgsin_cs\_odbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_odbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelfibo_cs.exe_2464]
+RelativePath=JIT\Methodical\Boxing\functional\_orelfibo_cs\_orelfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_orelfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_cs.exe_2465]
+RelativePath=JIT\Methodical\Boxing\functional\_orelsin_cs\_orelsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_orelsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relfibo_cs.exe_2466]
+RelativePath=JIT\Methodical\Boxing\functional\_relfibo_cs\_relfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relfibo_il.exe_2467]
+RelativePath=JIT\Methodical\Boxing\functional\_relfibo_il\_relfibo_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_cs.exe_2468]
+RelativePath=JIT\Methodical\Boxing\functional\_relsin_cs\_relsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_il.exe_2469]
+RelativePath=JIT\Methodical\Boxing\functional\_relsin_il\_relsin_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relsin_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgconcurgc_il.exe_2470]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgconcurgc_il\_dbgconcurgc_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgconcurgc_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgenum_cs.exe_2471]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_cs\_dbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgenum_il.exe_2472]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_il\_dbgenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgnestval_cs.exe_2473]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_cs\_dbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgnestval_il.exe_2474]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_il\_dbgnestval_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgtailjump_cs.exe_2475]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_cs\_dbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgtailjump_il.exe_2476]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_il\_dbgtailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgtypedref.exe_2477]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtypedref\_dbgtypedref.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtypedref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgenum_cs.exe_2478]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgenum_cs\_odbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_odbgnestval_cs.exe_2479]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgnestval_cs\_odbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_odbgtailjump_cs.exe_2480]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgtailjump_cs\_odbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgtailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_orelenum_cs.exe_2481]
+RelativePath=JIT\Methodical\Boxing\misc\_orelenum_cs\_orelenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_orelnestval_cs.exe_2482]
+RelativePath=JIT\Methodical\Boxing\misc\_orelnestval_cs\_orelnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_oreltailjump_cs.exe_2483]
+RelativePath=JIT\Methodical\Boxing\misc\_oreltailjump_cs\_oreltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_oreltailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relconcurgc_il.exe_2484]
+RelativePath=JIT\Methodical\Boxing\misc\_relconcurgc_il\_relconcurgc_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relconcurgc_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relenum_cs.exe_2485]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_cs\_relenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relenum_il.exe_2486]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_il\_relenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relnestval_cs.exe_2487]
+RelativePath=JIT\Methodical\Boxing\misc\_relnestval_cs\_relnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relnestval_il.exe_2488]
+RelativePath=JIT\Methodical\Boxing\misc\_relnestval_il\_relnestval_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_reltailjump_cs.exe_2489]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_cs\_reltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reltailjump_il.exe_2490]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_il\_reltailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reltypedref.exe_2491]
+RelativePath=JIT\Methodical\Boxing\misc\_reltypedref\_reltypedref.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltypedref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_cs.exe_2492]
+RelativePath=JIT\Methodical\Boxing\morph\_dbgsin_cs\_dbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_dbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_cs.exe_2493]
+RelativePath=JIT\Methodical\Boxing\morph\_odbgsin_cs\_odbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_odbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_cs.exe_2494]
+RelativePath=JIT\Methodical\Boxing\morph\_orelsin_cs\_orelsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_orelsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_cs.exe_2495]
+RelativePath=JIT\Methodical\Boxing\morph\_relsin_cs\_relsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_relsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgfault.exe_2496]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgfault\_dbgfault.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgfilter.exe_2497]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgfilter\_dbgfilter.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgtry_cs.exe_2498]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_cs\_dbgtry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgtry_il.exe_2499]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_il\_dbgtry_il.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgtry_cs.exe_2500]
+RelativePath=JIT\Methodical\Boxing\seh\_odbgtry_cs\_odbgtry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_odbgtry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_oreltry_cs.exe_2501]
+RelativePath=JIT\Methodical\Boxing\seh\_oreltry_cs\_oreltry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_oreltry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relfault.exe_2502]
+RelativePath=JIT\Methodical\Boxing\seh\_relfault\_relfault.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_relfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relfilter.exe_2503]
+RelativePath=JIT\Methodical\Boxing\seh\_relfilter\_relfilter.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_relfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_reltry_cs.exe_2504]
+RelativePath=JIT\Methodical\Boxing\seh\_reltry_cs\_reltry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_reltry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_reltry_il.exe_2505]
+RelativePath=JIT\Methodical\Boxing\seh\_reltry_il\_reltry_il.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_reltry_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_cs_cs.exe_2506]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs\_dbgsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_cs_il.exe_2507]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il\_dbgsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_il_cs.exe_2508]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs\_dbgsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsin_il_il.exe_2509]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_il\_dbgsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_cs_cs.exe_2510]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs\_odbgsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_cs_il.exe_2511]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il\_odbgsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_il_cs.exe_2512]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs\_odbgsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_odbgsin_il_il.exe_2513]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_il\_odbgsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_cs_cs.exe_2514]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs\_orelsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_cs_il.exe_2515]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_il\_orelsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_il_cs.exe_2516]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_cs\_orelsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_orelsin_il_il.exe_2517]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_il\_orelsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_cs_cs.exe_2518]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_cs\_relsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_cs_il.exe_2519]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_il\_relsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_il_cs.exe_2520]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_cs\_relsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsin_il_il.exe_2521]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_il\_relsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgarrays.exe_2522]
+RelativePath=JIT\Methodical\casts\array\_il_dbgarrays\_il_dbgarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgarrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_ldlen.exe_2523]
+RelativePath=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen\_il_dbgcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_ldlen.exe_2524]
+RelativePath=JIT\Methodical\casts\array\_il_dbgisinst_ldlen\_il_dbgisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgisinst_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relarrays.exe_2525]
+RelativePath=JIT\Methodical\casts\array\_il_relarrays\_il_relarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relarrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_ldlen.exe_2526]
+RelativePath=JIT\Methodical\casts\array\_il_relcastclass_ldlen\_il_relcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relcastclass_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_ldlen.exe_2527]
+RelativePath=JIT\Methodical\casts\array\_il_relisinst_ldlen\_il_relisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relisinst_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcastclass_call.exe_2528]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_call\_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcastclass_ldarg.exe_2529]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg\_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcastclass_ldloc.exe_2530]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc\_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcastclass_newobj.exe_2531]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_newobj\_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgisinst_call.exe_2532]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_call\_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgisinst_ldarg.exe_2533]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldarg\_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgisinst_ldloc.exe_2534]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldloc\_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgisinst_newobj.exe_2535]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_newobj\_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_call.exe_2536]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_call\_il_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_calli.exe_2537]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli\_il_dbgcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_ldarg.exe_2538]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg\_il_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_ldloc.exe_2539]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc\_il_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_call.exe_2540]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_call\_il_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_calli.exe_2541]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_calli\_il_dbgisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_ldarg.exe_2542]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg\_il_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_ldloc.exe_2543]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc\_il_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldnull.exe_2544]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgldnull\_il_dbgldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_call.exe_2545]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_call\_il_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_calli.exe_2546]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_calli\_il_relcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_ldarg.exe_2547]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg\_il_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_ldloc.exe_2548]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc\_il_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_call.exe_2549]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_call\_il_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_calli.exe_2550]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_calli\_il_relisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_ldarg.exe_2551]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldarg\_il_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_ldloc.exe_2552]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldloc\_il_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldnull.exe_2553]
+RelativePath=JIT\Methodical\casts\coverage\_il_relldnull\_il_relldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcastclass_call.exe_2554]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_call\_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcastclass_ldarg.exe_2555]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldarg\_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcastclass_ldloc.exe_2556]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldloc\_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcastclass_newobj.exe_2557]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_newobj\_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relisinst_call.exe_2558]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_call\_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relisinst_ldarg.exe_2559]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldarg\_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relisinst_ldloc.exe_2560]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldloc\_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relisinst_newobj.exe_2561]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_newobj\_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcastclass_call.exe_2562]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call\_speed_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcastclass_ldarg.exe_2563]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg\_speed_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcastclass_ldloc.exe_2564]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc\_speed_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcastclass_newobj.exe_2565]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj\_speed_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgisinst_call.exe_2566]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_call\_speed_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgisinst_ldarg.exe_2567]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg\_speed_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgisinst_ldloc.exe_2568]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc\_speed_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgisinst_newobj.exe_2569]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj\_speed_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcastclass_call.exe_2570]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_call\_speed_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcastclass_ldarg.exe_2571]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg\_speed_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcastclass_ldloc.exe_2572]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc\_speed_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcastclass_newobj.exe_2573]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj\_speed_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relisinst_call.exe_2574]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_call\_speed_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relisinst_ldarg.exe_2575]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg\_speed_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relisinst_ldloc.exe_2576]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc\_speed_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relisinst_newobj.exe_2577]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_newobj\_speed_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgiface1.exe_2578]
+RelativePath=JIT\Methodical\casts\iface\_dbgiface1\_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_dbgiface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgiface2.exe_2579]
+RelativePath=JIT\Methodical\casts\iface\_il_dbgiface2\_il_dbgiface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_dbgiface2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reliface2.exe_2580]
+RelativePath=JIT\Methodical\casts\iface\_il_reliface2\_il_reliface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_reliface2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reliface1.exe_2581]
+RelativePath=JIT\Methodical\casts\iface\_reliface1\_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_reliface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgiface1.exe_2582]
+RelativePath=JIT\Methodical\casts\iface\_speed_dbgiface1\_speed_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_dbgiface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reliface1.exe_2583]
+RelativePath=JIT\Methodical\casts\iface\_speed_reliface1\_speed_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_reliface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relCommonBase.exe_2584]
+RelativePath=JIT\Methodical\casts\ilseq\_il_relCommonBase\_il_relCommonBase.exe
+WorkingDir=JIT\Methodical\casts\ilseq\_il_relCommonBase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcast_throw.exe_2586]
+RelativePath=JIT\Methodical\casts\SEH\_dbgcast_throw\_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgthrow.exe_2587]
+RelativePath=JIT\Methodical\casts\SEH\_dbgthrow\_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_catch.exe_2588]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch\_il_dbgcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcastclass_catch_neg.exe_2589]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg\_il_dbgcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgfilter.exe_2590]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgfilter\_il_dbgfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_catch.exe_2591]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch\_il_dbgisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgisinst_catch_neg.exe_2592]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg\_il_dbgisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_catch.exe_2593]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch\_il_relcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcastclass_catch_neg.exe_2594]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg\_il_relcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relfilter.exe_2595]
+RelativePath=JIT\Methodical\casts\SEH\_il_relfilter\_il_relfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_catch.exe_2596]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch\_il_relisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relisinst_catch_neg.exe_2597]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg\_il_relisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcast_throw.exe_2598]
+RelativePath=JIT\Methodical\casts\SEH\_relcast_throw\_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relthrow.exe_2599]
+RelativePath=JIT\Methodical\casts\SEH\_relthrow\_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcast_throw.exe_2600]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgcast_throw\_speed_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgthrow.exe_2601]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgthrow\_speed_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcast_throw.exe_2602]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relcast_throw\_speed_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relthrow.exe_2603]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relthrow\_speed_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[assemname_cs_d.exe_2604]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_d\assemname_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[assemname_cs_do.exe_2605]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_do\assemname_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[assemname_cs_r.exe_2606]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_r\assemname_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[assemname_cs_ro.exe_2607]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_ro\assemname_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadlock_il_d.exe_2608]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_d\deadlock_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[deadlock_il_r.exe_2609]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_r\deadlock_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[throw_cs_d.exe_2610]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_d\throw_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_do.exe_2611]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_do\throw_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_r.exe_2612]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_r\throw_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_ro.exe_2613]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro\throw_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[global_il_d.exe_2614]
+RelativePath=JIT\Methodical\cctor\misc\global_il_d\global_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\global_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[global_il_r.exe_2615]
+RelativePath=JIT\Methodical\cctor\misc\global_il_r\global_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\global_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tail_il_d.exe_2616]
+RelativePath=JIT\Methodical\cctor\misc\tail_il_d\tail_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\tail_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tail_il_r.exe_2617]
+RelativePath=JIT\Methodical\cctor\misc\tail_il_r\tail_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\tail_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads1_cs_d.exe_2618]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_d\threads1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads1_cs_do.exe_2619]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_do\threads1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads1_cs_r.exe_2620]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_r\threads1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads1_cs_ro.exe_2621]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_ro\threads1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads2_cs_d.exe_2622]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_d\threads2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads2_cs_do.exe_2623]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_do\threads2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads2_cs_r.exe_2624]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_r\threads2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads2_cs_ro.exe_2625]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_ro\threads2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads3_il_d.exe_2626]
+RelativePath=JIT\Methodical\cctor\misc\threads3_il_d\threads3_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[threads3_il_r.exe_2627]
+RelativePath=JIT\Methodical\cctor\misc\threads3_il_r\threads3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_d.exe_2628]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_d\throw_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_do.exe_2629]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_do\throw_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_r.exe_2630]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_r\throw_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw_cs_ro.exe_2631]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_ro\throw_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[prefldinit3_il_r.exe_2632]
+RelativePath=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r\prefldinit3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1b_cs_d.exe_2633]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_d\precise1b_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1b_cs_do.exe_2634]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_do\precise1b_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1b_cs_r.exe_2635]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_r\precise1b_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1b_cs_ro.exe_2636]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_ro\precise1b_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1_cs_d.exe_2637]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_d\precise1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1_cs_do.exe_2638]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_do\precise1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1_cs_r.exe_2639]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_r\precise1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise1_cs_ro.exe_2640]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_ro\precise1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise2_cs_d.exe_2641]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_d\precise2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise2_cs_do.exe_2642]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_do\precise2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise2_cs_r.exe_2643]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_r\precise2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise2_cs_ro.exe_2644]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_ro\precise2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise3_il_d.exe_2645]
+RelativePath=JIT\Methodical\cctor\simple\precise3_il_d\precise3_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[precise3_il_r.exe_2646]
+RelativePath=JIT\Methodical\cctor\simple\precise3_il_r\precise3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[precise4_cs_d.exe_2647]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_d\precise4_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise4_cs_do.exe_2648]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_do\precise4_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise4_cs_r.exe_2649]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_r\precise4_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[precise4_cs_ro.exe_2650]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_ro\precise4_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit1_il_d.exe_2651]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_d\prefldinit1_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit1_il_r.exe_2652]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_r\prefldinit1_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit2_il_d.exe_2653]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_d\prefldinit2_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit2_il_r.exe_2654]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_r\prefldinit2_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit4_il_d.exe_2655]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_d\prefldinit4_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[prefldinit4_il_r.exe_2656]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_r\prefldinit4_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[xprecise1b_cs_d.exe_2657]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_d\xprecise1b_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1b_cs_do.exe_2658]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_do\xprecise1b_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1b_cs_r.exe_2659]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_r\xprecise1b_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1b_cs_ro.exe_2660]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro\xprecise1b_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1_cs_d.exe_2661]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_d\xprecise1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1_cs_do.exe_2662]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_do\xprecise1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1_cs_r.exe_2663]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_r\xprecise1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise1_cs_ro.exe_2664]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_ro\xprecise1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise2_cs_d.exe_2665]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_d\xprecise2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise2_cs_do.exe_2666]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_do\xprecise2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise2_cs_r.exe_2667]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_r\xprecise2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise2_cs_ro.exe_2668]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_ro\xprecise2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise4_cs_d.exe_2669]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_d\xprecise4_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise4_cs_do.exe_2670]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_do\xprecise4_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise4_cs_r.exe_2671]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_r\xprecise4_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[xprecise4_cs_ro.exe_2672]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_ro\xprecise4_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[arglist_pos.exe_2673]
+RelativePath=JIT\Methodical\Coverage\arglist_pos\arglist_pos.exe
+WorkingDir=JIT\Methodical\Coverage\arglist_pos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b39946.exe_2674]
+RelativePath=JIT\Methodical\Coverage\b39946\b39946.exe
+WorkingDir=JIT\Methodical\Coverage\b39946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b433189.exe_2675]
+RelativePath=JIT\Methodical\Coverage\b433189\b433189.exe
+WorkingDir=JIT\Methodical\Coverage\b433189
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b518440.exe_2676]
+RelativePath=JIT\Methodical\Coverage\b518440\b518440.exe
+WorkingDir=JIT\Methodical\Coverage\b518440
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[hole.exe_2677]
+RelativePath=JIT\Methodical\Coverage\hole\hole.exe
+WorkingDir=JIT\Methodical\Coverage\hole
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_simpleoddpower_il_d.exe_2678]
+RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_d\_simpleoddpower_il_d.exe
+WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_simpleoddpower_il_r.exe_2679]
+RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_r\_simpleoddpower_il_r.exe
+WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[decimaldiv_cs_d.exe_2680]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_d\decimaldiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimaldiv_cs_do.exe_2681]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_do\decimaldiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimaldiv_cs_r.exe_2682]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_r\decimaldiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimaldiv_cs_ro.exe_2683]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_ro\decimaldiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4div_cs_d.exe_2684]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_d\i4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4div_cs_do.exe_2685]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_do\i4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4div_cs_r.exe_2686]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_r\i4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4div_cs_ro.exe_2687]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_ro\i4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8div_cs_d.exe_2688]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_d\i8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8div_cs_do.exe_2689]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_do\i8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8div_cs_r.exe_2690]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_r\i8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8div_cs_ro.exe_2691]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_ro\i8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[negSignedMod.exe_2692]
+RelativePath=JIT\Methodical\divrem\div\negSignedMod\negSignedMod.exe
+WorkingDir=JIT\Methodical\divrem\div\negSignedMod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overlddiv_cs_d.exe_2693]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_d\overlddiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overlddiv_cs_do.exe_2694]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_do\overlddiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overlddiv_cs_r.exe_2695]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_r\overlddiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overlddiv_cs_ro.exe_2696]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_ro\overlddiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4div_cs_d.exe_2697]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_d\r4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4div_cs_do.exe_2698]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_do\r4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[r4div_cs_r.exe_2699]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_r\r4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4div_cs_ro.exe_2700]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_ro\r4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[r8div_cs_d.exe_2701]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_d\r8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8div_cs_do.exe_2702]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_do\r8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[r8div_cs_r.exe_2703]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_r\r8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8div_cs_ro.exe_2704]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_ro\r8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[u4div_cs_d.exe_2705]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_d\u4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4div_cs_do.exe_2706]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_do\u4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4div_cs_r.exe_2707]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_r\u4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4div_cs_ro.exe_2708]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_ro\u4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8div_cs_d.exe_2709]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_d\u8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8div_cs_do.exe_2710]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_do\u8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8div_cs_r.exe_2711]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_r\u8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8div_cs_ro.exe_2712]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_ro\u8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimalrem_cs_d.exe_2713]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_d\decimalrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimalrem_cs_do.exe_2714]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_do\decimalrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimalrem_cs_r.exe_2715]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_r\decimalrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimalrem_cs_ro.exe_2716]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_ro\decimalrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4rem_cs_d.exe_2717]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_d\i4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4rem_cs_do.exe_2718]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_do\i4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4rem_cs_r.exe_2719]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_r\i4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i4rem_cs_ro.exe_2720]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_ro\i4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8rem_cs_d.exe_2721]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_d\i8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8rem_cs_do.exe_2722]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_do\i8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8rem_cs_r.exe_2723]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_r\i8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[i8rem_cs_ro.exe_2724]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_ro\i8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overldrem_cs_d.exe_2725]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_d\overldrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overldrem_cs_do.exe_2726]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_do\overldrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overldrem_cs_r.exe_2727]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_r\overldrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overldrem_cs_ro.exe_2728]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_ro\overldrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4rem_cs_d.exe_2729]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_d\r4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4rem_cs_do.exe_2730]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_do\r4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4rem_cs_r.exe_2731]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_r\r4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4rem_cs_ro.exe_2732]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_ro\r4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8rem_cs_d.exe_2733]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_d\r8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8rem_cs_do.exe_2734]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_do\r8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[r8rem_cs_r.exe_2735]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_r\r8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8rem_cs_ro.exe_2736]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_ro\r8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2849
+HostStyle=Any
+[u4rem_cs_d.exe_2737]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_d\u4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4rem_cs_do.exe_2738]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_do\u4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4rem_cs_r.exe_2739]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_r\u4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u4rem_cs_ro.exe_2740]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_ro\u4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8rem_cs_d.exe_2741]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_d\u8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8rem_cs_do.exe_2742]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_do\u8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8rem_cs_r.exe_2743]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_r\u8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[u8rem_cs_ro.exe_2744]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_ro\u8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[dblarray1_cs_d.exe_2745]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_d\dblarray1_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray1_cs_do.exe_2746]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_do\dblarray1_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray1_cs_r.exe_2747]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_r\dblarray1_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray1_cs_ro.exe_2748]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_ro\dblarray1_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray2_cs_d.exe_2749]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_d\dblarray2_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray2_cs_do.exe_2750]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_do\dblarray2_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray2_cs_r.exe_2751]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_r\dblarray2_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray2_cs_ro.exe_2752]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_ro\dblarray2_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray3_cs_d.exe_2753]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_d\dblarray3_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray3_cs_do.exe_2754]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_do\dblarray3_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray3_cs_r.exe_2755]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_r\dblarray3_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray3_cs_ro.exe_2756]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_ro\dblarray3_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray4_cs_d.exe_2757]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_d\dblarray4_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray4_cs_do.exe_2758]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_do\dblarray4_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray4_cs_r.exe_2759]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_r\dblarray4_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dblarray4_cs_ro.exe_2760]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_ro\dblarray4_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bug_445388.exe_2761]
+RelativePath=JIT\Methodical\dynamic_methods\bug_445388\bug_445388.exe
+WorkingDir=JIT\Methodical\dynamic_methods\bug_445388
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[emptyfinally_d.exe_2762]
+RelativePath=JIT\Methodical\eh\basics\emptyfinally_d\emptyfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\emptyfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[emptyfinally_r.exe_2763]
+RelativePath=JIT\Methodical\eh\basics\emptyfinally_r\emptyfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\emptyfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[multihandler_d.exe_2764]
+RelativePath=JIT\Methodical\eh\basics\multihandler_d\multihandler_d.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[multihandler_do.exe_2765]
+RelativePath=JIT\Methodical\eh\basics\multihandler_do\multihandler_do.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[multihandler_r.exe_2766]
+RelativePath=JIT\Methodical\eh\basics\multihandler_r\multihandler_r.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[multihandler_ro.exe_2767]
+RelativePath=JIT\Methodical\eh\basics\multihandler_ro\multihandler_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_d.exe_2768]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_d\throwincatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_do.exe_2769]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_do\throwincatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_r.exe_2770]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_r\throwincatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_ro.exe_2771]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_ro\throwincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinclassconstructor_d.exe_2772]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_d\throwinclassconstructor_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinclassconstructor_do.exe_2773]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_do\throwinclassconstructor_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinclassconstructor_r.exe_2774]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_r\throwinclassconstructor_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinclassconstructor_ro.exe_2775]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_ro\throwinclassconstructor_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinexcept_d.exe_2776]
+RelativePath=JIT\Methodical\eh\basics\throwinexcept_d\throwinexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinexcept_r.exe_2777]
+RelativePath=JIT\Methodical\eh\basics\throwinexcept_r\throwinexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfault_d.exe_2778]
+RelativePath=JIT\Methodical\eh\basics\throwinfault_d\throwinfault_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfault_r.exe_2779]
+RelativePath=JIT\Methodical\eh\basics\throwinfault_r\throwinfault_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfilter_d.exe_2780]
+RelativePath=JIT\Methodical\eh\basics\throwinfilter_d\throwinfilter_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfilter_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfilter_r.exe_2781]
+RelativePath=JIT\Methodical\eh\basics\throwinfilter_r\throwinfilter_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfilter_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpathfn_d.exe_2782]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d\throwinfinallyerrpathfn_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpathfn_do.exe_2783]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do\throwinfinallyerrpathfn_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpathfn_r.exe_2784]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r\throwinfinallyerrpathfn_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpathfn_ro.exe_2785]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro\throwinfinallyerrpathfn_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpath_d.exe_2786]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_d\throwinfinallyerrpath_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpath_do.exe_2787]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_do\throwinfinallyerrpath_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpath_r.exe_2788]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_r\throwinfinallyerrpath_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyerrpath_ro.exe_2789]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro\throwinfinallyerrpath_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter1_d.exe_2790]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d\throwinfinallyintryfilter1_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter1_r.exe_2791]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r\throwinfinallyintryfilter1_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter2_d.exe_2792]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d\throwinfinallyintryfilter2_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter2_r.exe_2793]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r\throwinfinallyintryfilter2_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter3_d.exe_2794]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d\throwinfinallyintryfilter3_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyintryfilter3_r.exe_2795]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r\throwinfinallyintryfilter3_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_d.exe_2796]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_d\throwinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_do.exe_2797]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_do\throwinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_r.exe_2798]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_r\throwinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_ro.exe_2799]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_ro\throwinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwisfirstinstruction_d.exe_2800]
+RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_d\throwisfirstinstruction_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwisfirstinstruction_r.exe_2801]
+RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_r\throwisfirstinstruction_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwoutside_d.exe_2802]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_d\throwoutside_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwoutside_do.exe_2803]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_do\throwoutside_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwoutside_r.exe_2804]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_r\throwoutside_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwoutside_ro.exe_2805]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_ro\throwoutside_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchtrycatch_d.exe_2806]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_d\trycatchtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchtrycatch_do.exe_2807]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_do\trycatchtrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchtrycatch_r.exe_2808]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_r\trycatchtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchtrycatch_ro.exe_2809]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_ro\trycatchtrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatch_d.exe_2810]
+RelativePath=JIT\Methodical\eh\basics\trycatch_d\trycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatch_do.exe_2811]
+RelativePath=JIT\Methodical\eh\basics\trycatch_do\trycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatch_r.exe_2812]
+RelativePath=JIT\Methodical\eh\basics\trycatch_r\trycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatch_ro.exe_2813]
+RelativePath=JIT\Methodical\eh\basics\trycatch_ro\trycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryexcept_d.exe_2814]
+RelativePath=JIT\Methodical\eh\basics\tryexcept_d\tryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryexcept_r.exe_2815]
+RelativePath=JIT\Methodical\eh\basics\tryexcept_r\tryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfaulttrycatchfn_d.exe_2816]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d\tryfaulttrycatchfn_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfaulttrycatchfn_r.exe_2817]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r\tryfaulttrycatchfn_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfaulttrycatch_d.exe_2818]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_d\tryfaulttrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfaulttrycatch_r.exe_2819]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_r\tryfaulttrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfault_d.exe_2820]
+RelativePath=JIT\Methodical\eh\basics\tryfault_d\tryfault_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfault_r.exe_2821]
+RelativePath=JIT\Methodical\eh\basics\tryfault_r\tryfault_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytrycatch_d.exe_2822]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_d\tryfinallytrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytrycatch_do.exe_2823]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_do\tryfinallytrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytrycatch_r.exe_2824]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_r\tryfinallytrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytrycatch_ro.exe_2825]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_ro\tryfinallytrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytryfinally_d.exe_2826]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_d\tryfinallytryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytryfinally_do.exe_2827]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_do\tryfinallytryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytryfinally_r.exe_2828]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_r\tryfinallytryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallytryfinally_ro.exe_2829]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_ro\tryfinallytryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallywith2endfinally_d.exe_2830]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d\tryfinallywith2endfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallywith2endfinally_r.exe_2831]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r\tryfinallywith2endfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallywith2reachableendfinally_d.exe_2832]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d\tryfinallywith2reachableendfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallywith2reachableendfinally_r.exe_2833]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r\tryfinallywith2reachableendfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinally_d.exe_2834]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_d\tryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinally_do.exe_2835]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_do\tryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinally_r.exe_2836]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_r\tryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinally_ro.exe_2837]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_ro\tryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatchfinally_d.exe_2838]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_d\trythrowcatchfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatchfinally_do.exe_2839]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_do\trythrowcatchfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatchfinally_r.exe_2840]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_r\trythrowcatchfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatchfinally_ro.exe_2841]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_ro\trythrowcatchfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatch_d.exe_2842]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_d\trythrowcatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatch_do.exe_2843]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_do\trythrowcatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatch_r.exe_2844]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_r\trythrowcatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowcatch_ro.exe_2845]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_ro\trythrowcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowexcept_d.exe_2846]
+RelativePath=JIT\Methodical\eh\basics\trythrowexcept_d\trythrowexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trythrowexcept_r.exe_2847]
+RelativePath=JIT\Methodical\eh\basics\trythrowexcept_r\trythrowexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unsafe_d.exe_2848]
+RelativePath=JIT\Methodical\eh\cs\unsafe_d\unsafe_d.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unsafe_do.exe_2849]
+RelativePath=JIT\Methodical\eh\cs\unsafe_do\unsafe_do.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unsafe_r.exe_2850]
+RelativePath=JIT\Methodical\eh\cs\unsafe_r\unsafe_r.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[unsafe_ro.exe_2851]
+RelativePath=JIT\Methodical\eh\cs\unsafe_ro\unsafe_ro.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeaftercatch_d.exe_2852]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_d\badcodeaftercatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeaftercatch_r.exe_2853]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_r\badcodeaftercatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfault_d.exe_2854]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_d\badcodeafterfault_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfault_r.exe_2855]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_r\badcodeafterfault_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfilter_d.exe_2856]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_d\badcodeafterfilter_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfilter_r.exe_2857]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_r\badcodeafterfilter_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfinally_d.exe_2858]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_d\badcodeafterfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeafterfinally_r.exe_2859]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_r\badcodeafterfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeaftertry_d.exe_2860]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_d\badcodeaftertry_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeaftertry_r.exe_2861]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_r\badcodeaftertry_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeinsidefinally_d.exe_2862]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d\badcodeinsidefinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[badcodeinsidefinally_r.exe_2863]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r\badcodeinsidefinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoverendfinally_d.exe_2864]
+RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_d\branchoverendfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoverendfinally_r.exe_2865]
+RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_r\branchoverendfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadcodeincatch_d.exe_2866]
+RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_d\deadcodeincatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadcodeincatch_r.exe_2867]
+RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_r\deadcodeincatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadEHregionacrossBB_d.exe_2868]
+RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d\deadEHregionacrossBB_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadEHregionacrossBB_r.exe_2869]
+RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r\deadEHregionacrossBB_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadnonlocalexit_d.exe_2870]
+RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_d\deadnonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadnonlocalexit_r.exe_2871]
+RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_r\deadnonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadoponerrorinfunclet_d.exe_2872]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d\deadoponerrorinfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadoponerrorinfunclet_r.exe_2873]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r\deadoponerrorinfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadoponerror_d.exe_2874]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_d\deadoponerror_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadoponerror_r.exe_2875]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_r\deadoponerror_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadrgninfunclet_d.exe_2876]
+RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_d\deadrgninfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadrgninfunclet_r.exe_2877]
+RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_r\deadrgninfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtrycatch_d.exe_2878]
+RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_d\deadtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtrycatch_r.exe_2879]
+RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_r\deadtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtryfinallythrow_d.exe_2880]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d\deadtryfinallythrow_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtryfinallythrow_r.exe_2881]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r\deadtryfinallythrow_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtryfinally_d.exe_2882]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_d\deadtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deadtryfinally_r.exe_2883]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_r\deadtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[endfinallyinloop_d.exe_2884]
+RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_d\endfinallyinloop_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[endfinallyinloop_r.exe_2885]
+RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_r\endfinallyinloop_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopstrswitchgoto_d.exe_2886]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d\loopstrswitchgoto_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopstrswitchgoto_do.exe_2887]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do\loopstrswitchgoto_do.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopstrswitchgoto_r.exe_2888]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r\loopstrswitchgoto_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopstrswitchgoto_ro.exe_2889]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro\loopstrswitchgoto_ro.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[severaldeadehregions_d.exe_2890]
+RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_d\severaldeadehregions_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[severaldeadehregions_r.exe_2891]
+RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_r\severaldeadehregions_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[severalnesteddeadehregions_d.exe_2892]
+RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d\severalnesteddeadehregions_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[severalnesteddeadehregions_r.exe_2893]
+RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r\severalnesteddeadehregions_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpledeadehregion_d.exe_2894]
+RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_d\simpledeadehregion_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simpledeadehregion_r.exe_2895]
+RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_r\simpledeadehregion_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[backwardleave_d.exe_2896]
+RelativePath=JIT\Methodical\eh\disconnected\backwardleave_d\backwardleave_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[backwardleave_r.exe_2897]
+RelativePath=JIT\Methodical\eh\disconnected\backwardleave_r\backwardleave_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchbeforetrybody_d.exe_2898]
+RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_d\catchbeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchbeforetrybody_r.exe_2899]
+RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_r\catchbeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchtryintryfinally_d.exe_2900]
+RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_d\catchtryintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchtryintryfinally_r.exe_2901]
+RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_r\catchtryintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[faultbeforetrybody_d.exe_2902]
+RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_d\faultbeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[faultbeforetrybody_r.exe_2903]
+RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_r\faultbeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[finallybeforetrybody_d.exe_2904]
+RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_d\finallybeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[finallybeforetrybody_r.exe_2905]
+RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_r\finallybeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[finallytryintryfinally_d.exe_2906]
+RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_d\finallytryintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[finallytryintryfinally_r.exe_2907]
+RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_r\finallytryintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[reversedhandlers_d.exe_2908]
+RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_d\reversedhandlers_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[reversedhandlers_r.exe_2909]
+RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_r\reversedhandlers_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[reversedtryblock_d.exe_2910]
+RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_d\reversedtryblock_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[reversedtryblock_r.exe_2911]
+RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_r\reversedtryblock_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sehhandlerbeforetry_d.exe_2912]
+RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d\sehhandlerbeforetry_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[sehhandlerbeforetry_r.exe_2913]
+RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r\sehhandlerbeforetry_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[testeit_d.exe_2914]
+RelativePath=JIT\Methodical\eh\disconnected\testeit_d\testeit_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\testeit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[testeit_r.exe_2915]
+RelativePath=JIT\Methodical\eh\disconnected\testeit_r\testeit_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\testeit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trybodyinbetweencatchhandlers_d.exe_2916]
+RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d\trybodyinbetweencatchhandlers_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trybodyinbetweencatchhandlers_r.exe_2917]
+RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r\trybodyinbetweencatchhandlers_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyincatchtry_d.exe_2918]
+RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d\tryfinallyincatchtry_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyincatchtry_r.exe_2919]
+RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r\tryfinallyincatchtry_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_cs_d.exe_2920]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d\catchrettoinnertry_cs_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_cs_do.exe_2921]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do\catchrettoinnertry_cs_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_cs_r.exe_2922]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r\catchrettoinnertry_cs_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_cs_ro.exe_2923]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro\catchrettoinnertry_cs_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_d.exe_2924]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d\catchrettoinnertry_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_do.exe_2925]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_do\catchrettoinnertry_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_r.exe_2926]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r\catchrettoinnertry_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchrettoinnertry_ro.exe_2927]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_ro\catchrettoinnertry_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localgotoinahandler_d.exe_2928]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_d\localgotoinahandler_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localgotoinahandler_do.exe_2929]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_do\localgotoinahandler_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localgotoinahandler_r.exe_2930]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_r\localgotoinahandler_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localgotoinahandler_ro.exe_2931]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro\localgotoinahandler_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopinfinally_d.exe_2932]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_d\loopinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopinfinally_do.exe_2933]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_do\loopinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopinfinally_r.exe_2934]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_r\loopinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopinfinally_ro.exe_2935]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_ro\loopinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedfinallycall_d.exe_2936]
+RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_d\nestedfinallycall_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedfinallycall_r.exe_2937]
+RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_r\nestedfinallycall_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittobeginningoftry_d.exe_2938]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d\nonlocalexittobeginningoftry_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittobeginningoftry_do.exe_2939]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do\nonlocalexittobeginningoftry_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittobeginningoftry_r.exe_2940]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r\nonlocalexittobeginningoftry_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittobeginningoftry_ro.exe_2941]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro\nonlocalexittobeginningoftry_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittonestedsibling_d.exe_2942]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d\nonlocalexittonestedsibling_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexittonestedsibling_r.exe_2943]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r\nonlocalexittonestedsibling_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_d.exe_2944]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d\nonlocalgotoinatryblockinahandler_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_do.exe_2945]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do\nonlocalgotoinatryblockinahandler_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_r.exe_2946]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r\nonlocalgotoinatryblockinahandler_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_ro.exe_2947]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro\nonlocalgotoinatryblockinahandler_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_d.exe_2948]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d\simplenonlocalexitnestedintrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_do.exe_2949]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do\simplenonlocalexitnestedintrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_r.exe_2950]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r\simplenonlocalexitnestedintrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_ro.exe_2951]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro\simplenonlocalexitnestedintrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexit_d.exe_2952]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d\simplenonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexit_do.exe_2953]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do\simplenonlocalexit_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexit_r.exe_2954]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r\simplenonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplenonlocalexit_ro.exe_2955]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro\simplenonlocalexit_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchincatch_d.exe_2956]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_d\switchincatch_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchincatch_do.exe_2957]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_do\switchincatch_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchincatch_r.exe_2958]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_r\switchincatch_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchincatch_ro.exe_2959]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_ro\switchincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_d.exe_2960]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d\tryCatchFinallyThrow_nonlocalexit1_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_do.exe_2961]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do\tryCatchFinallyThrow_nonlocalexit1_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_r.exe_2962]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r\tryCatchFinallyThrow_nonlocalexit1_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_ro.exe_2963]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro\tryCatchFinallyThrow_nonlocalexit1_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_d.exe_2964]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d\tryCatchFinallyThrow_nonlocalexit2_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_do.exe_2965]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do\tryCatchFinallyThrow_nonlocalexit2_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_r.exe_2966]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r\tryCatchFinallyThrow_nonlocalexit2_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_ro.exe_2967]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro\tryCatchFinallyThrow_nonlocalexit2_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_d.exe_2968]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d\tryCatchFinallyThrow_nonlocalexit3_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_do.exe_2969]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do\tryCatchFinallyThrow_nonlocalexit3_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_r.exe_2970]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r\tryCatchFinallyThrow_nonlocalexit3_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_ro.exe_2971]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro\tryCatchFinallyThrow_nonlocalexit3_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_d.exe_2972]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d\tryCatchFinallyThrow_nonlocalexit4_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_do.exe_2973]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do\tryCatchFinallyThrow_nonlocalexit4_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_r.exe_2974]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r\tryCatchFinallyThrow_nonlocalexit4_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_ro.exe_2975]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro\tryCatchFinallyThrow_nonlocalexit4_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_d.exe_2976]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d\tryfinallythrow_nonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_do.exe_2977]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do\tryfinallythrow_nonlocalexit_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_r.exe_2978]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r\tryfinallythrow_nonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_ro.exe_2979]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro\tryfinallythrow_nonlocalexit_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_d.exe_2980]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_d\throwincatch_d.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_do.exe_2981]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_do\throwincatch_do.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_r.exe_2982]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_r\throwincatch_r.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincatch_ro.exe_2983]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_ro\throwincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchnestedtype_d.exe_2984]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_d\trycatchnestedtype_d.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchnestedtype_do.exe_2985]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_do\trycatchnestedtype_do.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchnestedtype_r.exe_2986]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_r\trycatchnestedtype_r.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchnestedtype_ro.exe_2987]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_ro\trycatchnestedtype_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchsimpletype_d.exe_2988]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_d\trycatchsimpletype_d.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchsimpletype_do.exe_2989]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_do\trycatchsimpletype_do.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchsimpletype_r.exe_2990]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_r\trycatchsimpletype_r.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchsimpletype_ro.exe_2991]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_ro\trycatchsimpletype_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ehso.exe_2992]
+RelativePath=JIT\Methodical\eh\interactions\ehso\ehso.exe
+WorkingDir=JIT\Methodical\eh\interactions\ehso
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gcincatch_d.exe_2993]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_d\gcincatch_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcincatch_do.exe_2994]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_do\gcincatch_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcincatch_r.exe_2995]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_r\gcincatch_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gcincatch_ro.exe_2996]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_ro\gcincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rangecheckinfinally_d.exe_2997]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_d\rangecheckinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rangecheckinfinally_do.exe_2998]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_do\rangecheckinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rangecheckinfinally_r.exe_2999]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_r\rangecheckinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rangecheckinfinally_ro.exe_3000]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_ro\rangecheckinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[strswitchfinal_d.exe_3001]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_d\strswitchfinal_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[strswitchfinal_do.exe_3002]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_do\strswitchfinal_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[strswitchfinal_r.exe_3003]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_r\strswitchfinal_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[strswitchfinal_ro.exe_3004]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_ro\strswitchfinal_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchinfinally_d.exe_3005]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_d\switchinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchinfinally_do.exe_3006]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_do\switchinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchinfinally_r.exe_3007]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_r\switchinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switchinfinally_ro.exe_3008]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_ro\switchinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw1dimarray_d.exe_3009]
+RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_d\throw1dimarray_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw1dimarray_r.exe_3010]
+RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_r\throw1dimarray_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw2dimarray_d.exe_3011]
+RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_d\throw2dimarray_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throw2dimarray_r.exe_3012]
+RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_r\throw2dimarray_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[volatilefromfinally.exe_3013]
+RelativePath=JIT\Methodical\eh\interactions\volatilefromfinally\volatilefromfinally.exe
+WorkingDir=JIT\Methodical\eh\interactions\volatilefromfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[2branchesoutoftry_d.exe_3014]
+RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_d\2branchesoutoftry_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[2branchesoutoftry_r.exe_3015]
+RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_r\2branchesoutoftry_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[backwardleaveincatch_d.exe_3016]
+RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_d\backwardleaveincatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[backwardleaveincatch_r.exe_3017]
+RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_r\backwardleaveincatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchbackwardswithcatch_d.exe_3018]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d\branchbackwardswithcatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchbackwardswithcatch_r.exe_3019]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r\branchbackwardswithcatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchbackwardswithfinally_d.exe_3020]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d\branchbackwardswithfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchbackwardswithfinally_r.exe_3021]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r\branchbackwardswithfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoutofnestedtryfinally_d.exe_3022]
+RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d\branchoutofnestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoutofnestedtryfinally_r.exe_3023]
+RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r\branchoutofnestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoutoftryfinally_d.exe_3024]
+RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_d\branchoutoftryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[branchoutoftryfinally_r.exe_3025]
+RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_r\branchoutoftryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchretnonlocalexitinfunclet_d.exe_3026]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d\catchretnonlocalexitinfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchretnonlocalexitinfunclet_do.exe_3027]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do\catchretnonlocalexitinfunclet_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchretnonlocalexitinfunclet_r.exe_3028]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r\catchretnonlocalexitinfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchretnonlocalexitinfunclet_ro.exe_3029]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro\catchretnonlocalexitinfunclet_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[forwardleaveincatch_d.exe_3030]
+RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_d\forwardleaveincatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[forwardleaveincatch_r.exe_3031]
+RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_r\forwardleaveincatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[labelbeforefinally_d.exe_3032]
+RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_d\labelbeforefinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[labelbeforefinally_r.exe_3033]
+RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_r\labelbeforefinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[labelbeginningfinally_d.exe_3034]
+RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_d\labelbeginningfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[labelbeginningfinally_r.exe_3035]
+RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_r\labelbeginningfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[leaveinsameregion_d.exe_3036]
+RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_d\leaveinsameregion_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[leaveinsameregion_r.exe_3037]
+RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_r\leaveinsameregion_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[leaveintotrybody_d.exe_3038]
+RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_d\leaveintotrybody_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[leaveintotrybody_r.exe_3039]
+RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_r\leaveintotrybody_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitfromnestedcatch_d.exe_3040]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d\nonlocalexitfromnestedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitfromnestedcatch_do.exe_3041]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do\nonlocalexitfromnestedcatch_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitfromnestedcatch_r.exe_3042]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r\nonlocalexitfromnestedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nonlocalexitfromnestedcatch_ro.exe_3043]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro\nonlocalexitfromnestedcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[oponerror_d.exe_3044]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_d\oponerror_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[oponerror_do.exe_3045]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_do\oponerror_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[oponerror_r.exe_3046]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_r\oponerror_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[oponerror_ro.exe_3047]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_ro\oponerror_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyintrycatchwithleaveintotry_d.exe_3048]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d\tryfinallyintrycatchwithleaveintotry_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyintrycatchwithleaveintotry_r.exe_3049]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r\tryfinallyintrycatchwithleaveintotry_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyloop_d.exe_3050]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_d\tryfinallyloop_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyloop_do.exe_3051]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_do\tryfinallyloop_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyloop_r.exe_3052]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_r\tryfinallyloop_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tryfinallyloop_ro.exe_3053]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_ro\tryfinallyloop_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchfiltercatch_d.exe_3054]
+RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d\catchfiltercatch_d.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[catchfiltercatch_r.exe_3055]
+RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r\catchfiltercatch_r.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[filterfiltercatchcatch_d.exe_3056]
+RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d\filterfiltercatchcatch_d.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[filterfiltercatchcatch_r.exe_3057]
+RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r\filterfiltercatchcatch_r.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_d.exe_3058]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d\cascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_r.exe_3059]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r\cascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedexcept_d.exe_3060]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d\cascadedexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedexcept_r.exe_3061]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r\cascadedexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedcatchnofin_d.exe_3062]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d\throwincascadedcatchnofin_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedcatchnofin_r.exe_3063]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r\throwincascadedcatchnofin_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedcatch_d.exe_3064]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d\throwincascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedcatch_r.exe_3065]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r\throwincascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedexceptnofin_d.exe_3066]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d\throwincascadedexceptnofin_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedexceptnofin_r.exe_3067]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r\throwincascadedexceptnofin_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedexcept_d.exe_3068]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d\throwincascadedexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwincascadedexcept_r.exe_3069]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r\throwincascadedexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_d.exe_3070]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_d\cascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_do.exe_3071]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_do\cascadedcatch_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_r.exe_3072]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_r\cascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[cascadedcatch_ro.exe_3073]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_ro\cascadedcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localvarincatch_d.exe_3074]
+RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_d\localvarincatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[localvarincatch_r.exe_3075]
+RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_r\localvarincatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[methodthrowsinfinally_d.exe_3076]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d\methodthrowsinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[methodthrowsinfinally_do.exe_3077]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do\methodthrowsinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[methodthrowsinfinally_r.exe_3078]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r\methodthrowsinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[methodthrowsinfinally_ro.exe_3079]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro\methodthrowsinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowincatchnestedinfinally_d.exe_3080]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d\rethrowincatchnestedinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowincatchnestedinfinally_do.exe_3081]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do\rethrowincatchnestedinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowincatchnestedinfinally_r.exe_3082]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r\rethrowincatchnestedinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowincatchnestedinfinally_ro.exe_3083]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro\rethrowincatchnestedinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_d.exe_3084]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d\throwinfinallynestedintry_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_do.exe_3085]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do\throwinfinallynestedintry_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_r.exe_3086]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r\throwinfinallynestedintry_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_ro.exe_3087]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro\throwinfinallynestedintry_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_d.exe_3088]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_d\throwinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_do.exe_3089]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_do\throwinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_r.exe_3090]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_r\throwinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_ro.exe_3091]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_ro\throwinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedcatch_d.exe_3092]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_d\throwinnestedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedcatch_r.exe_3093]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_r\throwinnestedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedfinally_d.exe_3094]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_d\throwinnestedfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedfinally_do.exe_3095]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_do\throwinnestedfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedfinally_r.exe_3096]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_r\throwinnestedfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedfinally_ro.exe_3097]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro\throwinnestedfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchintryfinally_d.exe_3098]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_d\trycatchintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchintryfinally_do.exe_3099]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_do\trycatchintryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchintryfinally_r.exe_3100]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_r\trycatchintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatchintryfinally_ro.exe_3101]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro\trycatchintryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtrycatch_d.exe_3102]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d\nestedtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtrycatch_r.exe_3103]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r\nestedtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryexcept_d.exe_3104]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d\nestedtryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryexcept_r.exe_3105]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r\nestedtryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryfault_d.exe_3106]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d\nestedtryfault_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryfault_r.exe_3107]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r\nestedtryfault_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryfinally_d.exe_3108]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d\nestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nestedtryfinally_r.exe_3109]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r\nestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtrycatch_d.exe_3110]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d\throwinnestedtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtrycatch_r.exe_3111]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r\throwinnestedtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryexcept_d.exe_3112]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d\throwinnestedtryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryexcept_r.exe_3113]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r\throwinnestedtryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryfault_d.exe_3114]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d\throwinnestedtryfault_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryfault_r.exe_3115]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r\throwinnestedtryfault_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryfinally_d.exe_3116]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d\throwinnestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinnestedtryfinally_r.exe_3117]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r\throwinnestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_30_d.exe_3118]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d\throwinfinallynestedintry_30_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_30_do.exe_3119]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do\throwinfinallynestedintry_30_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_30_r.exe_3120]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r\throwinfinallynestedintry_30_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallynestedintry_30_ro.exe_3121]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro\throwinfinallynestedintry_30_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyrecursive_20_d.exe_3122]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d\throwinfinallyrecursive_20_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyrecursive_20_do.exe_3123]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do\throwinfinallyrecursive_20_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyrecursive_20_r.exe_3124]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r\throwinfinallyrecursive_20_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinallyrecursive_20_ro.exe_3125]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro\throwinfinallyrecursive_20_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_50_d.exe_3126]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d\throwinfinally_50_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_50_do.exe_3127]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do\throwinfinally_50_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_50_r.exe_3128]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r\throwinfinally_50_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwinfinally_50_ro.exe_3129]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro\throwinfinally_50_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[outermostFinally.exe_3130]
+RelativePath=JIT\Methodical\eh\regress\asurt\122239\outermostFinally\outermostFinally.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\122239\outermostFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[innerFinally_d.exe_3131]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d\innerFinally_d.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[innerFinally_do.exe_3132]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do\innerFinally_do.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[innerFinally_r.exe_3133]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r\innerFinally_r.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[innerFinally_ro.exe_3134]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro\innerFinally_ro.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[uncaughtException_d.exe_3135]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d\uncaughtException_d.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[uncaughtException_do.exe_3136]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do\uncaughtException_do.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[uncaughtException_r.exe_3137]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r\uncaughtException_r.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[uncaughtException_ro.exe_3138]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro\uncaughtException_ro.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[baduwinfo.exe_3139]
+RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo\baduwinfo.exe
+WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[baduwinfo1.exe_3140]
+RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1\baduwinfo1.exe
+WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyaftercatch_d.exe_3141]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d\rethrowinfinallyaftercatch_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyaftercatch_do.exe_3142]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do\rethrowinfinallyaftercatch_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyaftercatch_r.exe_3143]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r\rethrowinfinallyaftercatch_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyaftercatch_ro.exe_3144]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro\rethrowinfinallyaftercatch_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyinsidecatch_d.exe_3145]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d\rethrowinfinallyinsidecatch_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowinfinallyinsidecatch_r.exe_3146]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r\rethrowinfinallyinsidecatch_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_d.exe_3147]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d\rethrowwithhandlerscatchingbase_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_do.exe_3148]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do\rethrowwithhandlerscatchingbase_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_r.exe_3149]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r\rethrowwithhandlerscatchingbase_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_ro.exe_3150]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro\rethrowwithhandlerscatchingbase_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samerethrowtwice_d.exe_3151]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_d\samerethrowtwice_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samerethrowtwice_do.exe_3152]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_do\samerethrowtwice_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samerethrowtwice_r.exe_3153]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_r\samerethrowtwice_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samerethrowtwice_ro.exe_3154]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_ro\samerethrowtwice_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samethrowtwice_d.exe_3155]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_d\samethrowtwice_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samethrowtwice_do.exe_3156]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_do\samethrowtwice_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samethrowtwice_r.exe_3157]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_r\samethrowtwice_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[samethrowtwice_ro.exe_3158]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_ro\samethrowtwice_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplerethrow_d.exe_3159]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_d\simplerethrow_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplerethrow_do.exe_3160]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_do\simplerethrow_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplerethrow_r.exe_3161]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_r\simplerethrow_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[simplerethrow_ro.exe_3162]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_ro\simplerethrow_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwwithhandlerscatchingbase_d.exe_3163]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d\throwwithhandlerscatchingbase_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwwithhandlerscatchingbase_do.exe_3164]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do\throwwithhandlerscatchingbase_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwwithhandlerscatchingbase_r.exe_3165]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r\throwwithhandlerscatchingbase_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwwithhandlerscatchingbase_ro.exe_3166]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro\throwwithhandlerscatchingbase_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgconvovf_i8_i.exe_3167]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i\_il_dbgconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgconvovf_i8_u.exe_3168]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u\_il_dbgconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgconv_i8_i.exe_3169]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i\_il_dbgconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgconv_i8_u.exe_3170]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u\_il_dbgconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_array_merge.exe_3171]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge\_il_dbgi_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgi_box.exe_3172]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box\_il_dbgi_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgi_conv.exe_3173]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv\_il_dbgi_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_fld.exe_3174]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld\_il_dbgi_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_flood.exe_3175]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood\_il_dbgi_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_flow.exe_3176]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow\_il_dbgi_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_prop.exe_3177]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop\_il_dbgi_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_qsort1.exe_3178]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1\_il_dbgi_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_qsort2.exe_3179]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2\_il_dbgi_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_ref.exe_3180]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref\_il_dbgi_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_seq.exe_3181]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq\_il_dbgi_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi_vfld.exe_3182]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld\_il_dbgi_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgptr.exe_3183]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr\_il_dbgptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgqperm.exe_3184]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm\_il_dbgqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgsizeof.exe_3185]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof\_il_dbgsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_array_merge.exe_3186]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge\_il_dbgu_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgu_box.exe_3187]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box\_il_dbgu_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgu_conv.exe_3188]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv\_il_dbgu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_fld.exe_3189]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld\_il_dbgu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_flood.exe_3190]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood\_il_dbgu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_flow.exe_3191]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow\_il_dbgu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_prop.exe_3192]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop\_il_dbgu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_qsort1.exe_3193]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1\_il_dbgu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_qsort2.exe_3194]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2\_il_dbgu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_ref.exe_3195]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref\_il_dbgu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_seq.exe_3196]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq\_il_dbgu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_vfld.exe_3197]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld\_il_dbgu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relconvovf_i8_i.exe_3198]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i\_il_relconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relconvovf_i8_u.exe_3199]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u\_il_relconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relconv_i8_i.exe_3200]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i\_il_relconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relconv_i8_u.exe_3201]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u\_il_relconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_array_merge.exe_3202]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge\_il_reli_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reli_box.exe_3203]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box\_il_reli_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reli_conv.exe_3204]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv\_il_reli_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_fld.exe_3205]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld\_il_reli_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_flood.exe_3206]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood\_il_reli_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_flow.exe_3207]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow\_il_reli_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_prop.exe_3208]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop\_il_reli_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_qsort1.exe_3209]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1\_il_reli_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_qsort2.exe_3210]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2\_il_reli_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_ref.exe_3211]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref\_il_reli_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_seq.exe_3212]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq\_il_reli_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli_vfld.exe_3213]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld\_il_reli_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relptr.exe_3214]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr\_il_relptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relqperm.exe_3215]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm\_il_relqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relsizeof.exe_3216]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof\_il_relsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_array_merge.exe_3217]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge\_il_relu_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relu_box.exe_3218]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box\_il_relu_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relu_conv.exe_3219]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv\_il_relu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_fld.exe_3220]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld\_il_relu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_flood.exe_3221]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood\_il_relu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_flow.exe_3222]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow\_il_relu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_prop.exe_3223]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop\_il_relu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_qsort1.exe_3224]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1\_il_relu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_qsort2.exe_3225]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2\_il_relu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_ref.exe_3226]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref\_il_relu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_seq.exe_3227]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq\_il_relu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_vfld.exe_3228]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld\_il_relu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgrefarg_c.exe_3229]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_c\_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_f4.exe_3230]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f4\_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_f8.exe_3231]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f8\_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_i1.exe_3232]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i1\_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_i2.exe_3233]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i2\_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_i4.exe_3234]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i4\_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_o.exe_3235]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_o\_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrefarg_s.exe_3236]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_s\_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgrefarg_c.exe_3237]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_c\_il_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_f4.exe_3238]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4\_il_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_f8.exe_3239]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8\_il_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_i1.exe_3240]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1\_il_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_i2.exe_3241]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2\_il_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_i4.exe_3242]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4\_il_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_o.exe_3243]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_o\_il_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_s.exe_3244]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_s\_il_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_c.exe_3245]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_c\_il_dbgrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_i1.exe_3246]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1\_il_dbgrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_i2.exe_3247]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2\_il_dbgrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_i4.exe_3248]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4\_il_dbgrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_o.exe_3249]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o\_il_dbgrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_o2.exe_3250]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2\_il_dbgrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_r4.exe_3251]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4\_il_dbgrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_r8.exe_3252]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8\_il_dbgrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefloc_u2.exe_3253]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2\_il_dbgrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_c.exe_3254]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_c\_il_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_f4.exe_3255]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f4\_il_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_f8.exe_3256]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f8\_il_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_i1.exe_3257]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i1\_il_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_i2.exe_3258]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i2\_il_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_i4.exe_3259]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i4\_il_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_o.exe_3260]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_o\_il_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_s.exe_3261]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_s\_il_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_c.exe_3262]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_c\_il_relrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_i1.exe_3263]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i1\_il_relrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_i2.exe_3264]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i2\_il_relrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_i4.exe_3265]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i4\_il_relrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_o.exe_3266]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o\_il_relrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_o2.exe_3267]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o2\_il_relrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_r4.exe_3268]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r4\_il_relrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_r8.exe_3269]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r8\_il_relrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefloc_u2.exe_3270]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_u2\_il_relrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgrefarg_c.exe_3271]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c\_opt_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_f4.exe_3272]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4\_opt_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_f8.exe_3273]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8\_opt_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_i1.exe_3274]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1\_opt_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_i2.exe_3275]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2\_opt_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_i4.exe_3276]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4\_opt_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_o.exe_3277]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o\_opt_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrefarg_s.exe_3278]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s\_opt_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_c.exe_3279]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_c\_opt_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_f4.exe_3280]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f4\_opt_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_f8.exe_3281]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f8\_opt_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_i1.exe_3282]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i1\_opt_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_i2.exe_3283]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i2\_opt_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_i4.exe_3284]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i4\_opt_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_o.exe_3285]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_o\_opt_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrefarg_s.exe_3286]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_s\_opt_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_c.exe_3287]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_c\_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_f4.exe_3288]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f4\_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_f8.exe_3289]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f8\_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_i1.exe_3290]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i1\_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_i2.exe_3291]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i2\_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_i4.exe_3292]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i4\_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_o.exe_3293]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_o\_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrefarg_s.exe_3294]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_s\_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_byte_1_d.exe_3295]
+RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_d\expl_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_byte_1_r.exe_3296]
+RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_r\expl_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_double_1_d.exe_3297]
+RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_d\expl_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_double_1_r.exe_3298]
+RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_r\expl_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_float_1_d.exe_3299]
+RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_d\expl_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_float_1_r.exe_3300]
+RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_r\expl_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_byte_1_d.exe_3301]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d\expl_gc_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_byte_1_r.exe_3302]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r\expl_gc_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_double_1_d.exe_3303]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_d\expl_gc_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_double_1_r.exe_3304]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_r\expl_gc_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_float_1_d.exe_3305]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_d\expl_gc_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_float_1_r.exe_3306]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_r\expl_gc_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_int_1_d.exe_3307]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_d\expl_gc_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_int_1_r.exe_3308]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_r\expl_gc_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_long_1_d.exe_3309]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_d\expl_gc_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_long_1_r.exe_3310]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_r\expl_gc_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_obj_1_d.exe_3311]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d\expl_gc_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_obj_1_r.exe_3312]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r\expl_gc_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_short_1_d.exe_3313]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_d\expl_gc_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_short_1_r.exe_3314]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_r\expl_gc_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_val_1_d.exe_3315]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_d\expl_gc_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_gc_val_1_r.exe_3316]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_r\expl_gc_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_int_1_d.exe_3317]
+RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_d\expl_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_int_1_r.exe_3318]
+RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_r\expl_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_long_1_d.exe_3319]
+RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_d\expl_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_long_1_r.exe_3320]
+RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_r\expl_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_obj_1_d.exe_3321]
+RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_d\expl_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_obj_1_r.exe_3322]
+RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_r\expl_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_short_1_d.exe_3323]
+RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_d\expl_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_short_1_r.exe_3324]
+RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_r\expl_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_val_1_d.exe_3325]
+RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_d\expl_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_val_1_r.exe_3326]
+RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_r\expl_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_byte_1_d.exe_3327]
+RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_d\seq_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_byte_1_r.exe_3328]
+RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_r\seq_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_double_1_d.exe_3329]
+RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_d\seq_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_double_1_r.exe_3330]
+RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_r\seq_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_float_1_d.exe_3331]
+RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_d\seq_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_float_1_r.exe_3332]
+RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_r\seq_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_byte_1_d.exe_3333]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d\seq_gc_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_byte_1_r.exe_3334]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r\seq_gc_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_double_1_d.exe_3335]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_d\seq_gc_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_double_1_r.exe_3336]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_r\seq_gc_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_float_1_d.exe_3337]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_d\seq_gc_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_float_1_r.exe_3338]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_r\seq_gc_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_int_1_d.exe_3339]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_d\seq_gc_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_int_1_r.exe_3340]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_r\seq_gc_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_long_1_d.exe_3341]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_d\seq_gc_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_long_1_r.exe_3342]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_r\seq_gc_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_obj_1_d.exe_3343]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d\seq_gc_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_obj_1_r.exe_3344]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r\seq_gc_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_short_1_d.exe_3345]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_d\seq_gc_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_short_1_r.exe_3346]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_r\seq_gc_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_val_1_d.exe_3347]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_d\seq_gc_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_gc_val_1_r.exe_3348]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_r\seq_gc_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_int_1_d.exe_3349]
+RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_d\seq_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_int_1_r.exe_3350]
+RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_r\seq_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_long_1_d.exe_3351]
+RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_d\seq_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_long_1_r.exe_3352]
+RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_r\seq_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_obj_1_d.exe_3353]
+RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_d\seq_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_obj_1_r.exe_3354]
+RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_r\seq_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_short_1_d.exe_3355]
+RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_d\seq_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_short_1_r.exe_3356]
+RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_r\seq_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_val_1_d.exe_3357]
+RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_d\seq_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[seq_val_1_r.exe_3358]
+RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_r\seq_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[expl_funcptr_gc_d.exe_3359]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d\expl_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[expl_funcptr_gc_r.exe_3360]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r\expl_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[expl_funcptr_val_d.exe_3361]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d\expl_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[expl_funcptr_val_r.exe_3362]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r\expl_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[seq_funcptr_gc_d.exe_3363]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d\seq_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[seq_funcptr_gc_r.exe_3364]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r\seq_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[seq_funcptr_val_d.exe_3365]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d\seq_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[seq_funcptr_val_r.exe_3366]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r\seq_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit1.exe_3367]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit1\_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit2.exe_3368]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit2\_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit3.exe_3369]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit3\_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit4.exe_3370]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit4\_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit5.exe_3371]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit5\_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit6.exe_3372]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit6\_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit7.exe_3373]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit7\_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgexplicit8.exe_3374]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit8\_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefarg_box_f8.exe_3375]
+RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8\_il_dbgrefarg_box_f8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgrefarg_box_val.exe_3376]
+RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val\_il_dbgrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefarg_box_f8.exe_3377]
+RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8\_il_relrefarg_box_f8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relrefarg_box_val.exe_3378]
+RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_val\_il_relrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_val
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit1.exe_3379]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit1\_opt_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit2.exe_3380]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit2\_opt_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit3.exe_3381]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit3\_opt_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit4.exe_3382]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit4\_opt_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit5.exe_3383]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit5\_opt_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit6.exe_3384]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit6\_opt_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit7.exe_3385]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit7\_opt_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgexplicit8.exe_3386]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit8\_opt_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit1.exe_3387]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit1\_opt_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit2.exe_3388]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit2\_opt_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit3.exe_3389]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit3\_opt_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit4.exe_3390]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit4\_opt_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit5.exe_3391]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit5\_opt_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit6.exe_3392]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit6\_opt_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit7.exe_3393]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit7\_opt_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_relexplicit8.exe_3394]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit8\_opt_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit1.exe_3395]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit1\_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit2.exe_3396]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit2\_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit3.exe_3397]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit3\_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit4.exe_3398]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit4\_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit5.exe_3399]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit5\_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit6.exe_3400]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit6\_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit7.exe_3401]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit7\_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relexplicit8.exe_3402]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit8\_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgrotarg_double.exe_3403]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_double\_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrotarg_float.exe_3404]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_float\_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrotarg_objref.exe_3405]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_objref\_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgrotarg_valref.exe_3406]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_valref\_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgrotarg_double.exe_3407]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double\_il_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrotarg_float.exe_3408]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float\_il_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrotarg_objref.exe_3409]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref\_il_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrotarg_valref.exe_3410]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref\_il_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrotate_i4.exe_3411]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4\_il_dbgrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrotate_u2.exe_3412]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2\_il_dbgrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotarg_double.exe_3413]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_double\_il_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotarg_float.exe_3414]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_float\_il_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotarg_objref.exe_3415]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_objref\_il_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotarg_valref.exe_3416]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_valref\_il_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotate_i4.exe_3417]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_i4\_il_relrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrotate_u2.exe_3418]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_u2\_il_relrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_opt_dbgrotarg_double.exe_3419]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double\_opt_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrotarg_float.exe_3420]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float\_opt_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrotarg_objref.exe_3421]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref\_opt_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_dbgrotarg_valref.exe_3422]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref\_opt_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrotarg_double.exe_3423]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_double\_opt_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrotarg_float.exe_3424]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_float\_opt_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrotarg_objref.exe_3425]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref\_opt_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_opt_relrotarg_valref.exe_3426]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref\_opt_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrotarg_double.exe_3427]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_double\_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrotarg_float.exe_3428]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_float\_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrotarg_objref.exe_3429]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_objref\_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relrotarg_valref.exe_3430]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_valref\_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intToByte.exe_3431]
+RelativePath=JIT\Methodical\flowgraph\bug614098\intToByte\intToByte.exe
+WorkingDir=JIT\Methodical\flowgraph\bug614098\intToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ehCodeMotion.exe_3432]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ehCodeMotion\ehCodeMotion.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ehCodeMotion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[finallyclone.exe_3433]
+RelativePath=JIT\Methodical\flowgraph\bug619534\finallyclone\finallyclone.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\finallyclone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ILStackAllocRepro.exe_3434]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro\ILStackAllocRepro.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[moduleHandleCache.exe_3435]
+RelativePath=JIT\Methodical\flowgraph\bug619534\moduleHandleCache\moduleHandleCache.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\moduleHandleCache
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NonVirtualCall.exe_3436]
+RelativePath=JIT\Methodical\flowgraph\bug619534\NonVirtualCall\NonVirtualCall.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\NonVirtualCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[twoEndFinallys.exe_3437]
+RelativePath=JIT\Methodical\flowgraph\bug619534\twoEndFinallys\twoEndFinallys.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\twoEndFinallys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ptuple_lost.exe_3438]
+RelativePath=JIT\Methodical\flowgraph\bug621705\ptuple_lost\ptuple_lost.exe
+WorkingDir=JIT\Methodical\flowgraph\bug621705\ptuple_lost
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ssa_tuIsAddr.exe_3439]
+RelativePath=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr\ssa_tuIsAddr.exe
+WorkingDir=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[GCMaskForGSCookie.exe_3440]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie\GCMaskForGSCookie.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arrayDim.exe_3441]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim\arrayDim.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[loopIV_init.exe_3442]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init\loopIV_init.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[osrAddovershot.exe_3443]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot\osrAddovershot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[castClassEH.exe_3444]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH\castClassEH.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[dependentlifetimes.exe_3445]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes\dependentlifetimes.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[EHCopyProp.exe_3446]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp\EHCopyProp.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ehDescriptorPtrUpdate.exe_3447]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate\ehDescriptorPtrUpdate.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fgloop.exe_3448]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop\fgloop.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fgloop2.exe_3449]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2\fgloop2.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[GCOverReporting.exe_3450]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting\GCOverReporting.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[sealedCastVariance.exe_3451]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance\sealedCastVariance.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[singleRefField.exe_3452]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField\singleRefField.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroInitStackSlot.exe_3453]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot\zeroInitStackSlot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cpblkInt32.exe_3454]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32\cpblkInt32.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[flowgraph.exe_3455]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph\flowgraph.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[regionLive.exe_3456]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\regionLive\regionLive.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\regionLive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[indexMinusOne.exe_3457]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne\indexMinusOne.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatileLocal1.exe_3458]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1\volatileLocal1.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[volatileLocal2.exe_3459]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2\volatileLocal2.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[qMarkColon.exe_3460]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon\qMarkColon.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bouncingball_cs_d.exe_3461]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_d\bouncingball_cs_d.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bouncingball_cs_do.exe_3462]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_do\bouncingball_cs_do.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bouncingball_cs_r.exe_3463]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_r\bouncingball_cs_r.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bouncingball_cs_ro.exe_3464]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_ro\bouncingball_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[1000w1d_cs_d.exe_3465]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_d\1000w1d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[1000w1d_cs_do.exe_3466]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_do\1000w1d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[1000w1d_cs_r.exe_3467]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_r\1000w1d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[1000w1d_cs_ro.exe_3468]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_ro\1000w1d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w250d_cs_d.exe_3469]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_d\10w250d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w250d_cs_do.exe_3470]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_do\10w250d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w250d_cs_r.exe_3471]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_r\10w250d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w250d_cs_ro.exe_3472]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_ro\10w250d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w5d_cs_d.exe_3473]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_d\10w5d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w5d_cs_do.exe_3474]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_do\10w5d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w5d_cs_r.exe_3475]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_r\10w5d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[10w5d_cs_ro.exe_3476]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_ro\10w5d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-01_cs_d.exe_3477]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_d\200w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-01_cs_do.exe_3478]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_do\200w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-01_cs_r.exe_3479]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_r\200w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-01_cs_ro.exe_3480]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_ro\200w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-02_cs_d.exe_3481]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_d\200w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-02_cs_do.exe_3482]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_do\200w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-02_cs_r.exe_3483]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_r\200w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[200w1d-02_cs_ro.exe_3484]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_ro\200w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-01_cs_d.exe_3485]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_d\3w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-01_cs_do.exe_3486]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_do\3w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-01_cs_r.exe_3487]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_r\3w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-01_cs_ro.exe_3488]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_ro\3w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-02_cs_d.exe_3489]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_d\3w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-02_cs_do.exe_3490]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_do\3w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-02_cs_r.exe_3491]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_r\3w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[3w1d-02_cs_ro.exe_3492]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_ro\3w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-01_cs_d.exe_3493]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_d\5w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-01_cs_do.exe_3494]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_do\5w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-01_cs_r.exe_3495]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_r\5w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-01_cs_ro.exe_3496]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_ro\5w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-02_cs_d.exe_3497]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_d\5w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-02_cs_do.exe_3498]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_do\5w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-02_cs_r.exe_3499]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_r\5w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-02_cs_ro.exe_3500]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_ro\5w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-03_cs_d.exe_3501]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_d\5w1d-03_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-03_cs_do.exe_3502]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_do\5w1d-03_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-03_cs_r.exe_3503]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_r\5w1d-03_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-03_cs_ro.exe_3504]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_ro\5w1d-03_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-04_cs_d.exe_3505]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_d\5w1d-04_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-04_cs_do.exe_3506]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_do\5w1d-04_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-04_cs_r.exe_3507]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_r\5w1d-04_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-04_cs_ro.exe_3508]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_ro\5w1d-04_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-05_cs_d.exe_3509]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_d\5w1d-05_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-05_cs_do.exe_3510]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_do\5w1d-05_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-05_cs_r.exe_3511]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_r\5w1d-05_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-05_cs_ro.exe_3512]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_ro\5w1d-05_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-06_cs_d.exe_3513]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_d\5w1d-06_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-06_cs_do.exe_3514]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_do\5w1d-06_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-06_cs_r.exe_3515]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_r\5w1d-06_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[5w1d-06_cs_ro.exe_3516]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_ro\5w1d-06_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[convr4a_cs_d.exe_3517]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_d\convr4a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr4a_cs_do.exe_3518]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_do\convr4a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr4a_cs_r.exe_3519]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_r\convr4a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr4a_cs_ro.exe_3520]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_ro\convr4a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr4d_il_d.exe_3521]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_d\convr4d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr4d_il_r.exe_3522]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_r\convr4d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8a_cs_d.exe_3523]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_d\convr8a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8a_cs_do.exe_3524]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_do\convr8a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8a_cs_r.exe_3525]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_r\convr8a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8a_cs_ro.exe_3526]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_ro\convr8a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8d_il_d.exe_3527]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_d\convr8d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convr8d_il_r.exe_3528]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_r\convr8d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[convx_il_d.exe_3529]
+RelativePath=JIT\Methodical\FPtrunc\convx_il_d\convx_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convx_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[convx_il_r.exe_3530]
+RelativePath=JIT\Methodical\FPtrunc\convx_il_r\convx_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convx_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_3531]
+RelativePath=JIT\Methodical\inlining\bug505642\test\test.exe
+WorkingDir=JIT\Methodical\inlining\bug505642\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[variancesmall.exe_3532]
+RelativePath=JIT\Methodical\inlining\dev10_bug719093\variancesmall\variancesmall.exe
+WorkingDir=JIT\Methodical\inlining\dev10_bug719093\variancesmall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbglcs_long.exe_3533]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_long\_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_dbglcs_ulong.exe_3534]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_ulong\_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_il_dbghugedim.exe_3535]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbghugedim\_il_dbghugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbghugedim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[_il_dbglcs_long.exe_3536]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_long\_il_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_il_dbglcs_ulong.exe_3537]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_ulong\_il_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_il_relhugedim.exe_3538]
+RelativePath=JIT\Methodical\int64\arrays\_il_relhugedim\_il_relhugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_relhugedim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[_il_rellcs_long.exe_3539]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_long\_il_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_il_rellcs_ulong.exe_3540]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_ulong\_il_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_rellcs_long.exe_3541]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_long\_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_rellcs_ulong.exe_3542]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_ulong\_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_dbglcs_long.exe_3543]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_long\_speed_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_dbglcs_ulong.exe_3544]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong\_speed_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_rellcs_long.exe_3545]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_long\_speed_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_rellcs_ulong.exe_3546]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_ulong\_speed_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_dbgbinop.exe_3547]
+RelativePath=JIT\Methodical\int64\misc\_dbgbinop\_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgbox.exe_3548]
+RelativePath=JIT\Methodical\int64\misc\_dbgbox\_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgbinop.exe_3549]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbinop\_il_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgbox.exe_3550]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbox\_il_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relbinop.exe_3551]
+RelativePath=JIT\Methodical\int64\misc\_il_relbinop\_il_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relbox.exe_3552]
+RelativePath=JIT\Methodical\int64\misc\_il_relbox\_il_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relbinop.exe_3553]
+RelativePath=JIT\Methodical\int64\misc\_relbinop\_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relbox.exe_3554]
+RelativePath=JIT\Methodical\int64\misc\_relbox\_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgbinop.exe_3555]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbinop\_speed_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgbox.exe_3556]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbox\_speed_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relbinop.exe_3557]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbinop\_speed_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relbox.exe_3558]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbox\_speed_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_addsub.exe_3559]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_addsub\_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldc_div.exe_3560]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_div\_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldc_mul.exe_3561]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mul\_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldc_mulovf.exe_3562]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf\_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldfld_mul.exe_3563]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mul\_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldfld_mulovf.exe_3564]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf\_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldsfld_mul.exe_3565]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul\_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_ldsfld_mulovf.exe_3566]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf\_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgs_muldiv.exe_3567]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_muldiv\_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_addsub.exe_3568]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_addsub\_il_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldc_div.exe_3569]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_div\_il_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldc_mul.exe_3570]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul\_il_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldc_mulovf.exe_3571]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf\_il_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldfld_mul.exe_3572]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul\_il_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldfld_mulovf.exe_3573]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf\_il_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldsfld_mul.exe_3574]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul\_il_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_ldsfld_mulovf.exe_3575]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf\_il_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgs_muldiv.exe_3576]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_muldiv\_il_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_addsub.exe_3577]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_addsub\_il_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldc_div.exe_3578]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_div\_il_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldc_mul.exe_3579]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mul\_il_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldc_mulovf.exe_3580]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf\_il_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldfld_mul.exe_3581]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mul\_il_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldfld_mulovf.exe_3582]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf\_il_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldsfld_mul.exe_3583]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul\_il_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_ldsfld_mulovf.exe_3584]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf\_il_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rels_muldiv.exe_3585]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_muldiv\_il_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_addsub.exe_3586]
+RelativePath=JIT\Methodical\int64\signed\_rels_addsub\_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldc_div.exe_3587]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_div\_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldc_mul.exe_3588]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mul\_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldc_mulovf.exe_3589]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mulovf\_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldfld_mul.exe_3590]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mul\_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldfld_mulovf.exe_3591]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mulovf\_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldsfld_mul.exe_3592]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mul\_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_ldsfld_mulovf.exe_3593]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf\_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_rels_muldiv.exe_3594]
+RelativePath=JIT\Methodical\int64\signed\_rels_muldiv\_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_addsub.exe_3595]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_addsub\_speed_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldc_div.exe_3596]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div\_speed_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldc_mul.exe_3597]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul\_speed_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldc_mulovf.exe_3598]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf\_speed_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldfld_mul.exe_3599]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul\_speed_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldfld_mulovf.exe_3600]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf\_speed_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldsfld_mul.exe_3601]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul\_speed_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_ldsfld_mulovf.exe_3602]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf\_speed_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgs_muldiv.exe_3603]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_muldiv\_speed_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_addsub.exe_3604]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_addsub\_speed_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldc_div.exe_3605]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_div\_speed_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldc_mul.exe_3606]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mul\_speed_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldc_mulovf.exe_3607]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf\_speed_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldfld_mul.exe_3608]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul\_speed_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldfld_mulovf.exe_3609]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf\_speed_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldsfld_mul.exe_3610]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul\_speed_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_ldsfld_mulovf.exe_3611]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf\_speed_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rels_muldiv.exe_3612]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_muldiv\_speed_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgsuperlong.exe_3613]
+RelativePath=JIT\Methodical\int64\superlong\_dbgsuperlong\_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgsuperlong.exe_3614]
+RelativePath=JIT\Methodical\int64\superlong\_il_dbgsuperlong\_il_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relsuperlong.exe_3615]
+RelativePath=JIT\Methodical\int64\superlong\_il_relsuperlong\_il_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relsuperlong.exe_3616]
+RelativePath=JIT\Methodical\int64\superlong\_relsuperlong\_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgsuperlong.exe_3617]
+RelativePath=JIT\Methodical\int64\superlong\_speed_dbgsuperlong\_speed_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relsuperlong.exe_3618]
+RelativePath=JIT\Methodical\int64\superlong\_speed_relsuperlong\_speed_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgaddsub.exe_3619]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgaddsub\_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldc_mul.exe_3620]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mul\_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldc_mulovf.exe_3621]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mulovf\_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldfld_mul.exe_3622]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mul\_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldfld_mulovf.exe_3623]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf\_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldsfld_mul.exe_3624]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mul\_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgldsfld_mulovf.exe_3625]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf\_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgmuldiv.exe_3626]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgmuldiv\_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgaddsub.exe_3627]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgaddsub\_il_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldc_mul.exe_3628]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mul\_il_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldc_mulovf.exe_3629]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf\_il_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldfld_mul.exe_3630]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul\_il_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldfld_mulovf.exe_3631]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf\_il_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldsfld_mul.exe_3632]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul\_il_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldsfld_mulovf.exe_3633]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf\_il_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgmuldiv.exe_3634]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgmuldiv\_il_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reladdsub.exe_3635]
+RelativePath=JIT\Methodical\int64\unsigned\_il_reladdsub\_il_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldc_mul.exe_3636]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mul\_il_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldc_mulovf.exe_3637]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mulovf\_il_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldfld_mul.exe_3638]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mul\_il_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldfld_mulovf.exe_3639]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf\_il_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldsfld_mul.exe_3640]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mul\_il_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldsfld_mulovf.exe_3641]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf\_il_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relmuldiv.exe_3642]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relmuldiv\_il_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reladdsub.exe_3643]
+RelativePath=JIT\Methodical\int64\unsigned\_reladdsub\_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldc_mul.exe_3644]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mul\_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldc_mulovf.exe_3645]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mulovf\_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldfld_mul.exe_3646]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mul\_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldfld_mulovf.exe_3647]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mulovf\_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldsfld_mul.exe_3648]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mul\_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relldsfld_mulovf.exe_3649]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mulovf\_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relmuldiv.exe_3650]
+RelativePath=JIT\Methodical\int64\unsigned\_relmuldiv\_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgaddsub.exe_3651]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgaddsub\_speed_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldc_mul.exe_3652]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul\_speed_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldc_mulovf.exe_3653]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf\_speed_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldfld_mul.exe_3654]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul\_speed_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldfld_mulovf.exe_3655]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf\_speed_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldsfld_mul.exe_3656]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul\_speed_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgldsfld_mulovf.exe_3657]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf\_speed_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgmuldiv.exe_3658]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv\_speed_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reladdsub.exe_3659]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_reladdsub\_speed_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldc_mul.exe_3660]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mul\_speed_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldc_mulovf.exe_3661]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf\_speed_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldfld_mul.exe_3662]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mul\_speed_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldfld_mulovf.exe_3663]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf\_speed_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldsfld_mul.exe_3664]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul\_speed_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relldsfld_mulovf.exe_3665]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf\_speed_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relmuldiv.exe_3666]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relmuldiv\_speed_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1a_cs_d.exe_3667]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_d\25param1a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1a_cs_do.exe_3668]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_do\25param1a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1a_cs_r.exe_3669]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_r\25param1a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1a_cs_ro.exe_3670]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_ro\25param1a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1b_il_d.exe_3671]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_d\25param1b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1b_il_r.exe_3672]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_r\25param1b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1c_il_d.exe_3673]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_d\25param1c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param1c_il_r.exe_3674]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_r\25param1c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param2a_cs_d.exe_3675]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_d\25param2a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2988
+HostStyle=Any
+[25param2a_cs_do.exe_3676]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_do\25param2a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987;ISSUE_2988
+HostStyle=Any
+[25param2a_cs_r.exe_3677]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_r\25param2a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2988
+HostStyle=Any
+[25param2a_cs_ro.exe_3678]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_ro\25param2a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987;ISSUE_2988
+HostStyle=Any
+[25param2b_il_d.exe_3679]
+RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_d\25param2b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[25param2b_il_r.exe_3680]
+RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_r\25param2b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[25param2c_il_d.exe_3681]
+RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_d\25param2c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[25param2c_il_r.exe_3682]
+RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_r\25param2c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[25param3a_cs_d.exe_3683]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_d\25param3a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3a_cs_do.exe_3684]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_do\25param3a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3a_cs_r.exe_3685]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_r\25param3a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3a_cs_ro.exe_3686]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_ro\25param3a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3b_il_d.exe_3687]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_d\25param3b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3b_il_r.exe_3688]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_r\25param3b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3c_il_d.exe_3689]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_d\25param3c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25param3c_il_r.exe_3690]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_r\25param3c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25paramMixed_il_d.exe_3691]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_d\25paramMixed_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[25paramMixed_il_r.exe_3692]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_r\25paramMixed_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgtest1.exe_3693]
+RelativePath=JIT\Methodical\Invoke\callvirt\_dbgtest1\_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest1.exe_3694]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest1\_il_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest2.exe_3695]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest2\_il_dbgtest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest3.exe_3696]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest3\_il_dbgtest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest1.exe_3697]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest1\_il_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest2.exe_3698]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest2\_il_reltest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest3.exe_3699]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest3\_il_reltest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reltest1.exe_3700]
+RelativePath=JIT\Methodical\Invoke\callvirt\_reltest1\_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgtest1.exe_3701]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1\_speed_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reltest1.exe_3702]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_reltest1\_speed_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgval_ctor.exe_3703]
+RelativePath=JIT\Methodical\Invoke\ctor\_dbgval_ctor\_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_dbgval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgval_cctor.exe_3704]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor\_il_dbgval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgval_ctor_newobj.exe_3705]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj\_il_dbgval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relval_cctor.exe_3706]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_cctor\_il_relval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_cctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relval_ctor_newobj.exe_3707]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj\_il_relval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relval_ctor.exe_3708]
+RelativePath=JIT\Methodical\Invoke\ctor\_relval_ctor\_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_relval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgval_ctor.exe_3709]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor\_speed_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relval_ctor.exe_3710]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_relval_ctor\_speed_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_relval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgdeep.exe_3711]
+RelativePath=JIT\Methodical\Invoke\deep\_dbgdeep\_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_dbgdeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep1.exe_3712]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep1\_il_dbgdeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep2.exe_3713]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep2\_il_dbgdeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep1.exe_3714]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep1\_il_reldeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep2.exe_3715]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep2\_il_reldeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reldeep.exe_3716]
+RelativePath=JIT\Methodical\Invoke\deep\_reldeep\_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_reldeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgdeep.exe_3717]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_dbgdeep\_speed_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_dbgdeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reldeep.exe_3718]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_reldeep\_speed_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_reldeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgrecurse.exe_3719]
+RelativePath=JIT\Methodical\Invoke\fptr\_dbgrecurse\_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_dbgrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgftn_t.exe_3720]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgftn_t\_il_dbgftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbginstftn.exe_3721]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn\_il_dbginstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbginstftn_t.exe_3722]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t\_il_dbginstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_calli.exe_3723]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli\_il_dbgrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_jmp.exe_3724]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp\_il_dbgrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_jmpi.exe_3725]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi\_il_dbgrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_tail_call.exe_3726]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call\_il_dbgrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_tail_calli.exe_3727]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli\_il_dbgrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvalftn.exe_3728]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn\_il_dbgvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvalftn_t.exe_3729]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t\_il_dbgvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvirtftn.exe_3730]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn\_il_dbgvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvirtftn_t.exe_3731]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t\_il_dbgvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relftn_t.exe_3732]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relftn_t\_il_relftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relinstftn.exe_3733]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn\_il_relinstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relinstftn_t.exe_3734]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn_t\_il_relinstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_calli.exe_3735]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli\_il_relrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_jmp.exe_3736]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp\_il_relrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_jmpi.exe_3737]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi\_il_relrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_tail_call.exe_3738]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call\_il_relrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_tail_calli.exe_3739]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli\_il_relrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvalftn.exe_3740]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn\_il_relvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvalftn_t.exe_3741]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn_t\_il_relvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvirtftn.exe_3742]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn\_il_relvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvirtftn_t.exe_3743]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t\_il_relvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relrecurse.exe_3744]
+RelativePath=JIT\Methodical\Invoke\fptr\_relrecurse\_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_relrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgrecurse.exe_3745]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse\_speed_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relrecurse.exe_3746]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_relrecurse\_speed_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_relrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgobj.exe_3747]
+RelativePath=JIT\Methodical\Invoke\implicit\_dbgobj\_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_dbgobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgfr4.exe_3748]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr4\_il_dbgfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgfr8.exe_3749]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr8\_il_dbgfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi4i1.exe_3750]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i1\_il_dbgi4i1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgi4i2.exe_3751]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i2\_il_dbgi4i2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgi4u1.exe_3752]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u1\_il_dbgi4u1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgi4u2.exe_3753]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u2\_il_dbgi4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi4u4.exe_3754]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u4\_il_dbgi4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgi8u8.exe_3755]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi8u8\_il_dbgi8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi8u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgii1.exe_3756]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii1\_il_dbgii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgii2.exe_3757]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii2\_il_dbgii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgii4.exe_3758]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii4\_il_dbgii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgiu1.exe_3759]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu1\_il_dbgiu1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgiu2.exe_3760]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu2\_il_dbgiu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgiu4.exe_3761]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu4\_il_dbgiu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgobjref.exe_3762]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgobjref\_il_dbgobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgobjref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relfr4.exe_3763]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr4\_il_relfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relfr8.exe_3764]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr8\_il_relfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli4i1.exe_3765]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i1\_il_reli4i1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reli4i2.exe_3766]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i2\_il_reli4i2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reli4u1.exe_3767]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u1\_il_reli4u1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reli4u2.exe_3768]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u2\_il_reli4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli4u4.exe_3769]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u4\_il_reli4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reli8u8.exe_3770]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli8u8\_il_reli8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli8u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relii1.exe_3771]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii1\_il_relii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relii2.exe_3772]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii2\_il_relii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relii4.exe_3773]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii4\_il_relii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reliu1.exe_3774]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu1\_il_reliu1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reliu2.exe_3775]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu2\_il_reliu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reliu4.exe_3776]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu4\_il_reliu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relobjref.exe_3777]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relobjref\_il_relobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relobjref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relobj.exe_3778]
+RelativePath=JIT\Methodical\Invoke\implicit\_relobj\_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_relobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgobj.exe_3779]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_dbgobj\_speed_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_dbgobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relobj.exe_3780]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_relobj\_speed_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_relobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcatchfinally.exe_3781]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally\_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgcatchfinally_tail.exe_3782]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail\_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfault.exe_3783]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault\_il_dbgcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfault_jmp.exe_3784]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp\_il_dbgcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfault_tail.exe_3785]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail\_il_dbgcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfinally_ind.exe_3786]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind\_il_dbgcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfinally_jmp.exe_3787]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp\_il_dbgcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfinally_jmpind.exe_3788]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind\_il_dbgcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcatchfinally_tail.exe_3789]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail\_il_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfault.exe_3790]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault\_il_relcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfault_jmp.exe_3791]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp\_il_relcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfault_tail.exe_3792]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail\_il_relcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfinally_ind.exe_3793]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind\_il_relcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfinally_jmp.exe_3794]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp\_il_relcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfinally_jmpind.exe_3795]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind\_il_relcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcatchfinally_tail.exe_3796]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail\_il_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcatchfinally.exe_3797]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally\_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcatchfinally_tail.exe_3798]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail\_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcatchfinally.exe_3799]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally\_speed_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcatchfinally_tail.exe_3800]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail\_speed_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcatchfinally.exe_3801]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally\_speed_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcatchfinally_tail.exe_3802]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail\_speed_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgthisnull.exe_3803]
+RelativePath=JIT\Methodical\Invoke\thiscall\_dbgthisnull\_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_dbgthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relthisnull.exe_3804]
+RelativePath=JIT\Methodical\Invoke\thiscall\_relthisnull\_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_relthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgthisnull.exe_3805]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull\_speed_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relthisnull.exe_3806]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_relthisnull\_speed_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_relthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bug603649.exe_3807]
+RelativePath=JIT\Methodical\jitinterface\bug603649\bug603649.exe
+WorkingDir=JIT\Methodical\jitinterface\bug603649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgldtoken.exe_3808]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtoken\_il_dbgldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldtokena.exe_3809]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtokena\_il_dbgldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtokena
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgptr_types.exe_3810]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgptr_types\_il_dbgptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgptr_types
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtypes.exe_3811]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgtypes\_il_dbgtypes.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgtypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relldtoken.exe_3812]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtoken\_il_relldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldtokena.exe_3813]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtokena\_il_relldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtokena
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relptr_types.exe_3814]
+RelativePath=JIT\Methodical\ldtoken\_il_relptr_types\_il_relptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relptr_types
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltypes.exe_3815]
+RelativePath=JIT\Methodical\ldtoken\_il_reltypes\_il_reltypes.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_reltypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[call01_small.exe_3816]
+RelativePath=JIT\Methodical\localloc\call\call01_small\call01_small.exe
+WorkingDir=JIT\Methodical\localloc\call\call01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[verify01_dynamic.exe_3817]
+RelativePath=JIT\Methodical\localloc\verify\verify01_dynamic\verify01_dynamic.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[verify01_large.exe_3818]
+RelativePath=JIT\Methodical\localloc\verify\verify01_large\verify01_large.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[verify01_small.exe_3819]
+RelativePath=JIT\Methodical\localloc\verify\verify01_small\verify01_small.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroInit01_large.exe_3820]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroInit01_large\zeroInit01_large.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroInit01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[zeroinit01_small.exe_3821]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroinit01_small\zeroinit01_small.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroinit01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_d.exe_3822]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[classarr_cs_do.exe_3823]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_r.exe_3824]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[classarr_cs_ro.exe_3825]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_d.exe_3826]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[doublearr_cs_do.exe_3827]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_r.exe_3828]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[doublearr_cs_ro.exe_3829]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_d.exe_3830]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[jaggedarr_cs_do.exe_3831]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_r.exe_3832]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3833]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_d.exe_3834]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[stringarr_cs_do.exe_3835]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_r.exe_3836]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[stringarr_cs_ro.exe_3837]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_d.exe_3838]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[structarr_cs_do.exe_3839]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_r.exe_3840]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[structarr_cs_ro.exe_3841]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bool_cs_d.exe_3842]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_d\bool_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bool_cs_do.exe_3843]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_do\bool_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bool_cs_r.exe_3844]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_r\bool_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[bool_cs_ro.exe_3845]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_ro\bool_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byte_cs_d.exe_3846]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_d\byte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byte_cs_do.exe_3847]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_do\byte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byte_cs_r.exe_3848]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_r\byte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[byte_cs_ro.exe_3849]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_ro\byte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[char_cs_d.exe_3850]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_d\char_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[char_cs_do.exe_3851]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_do\char_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[char_cs_r.exe_3852]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_r\char_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[char_cs_ro.exe_3853]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_ro\char_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimal_cs_d.exe_3854]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_d\decimal_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimal_cs_do.exe_3855]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_do\decimal_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimal_cs_r.exe_3856]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_r\decimal_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[decimal_cs_ro.exe_3857]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro\decimal_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[double_cs_d.exe_3858]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_d\double_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[double_cs_do.exe_3859]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_do\double_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[double_cs_r.exe_3860]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_r\double_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[double_cs_ro.exe_3861]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_ro\double_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[float_cs_d.exe_3862]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_d\float_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[float_cs_do.exe_3863]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_do\float_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[float_cs_r.exe_3864]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_r\float_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[float_cs_ro.exe_3865]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_ro\float_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int_cs_d.exe_3866]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_d\int_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int_cs_do.exe_3867]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_do\int_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int_cs_r.exe_3868]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_r\int_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[int_cs_ro.exe_3869]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_ro\int_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[long_cs_d.exe_3870]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_d\long_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[long_cs_do.exe_3871]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_do\long_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[long_cs_r.exe_3872]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_r\long_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[long_cs_ro.exe_3873]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_ro\long_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[sbyte_cs_d.exe_3874]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d\sbyte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[sbyte_cs_do.exe_3875]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do\sbyte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[sbyte_cs_r.exe_3876]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r\sbyte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[sbyte_cs_ro.exe_3877]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro\sbyte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[short_cs_d.exe_3878]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_d\short_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[short_cs_do.exe_3879]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_do\short_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[short_cs_r.exe_3880]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_r\short_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[short_cs_ro.exe_3881]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_ro\short_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint_cs_d.exe_3882]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_d\uint_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint_cs_do.exe_3883]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_do\uint_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint_cs_r.exe_3884]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_r\uint_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[uint_cs_ro.exe_3885]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_ro\uint_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ulong_cs_d.exe_3886]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_d\ulong_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ulong_cs_do.exe_3887]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_do\ulong_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ulong_cs_r.exe_3888]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_r\ulong_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ulong_cs_ro.exe_3889]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro\ulong_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ushort_cs_d.exe_3890]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_d\ushort_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ushort_cs_do.exe_3891]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_do\ushort_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ushort_cs_r.exe_3892]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_r\ushort_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[ushort_cs_ro.exe_3893]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro\ushort_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_d.exe_3894]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_do.exe_3895]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_r.exe_3896]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_ro.exe_3897]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_d.exe_3898]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_do.exe_3899]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_r.exe_3900]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3901]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[plainarr_cs_d.exe_3902]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d\plainarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[plainarr_cs_do.exe_3903]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do\plainarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[plainarr_cs_r.exe_3904]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r\plainarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[plainarr_cs_ro.exe_3905]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro\plainarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_d.exe_3906]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_do.exe_3907]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_r.exe_3908]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_ro.exe_3909]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_d.exe_3910]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_do.exe_3911]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_r.exe_3912]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classarr_cs_ro.exe_3913]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_d.exe_3914]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_do.exe_3915]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_r.exe_3916]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[doublearr_cs_ro.exe_3917]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[intarr_cs_d.exe_3918]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_d\intarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[intarr_cs_do.exe_3919]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_do\intarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[intarr_cs_r.exe_3920]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_r\intarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[intarr_cs_ro.exe_3921]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro\intarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_d.exe_3922]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_do.exe_3923]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_r.exe_3924]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3925]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_d.exe_3926]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_do.exe_3927]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_r.exe_3928]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[stringarr_cs_ro.exe_3929]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_d.exe_3930]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_do.exe_3931]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_r.exe_3932]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[structarr_cs_ro.exe_3933]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_cs_d.exe_3934]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_d\arithm32_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_cs_do.exe_3935]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_do\arithm32_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_cs_r.exe_3936]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_r\arithm32_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_cs_ro.exe_3937]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_ro\arithm32_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_d.exe_3938]
+RelativePath=JIT\Methodical\NaN\arithm32_d\arithm32_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_do.exe_3939]
+RelativePath=JIT\Methodical\NaN\arithm32_do\arithm32_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_r.exe_3940]
+RelativePath=JIT\Methodical\NaN\arithm32_r\arithm32_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm32_ro.exe_3941]
+RelativePath=JIT\Methodical\NaN\arithm32_ro\arithm32_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_cs_d.exe_3942]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_d\arithm64_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_cs_do.exe_3943]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_do\arithm64_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_cs_r.exe_3944]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_r\arithm64_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_cs_ro.exe_3945]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_ro\arithm64_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_d.exe_3946]
+RelativePath=JIT\Methodical\NaN\arithm64_d\arithm64_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_do.exe_3947]
+RelativePath=JIT\Methodical\NaN\arithm64_do\arithm64_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_r.exe_3948]
+RelativePath=JIT\Methodical\NaN\arithm64_r\arithm64_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[arithm64_ro.exe_3949]
+RelativePath=JIT\Methodical\NaN\arithm64_ro\arithm64_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[comp32_il_d.exe_3950]
+RelativePath=JIT\Methodical\NaN\comp32_il_d\comp32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[comp32_il_r.exe_3951]
+RelativePath=JIT\Methodical\NaN\comp32_il_r\comp32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[comp64_il_d.exe_3952]
+RelativePath=JIT\Methodical\NaN\comp64_il_d\comp64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[comp64_il_r.exe_3953]
+RelativePath=JIT\Methodical\NaN\comp64_il_r\comp64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[cond32_il_d.exe_3954]
+RelativePath=JIT\Methodical\NaN\cond32_il_d\cond32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[cond32_il_r.exe_3955]
+RelativePath=JIT\Methodical\NaN\cond32_il_r\cond32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[cond64_il_d.exe_3956]
+RelativePath=JIT\Methodical\NaN\cond64_il_d\cond64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[cond64_il_r.exe_3957]
+RelativePath=JIT\Methodical\NaN\cond64_il_r\cond64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[intrinsic_cs_d.exe_3958]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_d\intrinsic_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intrinsic_cs_do.exe_3959]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_do\intrinsic_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intrinsic_cs_r.exe_3960]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_r\intrinsic_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intrinsic_cs_ro.exe_3961]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_ro\intrinsic_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intrinsic_nonf_il_d.exe_3962]
+RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_d\intrinsic_nonf_il_d.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[intrinsic_nonf_il_r.exe_3963]
+RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_r\intrinsic_nonf_il_r.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[r4NaNadd_cs_d.exe_3964]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_d\r4NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNadd_cs_do.exe_3965]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_do\r4NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNadd_cs_r.exe_3966]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_r\r4NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNadd_cs_ro.exe_3967]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_ro\r4NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4nanconv_il_d.exe_3968]
+RelativePath=JIT\Methodical\NaN\r4nanconv_il_d\r4nanconv_il_d.exe
+WorkingDir=JIT\Methodical\NaN\r4nanconv_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[r4nanconv_il_r.exe_3969]
+RelativePath=JIT\Methodical\NaN\r4nanconv_il_r\r4nanconv_il_r.exe
+WorkingDir=JIT\Methodical\NaN\r4nanconv_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[r4NaNdiv_cs_d.exe_3970]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_d\r4NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNdiv_cs_do.exe_3971]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_do\r4NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNdiv_cs_r.exe_3972]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_r\r4NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNdiv_cs_ro.exe_3973]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_ro\r4NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNmul_cs_d.exe_3974]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_d\r4NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNmul_cs_do.exe_3975]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_do\r4NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNmul_cs_r.exe_3976]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_r\r4NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNmul_cs_ro.exe_3977]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_ro\r4NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNrem_cs_d.exe_3978]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_d\r4NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNrem_cs_do.exe_3979]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_do\r4NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNrem_cs_r.exe_3980]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_r\r4NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNrem_cs_ro.exe_3981]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_ro\r4NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNsub_cs_d.exe_3982]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_d\r4NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNsub_cs_do.exe_3983]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_do\r4NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNsub_cs_r.exe_3984]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_r\r4NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r4NaNsub_cs_ro.exe_3985]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_ro\r4NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNadd_cs_d.exe_3986]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_d\r8NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNadd_cs_do.exe_3987]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_do\r8NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNadd_cs_r.exe_3988]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_r\r8NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNadd_cs_ro.exe_3989]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_ro\r8NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8nanconv_il_d.exe_3990]
+RelativePath=JIT\Methodical\NaN\r8nanconv_il_d\r8nanconv_il_d.exe
+WorkingDir=JIT\Methodical\NaN\r8nanconv_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[r8nanconv_il_r.exe_3991]
+RelativePath=JIT\Methodical\NaN\r8nanconv_il_r\r8nanconv_il_r.exe
+WorkingDir=JIT\Methodical\NaN\r8nanconv_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[r8NaNdiv_cs_d.exe_3992]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_d\r8NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNdiv_cs_do.exe_3993]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_do\r8NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNdiv_cs_r.exe_3994]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_r\r8NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNdiv_cs_ro.exe_3995]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_ro\r8NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNmul_cs_d.exe_3996]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_d\r8NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNmul_cs_do.exe_3997]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_do\r8NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNmul_cs_r.exe_3998]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_r\r8NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNmul_cs_ro.exe_3999]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_ro\r8NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNrem_cs_d.exe_4000]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_d\r8NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNrem_cs_do.exe_4001]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_do\r8NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNrem_cs_r.exe_4002]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_r\r8NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNrem_cs_ro.exe_4003]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_ro\r8NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNsub_cs_d.exe_4004]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_d\r8NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNsub_cs_do.exe_4005]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_do\r8NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNsub_cs_r.exe_4006]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_r\r8NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[r8NaNsub_cs_ro.exe_4007]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_ro\r8NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classic.exe_4008]
+RelativePath=JIT\Methodical\nonvirtualcall\classic\classic.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[classic_d.exe_4009]
+RelativePath=JIT\Methodical\nonvirtualcall\classic_d\classic_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[classic_r.exe_4010]
+RelativePath=JIT\Methodical\nonvirtualcall\classic_r\classic_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[delegate.exe_4011]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate\delegate.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[delegate_d.exe_4012]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate_d\delegate_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[delegate_r.exe_4013]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate_r\delegate_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[generics.exe_4014]
+RelativePath=JIT\Methodical\nonvirtualcall\generics\generics.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[generics2.exe_4015]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2\generics2.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[generics2_d.exe_4016]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_d\generics2_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[generics2_r.exe_4017]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_r\generics2_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[generics_d.exe_4018]
+RelativePath=JIT\Methodical\nonvirtualcall\generics_d\generics_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[generics_r.exe_4019]
+RelativePath=JIT\Methodical\nonvirtualcall\generics_r\generics_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[tailcall.exe_4020]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall\tailcall.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tailcall_d.exe_4021]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_d\tailcall_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tailcall_r.exe_4022]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_r\tailcall_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[valuetype.exe_4023]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype\valuetype.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[valuetype_d.exe_4024]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_d\valuetype_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[valuetype_r.exe_4025]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_r\valuetype_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatInfinitiesToInt_d.exe_4026]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_d\FloatInfinitiesToInt_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatInfinitiesToInt_do.exe_4027]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_do\FloatInfinitiesToInt_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatInfinitiesToInt_r.exe_4028]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_r\FloatInfinitiesToInt_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatInfinitiesToInt_ro.exe_4029]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro\FloatInfinitiesToInt_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatOvfToInt2_d.exe_4030]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_d\FloatOvfToInt2_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatOvfToInt2_do.exe_4031]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_do\FloatOvfToInt2_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[FloatOvfToInt2_r.exe_4032]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_r\FloatOvfToInt2_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[FloatOvfToInt2_ro.exe_4033]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_ro\FloatOvfToInt2_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[array1.exe_4034]
+RelativePath=JIT\Methodical\refany\array1\array1.exe
+WorkingDir=JIT\Methodical\refany\array1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[array2.exe_4035]
+RelativePath=JIT\Methodical\refany\array2\array2.exe
+WorkingDir=JIT\Methodical\refany\array2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[format.exe_4036]
+RelativePath=JIT\Methodical\refany\format\format.exe
+WorkingDir=JIT\Methodical\refany\format
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gcreport.exe_4037]
+RelativePath=JIT\Methodical\refany\gcreport\gcreport.exe
+WorkingDir=JIT\Methodical\refany\gcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[lcs.exe_4038]
+RelativePath=JIT\Methodical\refany\lcs\lcs.exe
+WorkingDir=JIT\Methodical\refany\lcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[native.exe_4039]
+RelativePath=JIT\Methodical\refany\native\native.exe
+WorkingDir=JIT\Methodical\refany\native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[virtcall.exe_4040]
+RelativePath=JIT\Methodical\refany\virtcall\virtcall.exe
+WorkingDir=JIT\Methodical\refany\virtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbggcreport.exe_4041]
+RelativePath=JIT\Methodical\refany\_dbggcreport\_dbggcreport.exe
+WorkingDir=JIT\Methodical\refany\_dbggcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgnative.exe_4042]
+RelativePath=JIT\Methodical\refany\_dbgnative\_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgstress1.exe_4043]
+RelativePath=JIT\Methodical\refany\_dbgstress1\_dbgstress1.exe
+WorkingDir=JIT\Methodical\refany\_dbgstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgstress3.exe_4044]
+RelativePath=JIT\Methodical\refany\_dbgstress3\_dbgstress3.exe
+WorkingDir=JIT\Methodical\refany\_dbgstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgvirtcall.exe_4045]
+RelativePath=JIT\Methodical\refany\_dbgvirtcall\_dbgvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_dbgvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgarray1.exe_4046]
+RelativePath=JIT\Methodical\refany\_il_dbgarray1\_il_dbgarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgarray2.exe_4047]
+RelativePath=JIT\Methodical\refany\_il_dbgarray2\_il_dbgarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgarray3.exe_4048]
+RelativePath=JIT\Methodical\refany\_il_dbgarray3\_il_dbgarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgformat.exe_4049]
+RelativePath=JIT\Methodical\refany\_il_dbgformat\_il_dbgformat.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgformat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgindcall.exe_4050]
+RelativePath=JIT\Methodical\refany\_il_dbgindcall\_il_dbgindcall.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgindcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbglcs.exe_4051]
+RelativePath=JIT\Methodical\refany\_il_dbglcs\_il_dbglcs.exe
+WorkingDir=JIT\Methodical\refany\_il_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbglongsig.exe_4052]
+RelativePath=JIT\Methodical\refany\_il_dbglongsig\_il_dbglongsig.exe
+WorkingDir=JIT\Methodical\refany\_il_dbglongsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgnative.exe_4053]
+RelativePath=JIT\Methodical\refany\_il_dbgnative\_il_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgseq.exe_4054]
+RelativePath=JIT\Methodical\refany\_il_dbgseq\_il_dbgseq.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgseq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[_il_dbgshortsig.exe_4055]
+RelativePath=JIT\Methodical\refany\_il_dbgshortsig\_il_dbgshortsig.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgshortsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgstress2.exe_4056]
+RelativePath=JIT\Methodical\refany\_il_dbgstress2\_il_dbgstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgstress2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgu_native.exe_4057]
+RelativePath=JIT\Methodical\refany\_il_dbgu_native\_il_dbgu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgu_native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relarray1.exe_4058]
+RelativePath=JIT\Methodical\refany\_il_relarray1\_il_relarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relarray2.exe_4059]
+RelativePath=JIT\Methodical\refany\_il_relarray2\_il_relarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relarray3.exe_4060]
+RelativePath=JIT\Methodical\refany\_il_relarray3\_il_relarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relformat.exe_4061]
+RelativePath=JIT\Methodical\refany\_il_relformat\_il_relformat.exe
+WorkingDir=JIT\Methodical\refany\_il_relformat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relindcall.exe_4062]
+RelativePath=JIT\Methodical\refany\_il_relindcall\_il_relindcall.exe
+WorkingDir=JIT\Methodical\refany\_il_relindcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_rellcs.exe_4063]
+RelativePath=JIT\Methodical\refany\_il_rellcs\_il_rellcs.exe
+WorkingDir=JIT\Methodical\refany\_il_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_rellongsig.exe_4064]
+RelativePath=JIT\Methodical\refany\_il_rellongsig\_il_rellongsig.exe
+WorkingDir=JIT\Methodical\refany\_il_rellongsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relnative.exe_4065]
+RelativePath=JIT\Methodical\refany\_il_relnative\_il_relnative.exe
+WorkingDir=JIT\Methodical\refany\_il_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relseq.exe_4066]
+RelativePath=JIT\Methodical\refany\_il_relseq\_il_relseq.exe
+WorkingDir=JIT\Methodical\refany\_il_relseq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[_il_relshortsig.exe_4067]
+RelativePath=JIT\Methodical\refany\_il_relshortsig\_il_relshortsig.exe
+WorkingDir=JIT\Methodical\refany\_il_relshortsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relstress2.exe_4068]
+RelativePath=JIT\Methodical\refany\_il_relstress2\_il_relstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_relstress2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relu_native.exe_4069]
+RelativePath=JIT\Methodical\refany\_il_relu_native\_il_relu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_relu_native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relgcreport.exe_4070]
+RelativePath=JIT\Methodical\refany\_relgcreport\_relgcreport.exe
+WorkingDir=JIT\Methodical\refany\_relgcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relnative.exe_4071]
+RelativePath=JIT\Methodical\refany\_relnative\_relnative.exe
+WorkingDir=JIT\Methodical\refany\_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relstress1.exe_4072]
+RelativePath=JIT\Methodical\refany\_relstress1\_relstress1.exe
+WorkingDir=JIT\Methodical\refany\_relstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relstress3.exe_4073]
+RelativePath=JIT\Methodical\refany\_relstress3\_relstress3.exe
+WorkingDir=JIT\Methodical\refany\_relstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relvirtcall.exe_4074]
+RelativePath=JIT\Methodical\refany\_relvirtcall\_relvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_relvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbggcreport.exe_4075]
+RelativePath=JIT\Methodical\refany\_speed_dbggcreport\_speed_dbggcreport.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbggcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgnative.exe_4076]
+RelativePath=JIT\Methodical\refany\_speed_dbgnative\_speed_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgstress1.exe_4077]
+RelativePath=JIT\Methodical\refany\_speed_dbgstress1\_speed_dbgstress1.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgstress3.exe_4078]
+RelativePath=JIT\Methodical\refany\_speed_dbgstress3\_speed_dbgstress3.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgvirtcall.exe_4079]
+RelativePath=JIT\Methodical\refany\_speed_dbgvirtcall\_speed_dbgvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relgcreport.exe_4080]
+RelativePath=JIT\Methodical\refany\_speed_relgcreport\_speed_relgcreport.exe
+WorkingDir=JIT\Methodical\refany\_speed_relgcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relnative.exe_4081]
+RelativePath=JIT\Methodical\refany\_speed_relnative\_speed_relnative.exe
+WorkingDir=JIT\Methodical\refany\_speed_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relstress1.exe_4082]
+RelativePath=JIT\Methodical\refany\_speed_relstress1\_speed_relstress1.exe
+WorkingDir=JIT\Methodical\refany\_speed_relstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relstress3.exe_4083]
+RelativePath=JIT\Methodical\refany\_speed_relstress3\_speed_relstress3.exe
+WorkingDir=JIT\Methodical\refany\_speed_relstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relvirtcall.exe_4084]
+RelativePath=JIT\Methodical\refany\_speed_relvirtcall\_speed_relvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_speed_relvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test1-xassem.exe_4085]
+RelativePath=JIT\Methodical\stringintern\test1-xassem\test1-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test1-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test2-xassem.exe_4086]
+RelativePath=JIT\Methodical\stringintern\test2-xassem\test2-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test2-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test4-xassem.exe_4087]
+RelativePath=JIT\Methodical\stringintern\test4-xassem\test4-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test4-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_Simpleb207621.exe_4088]
+RelativePath=JIT\Methodical\stringintern\_Simpleb207621\_Simpleb207621.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpleb207621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_Simpletest1.exe_4089]
+RelativePath=JIT\Methodical\stringintern\_Simpletest1\_Simpletest1.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_Simpletest2.exe_4090]
+RelativePath=JIT\Methodical\stringintern\_Simpletest2\_Simpletest2.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_Simpletest4.exe_4091]
+RelativePath=JIT\Methodical\stringintern\_Simpletest4\_Simpletest4.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XAssemblytest1-xassem.exe_4092]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest1-xassem\_XAssemblytest1-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest1-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XAssemblytest2-xassem.exe_4093]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest2-xassem\_XAssemblytest2-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest2-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XAssemblytest4-xassem.exe_4094]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest4-xassem\_XAssemblytest4-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest4-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XModuletest1-xmod.exe_4095]
+RelativePath=JIT\Methodical\stringintern\_XModuletest1-xmod\_XModuletest1-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest1-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XModuletest2-xmod.exe_4096]
+RelativePath=JIT\Methodical\stringintern\_XModuletest2-xmod\_XModuletest2-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest2-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_XModuletest4-xmod.exe_4097]
+RelativePath=JIT\Methodical\stringintern\_XModuletest4-xmod\_XModuletest4-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest4-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[structinregs.exe_4098]
+RelativePath=JIT\Methodical\structs\systemvbringup\structinregs\structinregs.exe
+WorkingDir=JIT\Methodical\structs\systemvbringup\structinregs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch1.exe_4099]
+RelativePath=JIT\Methodical\switch\switch1\switch1.exe
+WorkingDir=JIT\Methodical\switch\switch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch10.exe_4100]
+RelativePath=JIT\Methodical\switch\switch10\switch10.exe
+WorkingDir=JIT\Methodical\switch\switch10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch11.exe_4101]
+RelativePath=JIT\Methodical\switch\switch11\switch11.exe
+WorkingDir=JIT\Methodical\switch\switch11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch2.exe_4102]
+RelativePath=JIT\Methodical\switch\switch2\switch2.exe
+WorkingDir=JIT\Methodical\switch\switch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch3.exe_4103]
+RelativePath=JIT\Methodical\switch\switch3\switch3.exe
+WorkingDir=JIT\Methodical\switch\switch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch4.exe_4104]
+RelativePath=JIT\Methodical\switch\switch4\switch4.exe
+WorkingDir=JIT\Methodical\switch\switch4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch5.exe_4105]
+RelativePath=JIT\Methodical\switch\switch5\switch5.exe
+WorkingDir=JIT\Methodical\switch\switch5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch6.exe_4106]
+RelativePath=JIT\Methodical\switch\switch6\switch6.exe
+WorkingDir=JIT\Methodical\switch\switch6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch7.exe_4107]
+RelativePath=JIT\Methodical\switch\switch7\switch7.exe
+WorkingDir=JIT\Methodical\switch\switch7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch8.exe_4108]
+RelativePath=JIT\Methodical\switch\switch8\switch8.exe
+WorkingDir=JIT\Methodical\switch\switch8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[switch9.exe_4109]
+RelativePath=JIT\Methodical\switch\switch9\switch9.exe
+WorkingDir=JIT\Methodical\switch\switch9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relthread-race.exe_4110]
+RelativePath=JIT\Methodical\tailcall\Desktop\_il_relthread-race\_il_relthread-race.exe
+WorkingDir=JIT\Methodical\tailcall\Desktop\_il_relthread-race
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgcompat_enum.exe_4111]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_enum\_il_dbgcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_i2_bool.exe_4112]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool\_il_dbgcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_i4_i1.exe_4113]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1\_il_dbgcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_i4_u.exe_4114]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_u\_il_dbgcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_i_u2.exe_4115]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i_u2\_il_dbgcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_obj.exe_4116]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_obj\_il_dbgcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_obj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcompat_r4_r8.exe_4117]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8\_il_dbgcompat_r4_r8.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgcompat_r4_r8_inl.exe_4118]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl\_il_dbgcompat_r4_r8_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgcompat_r8_r4.exe_4119]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4\_il_dbgcompat_r8_r4.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgcompat_r8_r4_inl.exe_4120]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl\_il_dbgcompat_r8_r4_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgcompat_v.exe_4121]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_v\_il_dbgcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_v
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_array.exe_4122]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array\_il_dbgdeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_array_nz.exe_4123]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array_nz\_il_dbgdeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array_nz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_gc.exe_4124]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_gc\_il_dbgdeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_gc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_inst.exe_4125]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_inst\_il_dbgdeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_inst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_value.exe_4126]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_value\_il_dbgdeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdeep_virt.exe_4127]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_virt\_il_dbgdeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbggcval.exe_4128]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval\_il_dbggcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbggcval_nested.exe_4129]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_nested\_il_dbggcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbggcval_sideeffect.exe_4130]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_sideeffect\_il_dbggcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_sideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgpointer.exe_4131]
+RelativePath=JIT\Methodical\tailcall\_il_dbgpointer\_il_dbgpointer.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgpointer_i.exe_4132]
+RelativePath=JIT\Methodical\tailcall\_il_dbgpointer_i\_il_dbgpointer_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgrecurse_ep.exe_4133]
+RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep\_il_dbgrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrecurse_ep_void.exe_4134]
+RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void\_il_dbgrecurse_ep_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgreference_i.exe_4135]
+RelativePath=JIT\Methodical\tailcall\_il_dbgreference_i\_il_dbgreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgreference_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_2a.exe_4136]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2a\_il_dbgtest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_2b.exe_4137]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2b\_il_dbgtest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_2c.exe_4138]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2c\_il_dbgtest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_3b.exe_4139]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_3b\_il_dbgtest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_implicit.exe_4140]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_implicit\_il_dbgtest_implicit.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_implicit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgtest_mutual_rec.exe_4141]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec\_il_dbgtest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_switch.exe_4142]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_switch\_il_dbgtest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_virt.exe_4143]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_virt\_il_dbgtest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgtest_void.exe_4144]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_void\_il_dbgtest_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relcompat_enum.exe_4145]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_enum\_il_relcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_i2_bool.exe_4146]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i2_bool\_il_relcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i2_bool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_i4_i1.exe_4147]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_i1\_il_relcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_i4_u.exe_4148]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_u\_il_relcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_i_u2.exe_4149]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i_u2\_il_relcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_obj.exe_4150]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_obj\_il_relcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_obj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcompat_r4_r8.exe_4151]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8\_il_relcompat_r4_r8.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relcompat_r4_r8_inl.exe_4152]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl\_il_relcompat_r4_r8_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relcompat_r8_r4.exe_4153]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4\_il_relcompat_r8_r4.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relcompat_r8_r4_inl.exe_4154]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl\_il_relcompat_r8_r4_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relcompat_v.exe_4155]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_v\_il_relcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_v
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_array.exe_4156]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array\_il_reldeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_array_nz.exe_4157]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array_nz\_il_reldeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array_nz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_gc.exe_4158]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_gc\_il_reldeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_gc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_inst.exe_4159]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_inst\_il_reldeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_inst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_value.exe_4160]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_value\_il_reldeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldeep_virt.exe_4161]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_virt\_il_reldeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relgcval.exe_4162]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval\_il_relgcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relgcval_nested.exe_4163]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_nested\_il_relgcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relgcval_sideeffect.exe_4164]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_sideeffect\_il_relgcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_sideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relpointer.exe_4165]
+RelativePath=JIT\Methodical\tailcall\_il_relpointer\_il_relpointer.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relpointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relpointer_i.exe_4166]
+RelativePath=JIT\Methodical\tailcall\_il_relpointer_i\_il_relpointer_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relpointer_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relrecurse_ep.exe_4167]
+RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep\_il_relrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrecurse_ep_void.exe_4168]
+RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep_void\_il_relrecurse_ep_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relreference_i.exe_4169]
+RelativePath=JIT\Methodical\tailcall\_il_relreference_i\_il_relreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relreference_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_2a.exe_4170]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2a\_il_reltest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_2b.exe_4171]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2b\_il_reltest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_2c.exe_4172]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2c\_il_reltest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_3b.exe_4173]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_3b\_il_reltest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_implicit.exe_4174]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_implicit\_il_reltest_implicit.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_implicit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reltest_mutual_rec.exe_4175]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_mutual_rec\_il_reltest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_mutual_rec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_switch.exe_4176]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_switch\_il_reltest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_virt.exe_4177]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_virt\_il_reltest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reltest_void.exe_4178]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_void\_il_reltest_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[delegateParamCallTarget.exe_4179]
+RelativePath=JIT\Methodical\tailcall_v4\delegateParamCallTarget\delegateParamCallTarget.exe
+WorkingDir=JIT\Methodical\tailcall_v4\delegateParamCallTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[delegatetail.exe_4180]
+RelativePath=JIT\Methodical\tailcall_v4\delegatetail\delegatetail.exe
+WorkingDir=JIT\Methodical\tailcall_v4\delegatetail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[hijacking.exe_4181]
+RelativePath=JIT\Methodical\tailcall_v4\hijacking\hijacking.exe
+WorkingDir=JIT\Methodical\tailcall_v4\hijacking
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[smallFrame.exe_4182]
+RelativePath=JIT\Methodical\tailcall_v4\smallFrame\smallFrame.exe
+WorkingDir=JIT\Methodical\tailcall_v4\smallFrame
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[tailcall_AV.exe_4183]
+RelativePath=JIT\Methodical\tailcall_v4\tailcall_AV\tailcall_AV.exe
+WorkingDir=JIT\Methodical\tailcall_v4\tailcall_AV
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2987
+HostStyle=Any
+[_dbgunsafe-0.exe_4184]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-0\_dbgunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-1.exe_4185]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-1\_dbgunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-2.exe_4186]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-2\_dbgunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-3.exe_4187]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-3\_dbgunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-4.exe_4188]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-4\_dbgunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-5.exe_4189]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-5\_dbgunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunsafe-6.exe_4190]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-6\_dbgunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-0.exe_4191]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-0\_relunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-1.exe_4192]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-1\_relunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-2.exe_4193]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-2\_relunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-3.exe_4194]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-3\_relunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-4.exe_4195]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-4\_relunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-5.exe_4196]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-5\_relunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunsafe-6.exe_4197]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-6\_relunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-0.exe_4198]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0\_speed_dbgunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-1.exe_4199]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1\_speed_dbgunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-2.exe_4200]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2\_speed_dbgunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-3.exe_4201]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3\_speed_dbgunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-4.exe_4202]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4\_speed_dbgunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-5.exe_4203]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5\_speed_dbgunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunsafe-6.exe_4204]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6\_speed_dbgunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-0.exe_4205]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-0\_speed_relunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-1.exe_4206]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-1\_speed_relunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-2.exe_4207]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-2\_speed_relunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-3.exe_4208]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-3\_speed_relunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-4.exe_4209]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-4\_speed_relunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-5.exe_4210]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-5\_speed_relunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunsafe-6.exe_4211]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-6\_speed_relunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[gc_ctor_il_d.exe_4212]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_d\gc_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+HostStyle=Any
+[gc_ctor_il_r.exe_4213]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_r\gc_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+HostStyle=Any
+[val_ctor_il_d.exe_4214]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_d\val_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[val_ctor_il_r.exe_4215]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_r\val_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[Dev10_615402.exe_4216]
+RelativePath=JIT\Methodical\varargs\misc\Dev10_615402\Dev10_615402.exe
+WorkingDir=JIT\Methodical\varargs\misc\Dev10_615402
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[fault_il_d.exe_4217]
+RelativePath=JIT\Methodical\varargs\seh\fault_il_d\fault_il_d.exe
+WorkingDir=JIT\Methodical\varargs\seh\fault_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fault_il_r.exe_4218]
+RelativePath=JIT\Methodical\varargs\seh\fault_il_r\fault_il_r.exe
+WorkingDir=JIT\Methodical\varargs\seh\fault_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[filter_il_d.exe_4219]
+RelativePath=JIT\Methodical\varargs\seh\filter_il_d\filter_il_d.exe
+WorkingDir=JIT\Methodical\varargs\seh\filter_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[filter_il_r.exe_4220]
+RelativePath=JIT\Methodical\varargs\seh\filter_il_r\filter_il_r.exe
+WorkingDir=JIT\Methodical\varargs\seh\filter_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgcall.exe_4221]
+RelativePath=JIT\Methodical\VT\callconv\_dbgcall\_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgjumper.exe_4222]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumper\_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgjumps.exe_4223]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumps\_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgvtret.exe_4224]
+RelativePath=JIT\Methodical\VT\callconv\_dbgvtret\_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgaa.exe_4225]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgaa\_il_dbgaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgaa
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgcalli.exe_4226]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgcalli\_il_dbgcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgcalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgdd.exe_4227]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgdd\_il_dbgdd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgee.exe_4228]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgee\_il_dbgee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumper1.exe_4229]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper1\_il_dbgjumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumper2.exe_4230]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper2\_il_dbgjumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumper3.exe_4231]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper3\_il_dbgjumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumper4.exe_4232]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper4\_il_dbgjumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumper5.exe_4233]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper5\_il_dbgjumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgjumps1.exe_4234]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps1\_il_dbgjumps1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgjumps2.exe_4235]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps2\_il_dbgjumps2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgjumps3.exe_4236]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps3\_il_dbgjumps3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgjumps4.exe_4237]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps4\_il_dbgjumps4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgjumps5.exe_4238]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps5\_il_dbgjumps5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgvtret.exe_4239]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret\_il_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvtret2.exe_4240]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret2\_il_dbgvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relaa.exe_4241]
+RelativePath=JIT\Methodical\VT\callconv\_il_relaa\_il_relaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relaa
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relcalli.exe_4242]
+RelativePath=JIT\Methodical\VT\callconv\_il_relcalli\_il_relcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relcalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reldd.exe_4243]
+RelativePath=JIT\Methodical\VT\callconv\_il_reldd\_il_reldd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reldd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relee.exe_4244]
+RelativePath=JIT\Methodical\VT\callconv\_il_relee\_il_relee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumper1.exe_4245]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper1\_il_reljumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumper2.exe_4246]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper2\_il_reljumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumper3.exe_4247]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper3\_il_reljumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumper4.exe_4248]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper4\_il_reljumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumper5.exe_4249]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper5\_il_reljumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_reljumps1.exe_4250]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps1\_il_reljumps1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reljumps2.exe_4251]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps2\_il_reljumps2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reljumps3.exe_4252]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps3\_il_reljumps3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reljumps4.exe_4253]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps4\_il_reljumps4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_reljumps5.exe_4254]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps5\_il_reljumps5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relvtret.exe_4255]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret\_il_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvtret2.exe_4256]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret2\_il_relvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relcall.exe_4257]
+RelativePath=JIT\Methodical\VT\callconv\_relcall\_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reljumper.exe_4258]
+RelativePath=JIT\Methodical\VT\callconv\_reljumper\_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_reljumps.exe_4259]
+RelativePath=JIT\Methodical\VT\callconv\_reljumps\_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relvtret.exe_4260]
+RelativePath=JIT\Methodical\VT\callconv\_relvtret\_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgcall.exe_4261]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgcall\_speed_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgjumper.exe_4262]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumper\_speed_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgjumps.exe_4263]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumps\_speed_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgvtret.exe_4264]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgvtret\_speed_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relcall.exe_4265]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relcall\_speed_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reljumper.exe_4266]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumper\_speed_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_reljumps.exe_4267]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumps\_speed_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relvtret.exe_4268]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relvtret\_speed_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[gc_nested.exe_4269]
+RelativePath=JIT\Methodical\VT\etc\gc_nested\gc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\gc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[nested.exe_4270]
+RelativePath=JIT\Methodical\VT\etc\nested\nested.exe
+WorkingDir=JIT\Methodical\VT\etc\nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgctor_recurse.exe_4271]
+RelativePath=JIT\Methodical\VT\etc\_dbgctor_recurse\_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbggc_nested.exe_4272]
+RelativePath=JIT\Methodical\VT\etc\_dbggc_nested\_dbggc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbggc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbghan2.exe_4273]
+RelativePath=JIT\Methodical\VT\etc\_dbghan2\_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbghan3.exe_4274]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3\_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbghan3_ctor.exe_4275]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ctor\_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbghan3_ref.exe_4276]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ref\_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbghanoi.exe_4277]
+RelativePath=JIT\Methodical\VT\etc\_dbghanoi\_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgknight.exe_4278]
+RelativePath=JIT\Methodical\VT\etc\_dbgknight\_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgnested.exe_4279]
+RelativePath=JIT\Methodical\VT\etc\_dbgnested\_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghan3.exe_4280]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3\_il_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghan3_ctor.exe_4281]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ctor\_il_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghan3_ref.exe_4282]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ref\_il_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghanoi.exe_4283]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi\_il_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbghanoi2.exe_4284]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi2\_il_dbghanoi2.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgknight.exe_4285]
+RelativePath=JIT\Methodical\VT\etc\_il_dbgknight\_il_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgnested.exe_4286]
+RelativePath=JIT\Methodical\VT\etc\_il_dbgnested\_il_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhan3.exe_4287]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3\_il_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhan3_ctor.exe_4288]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ctor\_il_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhan3_ref.exe_4289]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ref\_il_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhanoi.exe_4290]
+RelativePath=JIT\Methodical\VT\etc\_il_relhanoi\_il_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhanoi2.exe_4291]
+RelativePath=JIT\Methodical\VT\etc\_il_relhanoi2\_il_relhanoi2.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relknight.exe_4292]
+RelativePath=JIT\Methodical\VT\etc\_il_relknight\_il_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relnested.exe_4293]
+RelativePath=JIT\Methodical\VT\etc\_il_relnested\_il_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relctor_recurse.exe_4294]
+RelativePath=JIT\Methodical\VT\etc\_relctor_recurse\_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_relctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relgc_nested.exe_4295]
+RelativePath=JIT\Methodical\VT\etc\_relgc_nested\_relgc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_relgc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relhan2.exe_4296]
+RelativePath=JIT\Methodical\VT\etc\_relhan2\_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relhan3.exe_4297]
+RelativePath=JIT\Methodical\VT\etc\_relhan3\_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relhan3_ctor.exe_4298]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ctor\_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relhan3_ref.exe_4299]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ref\_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relhanoi.exe_4300]
+RelativePath=JIT\Methodical\VT\etc\_relhanoi\_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relknight.exe_4301]
+RelativePath=JIT\Methodical\VT\etc\_relknight\_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relnested.exe_4302]
+RelativePath=JIT\Methodical\VT\etc\_relnested\_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgctor_recurse.exe_4303]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgctor_recurse\_speed_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbggc_nested.exe_4304]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbggc_nested\_speed_dbggc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbggc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbghan2.exe_4305]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan2\_speed_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbghan3.exe_4306]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3\_speed_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbghan3_ctor.exe_4307]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ctor\_speed_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbghan3_ref.exe_4308]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ref\_speed_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbghanoi.exe_4309]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghanoi\_speed_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgknight.exe_4310]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgknight\_speed_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgnested.exe_4311]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgnested\_speed_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relctor_recurse.exe_4312]
+RelativePath=JIT\Methodical\VT\etc\_speed_relctor_recurse\_speed_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relgc_nested.exe_4313]
+RelativePath=JIT\Methodical\VT\etc\_speed_relgc_nested\_speed_relgc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relgc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relhan2.exe_4314]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan2\_speed_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relhan3.exe_4315]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3\_speed_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relhan3_ctor.exe_4316]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ctor\_speed_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relhan3_ref.exe_4317]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ref\_speed_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relhanoi.exe_4318]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhanoi\_speed_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relknight.exe_4319]
+RelativePath=JIT\Methodical\VT\etc\_speed_relknight\_speed_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relnested.exe_4320]
+RelativePath=JIT\Methodical\VT\etc\_speed_relnested\_speed_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgaccum.exe_4321]
+RelativePath=JIT\Methodical\VT\identity\_dbgaccum\_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgvcall.exe_4322]
+RelativePath=JIT\Methodical\VT\identity\_dbgvcall\_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgaccum.exe_4323]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgaccum\_il_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbglivecall.exe_4324]
+RelativePath=JIT\Methodical\VT\identity\_il_dbglivecall\_il_dbglivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbglivecall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgvolatile.exe_4325]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgvolatile\_il_dbgvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgvolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relaccum.exe_4326]
+RelativePath=JIT\Methodical\VT\identity\_il_relaccum\_il_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rellivecall.exe_4327]
+RelativePath=JIT\Methodical\VT\identity\_il_rellivecall\_il_rellivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_rellivecall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relvolatile.exe_4328]
+RelativePath=JIT\Methodical\VT\identity\_il_relvolatile\_il_relvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relvolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relaccum.exe_4329]
+RelativePath=JIT\Methodical\VT\identity\_relaccum\_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relvcall.exe_4330]
+RelativePath=JIT\Methodical\VT\identity\_relvcall\_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_relvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgaccum.exe_4331]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgaccum\_speed_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgvcall.exe_4332]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgvcall\_speed_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relaccum.exe_4333]
+RelativePath=JIT\Methodical\VT\identity\_speed_relaccum\_speed_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relvcall.exe_4334]
+RelativePath=JIT\Methodical\VT\identity\_speed_relvcall\_speed_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbglcs.exe_4335]
+RelativePath=JIT\Methodical\VT\port\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_dbglcs_gcref.exe_4336]
+RelativePath=JIT\Methodical\VT\port\_dbglcs_gcref\_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_il_dbghuge_gcref.exe_4337]
+RelativePath=JIT\Methodical\VT\port\_il_dbghuge_gcref\_il_dbghuge_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_il_dbghuge_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relhuge_gcref.exe_4338]
+RelativePath=JIT\Methodical\VT\port\_il_relhuge_gcref\_il_relhuge_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_il_relhuge_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_rellcs.exe_4339]
+RelativePath=JIT\Methodical\VT\port\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[_rellcs_gcref.exe_4340]
+RelativePath=JIT\Methodical\VT\port\_rellcs_gcref\_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_dbglcs.exe_4341]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbglcs_gcref.exe_4342]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs_gcref\_speed_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[_speed_rellcs.exe_4343]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_rellcs_gcref.exe_4344]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs_gcref\_speed_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[cpblk3_il_d.exe_4345]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_d\cpblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[cpblk3_il_r.exe_4346]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_r\cpblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[initblk3_il_d.exe_4347]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_d\initblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[initblk3_il_r.exe_4348]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_r\initblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_I.exe_4349]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I\_il_dbgldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_I8.exe_4350]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8\_il_dbgldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_R4.exe_4351]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4\_il_dbgldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_R8.exe_4352]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8\_il_dbgldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_U2.exe_4353]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2\_il_dbgldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldobj_V.exe_4354]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V\_il_dbgldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_I.exe_4355]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I\_il_relldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_I8.exe_4356]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8\_il_relldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_R4.exe_4357]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4\_il_relldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_R8.exe_4358]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8\_il_relldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_U2.exe_4359]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2\_il_relldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldobj_V.exe_4360]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_V\_il_relldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_V
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[refanyval.exe_4361]
+RelativePath=JIT\Methodical\xxobj\operand\refanyval\refanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\refanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgrefanyval.exe_4362]
+RelativePath=JIT\Methodical\xxobj\operand\_dbgrefanyval\_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgunbox.exe_4363]
+RelativePath=JIT\Methodical\xxobj\operand\_dbgunbox\_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgconst.exe_4364]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgconst\_il_dbgconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgconst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgldelema.exe_4365]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgldelema\_il_dbgldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgldelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbglocalloc.exe_4366]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbglocalloc\_il_dbglocalloc.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbglocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgmdarray.exe_4367]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgmdarray\_il_dbgmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgmdarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgrefanyval.exe_4368]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgrefanyval\_il_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_dbgunbox.exe_4369]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgunbox\_il_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relconst.exe_4370]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relconst\_il_relconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relconst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relldelema.exe_4371]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relldelema\_il_relldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relldelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_rellocalloc.exe_4372]
+RelativePath=JIT\Methodical\xxobj\operand\_il_rellocalloc\_il_rellocalloc.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_rellocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relmdarray.exe_4373]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relmdarray\_il_relmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relmdarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relrefanyval.exe_4374]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relrefanyval\_il_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_il_relunbox.exe_4375]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relunbox\_il_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_relrefanyval.exe_4376]
+RelativePath=JIT\Methodical\xxobj\operand\_relrefanyval\_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relunbox.exe_4377]
+RelativePath=JIT\Methodical\xxobj\operand\_relunbox\_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_dbgrefanyval.exe_4378]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval\_speed_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgunbox.exe_4379]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgunbox\_speed_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_speed_relrefanyval.exe_4380]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_relrefanyval\_speed_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relunbox.exe_4381]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_relunbox\_speed_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[_dbgsizeof32.exe_4382]
+RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof32\_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_dbgsizeof64.exe_4383]
+RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof64\_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgsizeof.exe_4384]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof\_il_dbgsizeof.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgsizeof32.exe_4385]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32\_il_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_dbgsizeof64.exe_4386]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64\_il_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relsizeof.exe_4387]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof\_il_relsizeof.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relsizeof32.exe_4388]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof32\_il_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_il_relsizeof64.exe_4389]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof64\_il_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsizeof32.exe_4390]
+RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof32\_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_relsizeof64.exe_4391]
+RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof64\_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgsizeof32.exe_4392]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32\_speed_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_dbgsizeof64.exe_4393]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64\_speed_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relsizeof32.exe_4394]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32\_speed_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_speed_relsizeof64.exe_4395]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64\_speed_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ConstantProp.exe_4396]
+RelativePath=JIT\opt\AssertionPropagation\ConstantProp\ConstantProp.exe
+WorkingDir=JIT\opt\AssertionPropagation\ConstantProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CopyProp.exe_4397]
+RelativePath=JIT\opt\AssertionPropagation\CopyProp\CopyProp.exe
+WorkingDir=JIT\opt\AssertionPropagation\CopyProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CPropOverflow.exe_4398]
+RelativePath=JIT\opt\AssertionPropagation\CPropOverflow\CPropOverflow.exe
+WorkingDir=JIT\opt\AssertionPropagation\CPropOverflow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[NullCheckAssertion1.exe_4399]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion1\NullCheckAssertion1.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion2.exe_4400]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion2\NullCheckAssertion2.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion3.exe_4401]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion3\NullCheckAssertion3.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion4.exe_4402]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion4\NullCheckAssertion4.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion5.exe_4403]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion5\NullCheckAssertion5.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion6.exe_4404]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion6\NullCheckAssertion6.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NullCheckAssertion7.exe_4405]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion7\NullCheckAssertion7.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bug573840.exe_4406]
+RelativePath=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840\bug573840.exe
+WorkingDir=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TypeOfAssertion.exe_4407]
+RelativePath=JIT\opt\AssertionPropagation\TypeOfAssertion\TypeOfAssertion.exe
+WorkingDir=JIT\opt\AssertionPropagation\TypeOfAssertion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BBCnt1.exe_4408]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CodeSize1.exe_4409]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[InstrCnt1.exe_4410]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVNumCnt1.exe_4411]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVRefCnt1.exe_4412]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[TailCallCases.exe_4413]
+RelativePath=JIT\opt\ETW\TailCallCases\TailCallCases.exe
+WorkingDir=JIT\opt\ETW\TailCallCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[badcallee.exe_4414]
+RelativePath=JIT\opt\Inline\regression\badcallee\badcallee\badcallee.exe
+WorkingDir=JIT\opt\Inline\regression\badcallee\badcallee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[inliningVars.exe_4415]
+RelativePath=JIT\opt\Inline\regression\bug584219\inliningVars\inliningVars.exe
+WorkingDir=JIT\opt\Inline\regression\bug584219\inliningVars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bug595776.exe_4416]
+RelativePath=JIT\opt\Inline\regression\bug595776\bug595776\bug595776.exe
+WorkingDir=JIT\opt\Inline\regression\bug595776\bug595776
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mismatch32.exe_4417]
+RelativePath=JIT\opt\Inline\regression\mismatch32\mismatch32\mismatch32.exe
+WorkingDir=JIT\opt\Inline\regression\mismatch32\mismatch32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mismatch64.exe_4418]
+RelativePath=JIT\opt\Inline\regression\mismatch64\mismatch64\mismatch64.exe
+WorkingDir=JIT\opt\Inline\regression\mismatch64\mismatch64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[args1.exe_4419]
+RelativePath=JIT\opt\Inline\tests\args1\args1.exe
+WorkingDir=JIT\opt\Inline\tests\args1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[args2.exe_4420]
+RelativePath=JIT\opt\Inline\tests\args2\args2.exe
+WorkingDir=JIT\opt\Inline\tests\args2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[args3.exe_4421]
+RelativePath=JIT\opt\Inline\tests\args3\args3.exe
+WorkingDir=JIT\opt\Inline\tests\args3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[array.exe_4422]
+RelativePath=JIT\opt\Inline\tests\array\array.exe
+WorkingDir=JIT\opt\Inline\tests\array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ArrayOfStructs.exe_4423]
+RelativePath=JIT\opt\Inline\tests\ArrayOfStructs\ArrayOfStructs.exe
+WorkingDir=JIT\opt\Inline\tests\ArrayOfStructs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[debug.exe_4424]
+RelativePath=JIT\opt\Inline\tests\debug\debug.exe
+WorkingDir=JIT\opt\Inline\tests\debug
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[deepcall.exe_4425]
+RelativePath=JIT\opt\Inline\tests\deepcall\deepcall.exe
+WorkingDir=JIT\opt\Inline\tests\deepcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DelegInstanceFtn.exe_4426]
+RelativePath=JIT\opt\Inline\tests\DelegInstanceFtn\DelegInstanceFtn.exe
+WorkingDir=JIT\opt\Inline\tests\DelegInstanceFtn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DelegStaticFtn.exe_4427]
+RelativePath=JIT\opt\Inline\tests\DelegStaticFtn\DelegStaticFtn.exe
+WorkingDir=JIT\opt\Inline\tests\DelegStaticFtn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fact.exe_4428]
+RelativePath=JIT\opt\Inline\tests\fact\fact.exe
+WorkingDir=JIT\opt\Inline\tests\fact
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[GenericStructs.exe_4429]
+RelativePath=JIT\opt\Inline\tests\GenericStructs\GenericStructs.exe
+WorkingDir=JIT\opt\Inline\tests\GenericStructs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ifelse.exe_4430]
+RelativePath=JIT\opt\Inline\tests\ifelse\ifelse.exe
+WorkingDir=JIT\opt\Inline\tests\ifelse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[indexer.exe_4431]
+RelativePath=JIT\opt\Inline\tests\indexer\indexer.exe
+WorkingDir=JIT\opt\Inline\tests\indexer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline.exe_4432]
+RelativePath=JIT\opt\Inline\tests\Inline\Inline.exe
+WorkingDir=JIT\opt\Inline\tests\Inline
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[InlineThrow.exe_4433]
+RelativePath=JIT\opt\Inline\tests\InlineThrow\InlineThrow.exe
+WorkingDir=JIT\opt\Inline\tests\InlineThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_DelegateStruct.exe_4434]
+RelativePath=JIT\opt\Inline\tests\Inline_DelegateStruct\Inline_DelegateStruct.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_DelegateStruct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_GenericMethods.exe_4435]
+RelativePath=JIT\opt\Inline\tests\Inline_GenericMethods\Inline_GenericMethods.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_GenericMethods
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_handler.exe_4436]
+RelativePath=JIT\opt\Inline\tests\Inline_handler\Inline_handler.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_handler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_Many.exe_4437]
+RelativePath=JIT\opt\Inline\tests\Inline_Many\Inline_Many.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Many
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_MultipleReturn.exe_4438]
+RelativePath=JIT\opt\Inline\tests\Inline_MultipleReturn\Inline_MultipleReturn.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_MultipleReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_NewObj.exe_4439]
+RelativePath=JIT\opt\Inline\tests\Inline_NewObj\Inline_NewObj.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_NewObj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_NormalizeStack.exe_4440]
+RelativePath=JIT\opt\Inline\tests\Inline_NormalizeStack\Inline_NormalizeStack.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_NormalizeStack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_Recursion.exe_4441]
+RelativePath=JIT\opt\Inline\tests\Inline_Recursion\Inline_Recursion.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Recursion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_RecursiveMethod.exe_4442]
+RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod\Inline_RecursiveMethod.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_RecursiveMethod21.exe_4443]
+RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod21\Inline_RecursiveMethod21.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_SideAffects.exe_4444]
+RelativePath=JIT\opt\Inline\tests\Inline_SideAffects\Inline_SideAffects.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_SideAffects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_STARG.exe_4445]
+RelativePath=JIT\opt\Inline\tests\Inline_STARG\Inline_STARG.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_STARG
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Inline_Vars.exe_4446]
+RelativePath=JIT\opt\Inline\tests\Inline_Vars\Inline_Vars.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Vars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[interfaceCall.exe_4447]
+RelativePath=JIT\opt\Inline\tests\interfaceCall\interfaceCall.exe
+WorkingDir=JIT\opt\Inline\tests\interfaceCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[interfaceproperty.exe_4448]
+RelativePath=JIT\opt\Inline\tests\interfaceproperty\interfaceproperty.exe
+WorkingDir=JIT\opt\Inline\tests\interfaceproperty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mathfunc.exe_4449]
+RelativePath=JIT\opt\Inline\tests\mathfunc\mathfunc.exe
+WorkingDir=JIT\opt\Inline\tests\mathfunc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mthdimpl.exe_4450]
+RelativePath=JIT\opt\Inline\tests\mthdimpl\mthdimpl.exe
+WorkingDir=JIT\opt\Inline\tests\mthdimpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[property.exe_4451]
+RelativePath=JIT\opt\Inline\tests\property\property.exe
+WorkingDir=JIT\opt\Inline\tests\property
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ReturnStruct_Method.exe_4452]
+RelativePath=JIT\opt\Inline\tests\ReturnStruct_Method\ReturnStruct_Method.exe
+WorkingDir=JIT\opt\Inline\tests\ReturnStruct_Method
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[size.exe_4453]
+RelativePath=JIT\opt\Inline\tests\size\size.exe
+WorkingDir=JIT\opt\Inline\tests\size
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[StructAsParam_Method.exe_4454]
+RelativePath=JIT\opt\Inline\tests\StructAsParam_Method\StructAsParam_Method.exe
+WorkingDir=JIT\opt\Inline\tests\StructAsParam_Method
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[StructInClass.exe_4455]
+RelativePath=JIT\opt\Inline\tests\StructInClass\StructInClass.exe
+WorkingDir=JIT\opt\Inline\tests\StructInClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[struct_opcodes.exe_4456]
+RelativePath=JIT\opt\Inline\tests\struct_opcodes\struct_opcodes.exe
+WorkingDir=JIT\opt\Inline\tests\struct_opcodes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[throwtest.exe_4457]
+RelativePath=JIT\opt\Inline\tests\throwtest\throwtest.exe
+WorkingDir=JIT\opt\Inline\tests\throwtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[trycatch.exe_4458]
+RelativePath=JIT\opt\Inline\tests\trycatch\trycatch.exe
+WorkingDir=JIT\opt\Inline\tests\trycatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BBCnt0.exe_4459]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt0\BBCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[BBCnt1.exe_4460]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CodeSize0.exe_4461]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize0\CodeSize0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CodeSize1.exe_4462]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[InstrCnt0.exe_4463]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt0\InstrCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[InstrCnt1.exe_4464]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVNumCnt0.exe_4465]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt0\LVNumCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVNumCnt1.exe_4466]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVRefCnt0.exe_4467]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt0\LVRefCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LVRefCnt1.exe_4468]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Arrays.exe_4469]
+RelativePath=JIT\opt\perf\doublealign\Arrays\Arrays.exe
+WorkingDir=JIT\opt\perf\doublealign\Arrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Locals.exe_4470]
+RelativePath=JIT\opt\perf\doublealign\Locals\Locals.exe
+WorkingDir=JIT\opt\perf\doublealign\Locals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[objects.exe_4471]
+RelativePath=JIT\opt\perf\doublealign\objects\objects.exe
+WorkingDir=JIT\opt\perf\doublealign\objects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TailcallVerifyWithPrefix.exe_4472]
+RelativePath=JIT\opt\Tailcall\TailcallVerifyWithPrefix\TailcallVerifyWithPrefix.exe
+WorkingDir=JIT\opt\Tailcall\TailcallVerifyWithPrefix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bigvtbl_cs_d.exe_4473]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d\bigvtbl_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bigvtbl_cs_do.exe_4474]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do\bigvtbl_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bigvtbl_cs_r.exe_4475]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r\bigvtbl_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[bigvtbl_cs_ro.exe_4476]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro\bigvtbl_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest1_cs_d.exe_4477]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d\ctest1_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest1_cs_do.exe_4478]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do\ctest1_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest1_cs_r.exe_4479]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r\ctest1_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest1_cs_ro.exe_4480]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro\ctest1_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest_cs_d.exe_4481]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d\ctest_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest_cs_do.exe_4482]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do\ctest_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest_cs_r.exe_4483]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r\ctest_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ctest_cs_ro.exe_4484]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro\ctest_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed_cs_d.exe_4485]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d\mixed_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed_cs_do.exe_4486]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do\mixed_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed_cs_r.exe_4487]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r\mixed_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[mixed_cs_ro.exe_4488]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro\mixed_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Adams.exe_4489]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Adams\Adams\Adams.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Adams\Adams
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BenchMk2.exe_4490]
+RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2\BenchMk2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BenchMrk.exe_4491]
+RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk\BenchMrk.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Bisect.exe_4492]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect\Bisect.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DMath.exe_4493]
+RelativePath=JIT\Performance\CodeQuality\BenchF\DMath\DMath\DMath.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\DMath\DMath
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[FFT.exe_4494]
+RelativePath=JIT\Performance\CodeQuality\BenchF\FFT\FFT\FFT.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\FFT\FFT
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[InProd.exe_4495]
+RelativePath=JIT\Performance\CodeQuality\BenchF\InProd\InProd\InProd.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\InProd\InProd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[InvMt.exe_4496]
+RelativePath=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt\InvMt.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[LLoops.exe_4497]
+RelativePath=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops\LLoops.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Lorenz.exe_4498]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz\Lorenz.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MatInv4.exe_4499]
+RelativePath=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4\MatInv4.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NewtE.exe_4500]
+RelativePath=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE\NewtE.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NewtR.exe_4501]
+RelativePath=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR\NewtR.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Regula.exe_4502]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Regula\Regula\Regula.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Regula\Regula
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Romber.exe_4503]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Romber\Romber\Romber.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Romber\Romber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Secant.exe_4504]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Secant\Secant\Secant.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Secant\Secant
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Simpsn.exe_4505]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn\Simpsn.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[SqMtx.exe_4506]
+RelativePath=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx\SqMtx.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Trap.exe_4507]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Trap\Trap\Trap.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Trap\Trap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Whetsto.exe_4508]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto\Whetsto.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[8Queens.exe_4509]
+RelativePath=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens\8Queens.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ackermann.exe_4510]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann\Ackermann.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AddArray.exe_4511]
+RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray\AddArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AddArray2.exe_4512]
+RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2\AddArray2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Array1.exe_4513]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Array1\Array1\Array1.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Array1\Array1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Array2.exe_4514]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Array2\Array2\Array2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Array2\Array2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BenchE.exe_4515]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE\BenchE.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BubbleSort.exe_4516]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort\BubbleSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BubbleSort2.exe_4517]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2\BubbleSort2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CSieve.exe_4518]
+RelativePath=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve\CSieve.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Fib.exe_4519]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Fib\Fib\Fib.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Fib\Fib
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[HeapSort.exe_4520]
+RelativePath=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort\HeapSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[IniArray.exe_4521]
+RelativePath=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray\IniArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[LogicArray.exe_4522]
+RelativePath=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray\LogicArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Midpoint.exe_4523]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint\Midpoint.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MulMatrix.exe_4524]
+RelativePath=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix\MulMatrix.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[NDhrystone.exe_4525]
+RelativePath=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone\NDhrystone.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Permutate.exe_4526]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate\Permutate.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Pi.exe_4527]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Pi\Pi\Pi.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Pi\Pi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Puzzle.exe_4528]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle\Puzzle.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[QuickSort.exe_4529]
+RelativePath=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort\QuickSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TreeInsert.exe_4530]
+RelativePath=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert\TreeInsert.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[TreeSort.exe_4531]
+RelativePath=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort\TreeSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[XposMatrix.exe_4532]
+RelativePath=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix\XposMatrix.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[binarytrees.exe_4533]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees\binarytrees.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fasta.exe_4534]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta\fasta.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[fastaredux.exe_4535]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux\fastaredux.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[nbody.exe_4536]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody\nbody.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[pi-digits.exe_4537]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits\pi-digits.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[spectralnorm.exe_4538]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm\spectralnorm.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Burgers.exe_4539]
+RelativePath=JIT\Performance\CodeQuality\Burgers\Burgers\Burgers.exe
+WorkingDir=JIT\Performance\CodeQuality\Burgers\Burgers
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Bytemark.exe_4540]
+RelativePath=JIT\Performance\CodeQuality\Bytemark\Bytemark\Bytemark.exe
+WorkingDir=JIT\Performance\CodeQuality\Bytemark\Bytemark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[FractalPerf.exe_4541]
+RelativePath=JIT\Performance\CodeQuality\FractalPerf\FractalPerf\FractalPerf.exe
+WorkingDir=JIT\Performance\CodeQuality\FractalPerf\FractalPerf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Linq.exe_4542]
+RelativePath=JIT\Performance\CodeQuality\Linq\Linq\Linq.exe
+WorkingDir=JIT\Performance\CodeQuality\Linq\Linq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CscBench.exe_4543]
+RelativePath=JIT\Performance\CodeQuality\Roslyn\CscBench\CscBench.exe
+WorkingDir=JIT\Performance\CodeQuality\Roslyn\CscBench
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[SciMark.exe_4544]
+RelativePath=JIT\Performance\CodeQuality\SciMark\SciMark\SciMark.exe
+WorkingDir=JIT\Performance\CodeQuality\SciMark\SciMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Deserialize.exe_4545]
+RelativePath=JIT\Performance\CodeQuality\Serialization\Deserialize\Deserialize.exe
+WorkingDir=JIT\Performance\CodeQuality\Serialization\Deserialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Serialize.exe_4546]
+RelativePath=JIT\Performance\CodeQuality\Serialization\Serialize\Serialize.exe
+WorkingDir=JIT\Performance\CodeQuality\Serialization\Serialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ConsoleMandel.exe_4547]
+RelativePath=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel\ConsoleMandel.exe
+WorkingDir=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[RayTracer.exe_4548]
+RelativePath=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer\RayTracer.exe
+WorkingDir=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Crypto.exe_4549]
+RelativePath=JIT\Performance\CodeQuality\V8\Crypto\Crypto\Crypto.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\Crypto\Crypto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DeltaBlue.exe_4550]
+RelativePath=JIT\Performance\CodeQuality\V8\DeltaBlue\DeltaBlue\DeltaBlue.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\DeltaBlue\DeltaBlue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Richards.exe_4551]
+RelativePath=JIT\Performance\CodeQuality\V8\Richards\Richards\Richards.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\Richards\Richards
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b173569.exe_4552]
+RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569\b173569.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b601838.exe_4553]
+RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838\b601838.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b602182.exe_4554]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182\b602182.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[overRepLocalOpt.exe_4555]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt\overRepLocalOpt.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12008.exe_4556]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008\b12008.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14426.exe_4557]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426\b14426.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16935.exe_4558]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935\b16935.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02353.exe_4559]
+RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353\b02353.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b07847.exe_4560]
+RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847\b07847.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b40089.exe_4561]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089\b40089.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40138.exe_4562]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138\b40138.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44018.exe_4563]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018\b44018.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45046.exe_4564]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046\b45046.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45679.exe_4565]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679\b45679.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26323.exe_4566]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323\b26323.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+HostStyle=Any
+[b35455.exe_4567]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455\b35455.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46847.exe_4568]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847\b46847.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47392.exe_4569]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392\b47392.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b392262.exe_4570]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262\b392262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b393481.exe_4571]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481\b393481.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[_b400971b400971.exe_4572]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971\_b400971b400971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b402658.exe_4573]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658\b402658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b402701.exe_4574]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701\b402701.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b404051.exe_4575]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051\b404051.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b440158.exe_4576]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158\b440158.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b464149.exe_4577]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149\b464149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b519927.exe_4578]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b519927\b519927\b519927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b519927\b519927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_376412.exe_4579]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412\DevDiv_376412.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12668.exe_4580]
+RelativePath=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668\b12668.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b13170.exe_4581]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170\b13170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13178.exe_4582]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178\b13178.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13621.exe_4583]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621\b13621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b13647.exe_4584]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647\b13647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13944.exe_4585]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944\b13944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14057.exe_4586]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057\b14057.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14059.exe_4587]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059\b14059.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14228.exe_4588]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228\b14228.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14277.exe_4589]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277\b14277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14314.exe_4590]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314\b14314.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14323.exe_4591]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323\b14323.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14367.exe_4592]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367\b14367.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14396.exe_4593]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396\b14396.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14422.exe_4594]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422\b14422.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14428.exe_4595]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428\b14428.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14443.exe_4596]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443\b14443.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14475.exe_4597]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475\b14475.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14616.exe_4598]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616\b14616.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14624.exe_4599]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624\b14624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14640.exe_4600]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640\b14640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14673.exe_4601]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673\b14673.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14779.exe_4602]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779\b14779.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b15155.exe_4603]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155\b15155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15307.exe_4604]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307\b15307.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b15468.exe_4605]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468\b15468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15526.exe_4606]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526\b15526.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15783.exe_4607]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783\b15783.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15786.exe_4608]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786\b15786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15797.exe_4609]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797\b15797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15864.exe_4610]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864\b15864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16054.exe_4611]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054\b16054.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16102.exe_4612]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102\b16102.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16294.exe_4613]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294\b16294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06440a.exe_4614]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a\b06440a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06440b.exe_4615]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b\b06440b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06440c.exe_4616]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c\b06440c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07341.exe_4617]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341\b07341.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b09495.exe_4618]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495\b09495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10665.exe_4619]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665\b10665.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10666.exe_4620]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666\b10666.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10894.exe_4621]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894\b10894.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10897.exe_4622]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897\b10897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10939.exe_4623]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939\b10939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10940a.exe_4624]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a\b10940a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10940b.exe_4625]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b\b10940b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11021.exe_4626]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021\b11021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11413.exe_4627]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413\b11413.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11490.exe_4628]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490\b11490.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11949.exe_4629]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949\b11949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12053.exe_4630]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053\b12053.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b12274.exe_4631]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274\b12274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12399.exe_4632]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399\b12399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[b12487.exe_4633]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487\b12487.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12624.exe_4634]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624\b12624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12795.exe_4635]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795\b12795.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b13509.exe_4636]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509\b13509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13522.exe_4637]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522\b13522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13569.exe_4638]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569\b13569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13586.exe_4639]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586\b13586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13738.exe_4640]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738\b13738.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14066.exe_4641]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066\b14066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14067a.exe_4642]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a\b14067a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14067b.exe_4643]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b\b14067b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14068.exe_4644]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068\b14068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14070.exe_4645]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070\b14070.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14077.exe_4646]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077\b14077.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14135.exe_4647]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135\b14135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14197.exe_4648]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197\b14197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14199.exe_4649]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199\b14199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14202.exe_4650]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202\b14202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14264.exe_4651]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264\b14264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14294.exe_4652]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294\b14294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14325.exe_4653]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325\b14325.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14326.exe_4654]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326\b14326.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14329.exe_4655]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329\b14329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14350.exe_4656]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350\b14350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14431.exe_4657]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431\b14431.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14591.exe_4658]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591\b14591.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14716.exe_4659]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716\b14716.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14769.exe_4660]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769\b14769.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14770.exe_4661]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770\b14770.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14777.exe_4662]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777\b14777.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14927.exe_4663]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927\b14927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14928.exe_4664]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928\b14928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15203.exe_4665]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203\b15203.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b15222.exe_4666]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222\b15222.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15244.exe_4667]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244\b15244.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15299.exe_4668]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299\b15299.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15728.exe_4669]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728\b15728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16039.exe_4670]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039\b16039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16049.exe_4671]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049\b16049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16071.exe_4672]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071\b16071.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16238.exe_4673]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238\b16238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16241.exe_4674]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241\b16241.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[b16295.exe_4675]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295\b16295.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16328.exe_4676]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328\b16328.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16335.exe_4677]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335\b16335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16345.exe_4678]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345\b16345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16423.exe_4679]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423\b16423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;ISSUE_2925;ISSUE_2989
+HostStyle=Any
+[b16498.exe_4680]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498\b16498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16499a.exe_4681]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a\b16499a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16499b.exe_4682]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b\b16499b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16500.exe_4683]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500\b16500.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16503.exe_4684]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503\b16503.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16554.exe_4685]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554\b16554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16881a.exe_4686]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a\b16881a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16881b.exe_4687]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b\b16881b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16886.exe_4688]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886\b16886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16895.exe_4689]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895\b16895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16896.exe_4690]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896\b16896.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16922.exe_4691]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922\b16922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16928.exe_4692]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928\b16928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b18852.exe_4693]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852\b18852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b20079.exe_4694]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079\b20079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b20217.exe_4695]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217\b20217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b20249.exe_4696]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249\b20249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b20913.exe_4697]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913\b20913.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b22290.exe_4698]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290\b22290.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b24727.exe_4699]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727\b24727.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b24728.exe_4700]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728\b24728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25458.exe_4701]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458\b25458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25459.exe_4702]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459\b25459.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25463.exe_4703]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463\b25463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25468.exe_4704]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468\b25468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25474.exe_4705]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474\b25474.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25491.exe_4706]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491\b25491.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25507.exe_4707]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507\b25507.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25647.exe_4708]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647\b25647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25701.exe_4709]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701\b25701.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25739.exe_4710]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739\b25739.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25813.exe_4711]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813\b25813.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25815.exe_4712]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815\b25815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25833.exe_4713]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833\b25833.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25835.exe_4714]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835\b25835.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b25882.exe_4715]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882\b25882.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b26020.exe_4716]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020\b26020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26153.exe_4717]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153\b26153.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26155.exe_4718]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155\b26155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26324a.exe_4719]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a\b26324a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b26324b.exe_4720]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b\b26324b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b26332.exe_4721]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332\b26332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26512.exe_4722]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512\b26512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26558.exe_4723]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558\b26558.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26560.exe_4724]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560\b26560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26732.exe_4725]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732\b26732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26748.exe_4726]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748\b26748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26863.exe_4727]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863\b26863.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26888.exe_4728]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888\b26888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26957.exe_4729]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957\b26957.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27535.exe_4730]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535\b27535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27538.exe_4731]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538\b27538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27564.exe_4732]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564\b27564.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27657.exe_4733]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657\b27657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27658.exe_4734]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658\b27658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27811.exe_4735]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811\b27811.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27819.exe_4736]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819\b27819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27824.exe_4737]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824\b27824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27880.exe_4738]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880\b27880.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27883.exe_4739]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883\b27883.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27917.exe_4740]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917\b27917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28037.exe_4741]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037\b28037.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28042.exe_4742]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042\b28042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28080.exe_4743]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080\b28080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28522.exe_4744]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522\b28522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28594.exe_4745]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594\b28594.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28595.exe_4746]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595\b28595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28596.exe_4747]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596\b28596.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28597.exe_4748]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597\b28597.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28776.exe_4749]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776\b28776.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28787.exe_4750]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787\b28787.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28790.exe_4751]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790\b28790.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28805.exe_4752]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805\b28805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28806.exe_4753]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806\b28806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28901.exe_4754]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901\b28901.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b28927.exe_4755]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927\b28927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b29068.exe_4756]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068\b29068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b29456.exe_4757]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456\b29456.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b29583.exe_4758]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583\b29583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30125.exe_4759]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125\b30125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30126.exe_4760]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126\b30126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30128.exe_4761]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128\b30128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30630.exe_4762]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630\b30630.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30792.exe_4763]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792\b30792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30799.exe_4764]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799\b30799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30838.exe_4765]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838\b30838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b30862.exe_4766]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862\b30862.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30864.exe_4767]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864\b30864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b30869.exe_4768]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869\b30869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30892.exe_4769]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892\b30892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30905.exe_4770]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905\b30905.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b31102.exe_4771]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102\b31102.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31150.exe_4772]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150\b31150.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b31273.exe_4773]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273\b31273.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31321.exe_4774]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321\b31321.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31343.exe_4775]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343\b31343.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31448.exe_4776]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448\b31448.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31732.exe_4777]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732\b31732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31748.exe_4778]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748\b31748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31749.exe_4779]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749\b31749.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31763.exe_4780]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763\b31763.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31912.exe_4781]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912\b31912.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32093.exe_4782]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093\b32093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32303.exe_4783]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303\b32303.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32345.exe_4784]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345\b32345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32374.exe_4785]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374\b32374.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;ISSUE_2989
+HostStyle=Any
+[b32551a.exe_4786]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a\b32551a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32551b.exe_4787]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b\b32551b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32560.exe_4788]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560\b32560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32801.exe_4789]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801\b32801.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32879.exe_4790]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879\b32879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b34423.exe_4791]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423\b34423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02043.exe_4792]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043\b02043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02051.exe_4793]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051\b02051.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02062.exe_4794]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062\b02062.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02076.exe_4795]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076\b02076.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02352.exe_4796]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352\b02352.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b03995.exe_4797]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995\b03995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04083.exe_4798]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083\b04083.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04250.exe_4799]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250\b04250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04257.exe_4800]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257\b04257.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04306.exe_4801]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306\b04306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[B04345.exe_4802]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345\B04345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04384.exe_4803]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384\b04384.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04538.exe_4804]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538\b04538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04574.exe_4805]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574\b04574.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04583.exe_4806]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583\b04583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04612.exe_4807]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612\b04612.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04639.exe_4808]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639\b04639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04726.exe_4809]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726\b04726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b04914.exe_4810]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914\b04914.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b05214.exe_4811]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214\b05214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05477.exe_4812]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477\b05477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05617.exe_4813]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617\b05617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05619.exe_4814]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619\b05619.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05621.exe_4815]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621\b05621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05622.exe_4816]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622\b05622.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05637.exe_4817]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637\b05637.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05639.exe_4818]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639\b05639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05737.exe_4819]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737\b05737.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05740.exe_4820]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740\b05740.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05773.exe_4821]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773\b05773.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05780.exe_4822]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780\b05780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05784.exe_4823]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784\b05784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05933.exe_4824]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933\b05933.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06436.exe_4825]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436\b06436.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06464.exe_4826]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464\b06464.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06595.exe_4827]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595\b06595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06680.exe_4828]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680\b06680.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06730.exe_4829]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730\b06730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06754.exe_4830]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754\b06754.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06811.exe_4831]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811\b06811.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b06812.exe_4832]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812\b06812.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b06859.exe_4833]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859\b06859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06924.exe_4834]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924\b06924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07082.exe_4835]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082\b07082.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07411.exe_4836]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411\b07411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07458.exe_4837]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458\b07458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07483.exe_4838]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483\b07483.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b07704.exe_4839]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704\b07704.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08109.exe_4841]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109\b08109.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08172.exe_4842]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172\b08172.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b08672.exe_4843]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672\b08672.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08797.exe_4844]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797\b08797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08944a.exe_4845]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a\b08944a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08944b.exe_4846]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b\b08944b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b09246.exe_4847]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246\b09246.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b09254.exe_4848]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254\b09254.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b09287.exe_4849]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287\b09287.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b09452.exe_4850]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452\b09452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13330.exe_4851]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330\b13330.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13466.exe_4852]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466\b13466.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27873.exe_4853]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873\b27873.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b29351.exe_4854]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351\b29351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30586.exe_4855]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586\b30586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31878.exe_4856]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878\b31878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33759.exe_4857]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759\b33759.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33792.exe_4858]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792\b33792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33888.exe_4859]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888\b33888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33922.exe_4860]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922\b33922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33928.exe_4861]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928\b33928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b34945.exe_4862]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945\b34945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35784.exe_4863]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784\b35784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b36030.exe_4864]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030\b36030.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36274.exe_4865]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274\b36274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36332.exe_4866]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332\b36332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36470.exe_4867]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470\b36470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36471.exe_4868]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471\b36471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36472.exe_4869]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472\b36472.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b37131.exe_4870]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131\b37131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37598.exe_4871]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598\b37598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b37608.exe_4872]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608\b37608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37636.exe_4873]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636\b37636.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b38403.exe_4874]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403\b38403.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b38556.exe_4875]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556\b38556.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39217.exe_4876]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217\b39217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39224.exe_4877]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224\b39224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39381.exe_4878]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381\b39381.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39397.exe_4879]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397\b39397.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39417.exe_4880]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417\b39417.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39455.exe_4881]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455\b39455.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39946.exe_4882]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946\b39946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b39951.exe_4883]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951\b39951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40141.exe_4884]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141\b40141.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40174.exe_4885]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174\b40174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40199.exe_4886]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199\b40199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40216.exe_4887]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216\b40216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40221.exe_4888]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221\b40221.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40269.exe_4889]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269\b40269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40347.exe_4890]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40380.exe_4891]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380\b40380.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40411.exe_4892]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411\b40411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40496.exe_4893]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496\b40496.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40521.exe_4894]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521\b40521.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40721.exe_4895]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721\b40721.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+HostStyle=Any
+[b40725.exe_4896]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725\b40725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41002.exe_4897]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002\b41002.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41063.exe_4898]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063\b41063.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41126.exe_4899]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126\b41126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41129.exe_4900]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129\b41129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41149.exe_4901]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149\b41149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41164.exe_4902]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164\b41164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41234.exe_4903]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234\b41234.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41262.exe_4904]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262\b41262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41278.exe_4905]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278\b41278.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41391.exe_4906]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391\b41391.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;ISSUE_2989
+HostStyle=Any
+[b41470.exe_4907]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470\b41470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41488.exe_4908]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488\b41488.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41495.exe_4909]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495\b41495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41621.exe_4910]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621\b41621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2989
+HostStyle=Any
+[b41627.exe_4911]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627\b41627.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41918.exe_4912]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918\b41918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41990.exe_4913]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990\b41990.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b42009.exe_4914]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009\b42009.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b42013.exe_4915]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013\b42013.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b42387.exe_4916]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387\b42387.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b42732.exe_4917]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732\b42732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b42918.exe_4918]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918\b42918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b42929.exe_4919]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929\b42929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43010.exe_4920]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010\b43010.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43033.exe_4921]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033\b43033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43040.exe_4922]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040\b43040.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43069.exe_4923]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069\b43069.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43115.exe_4924]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115\b43115.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43121.exe_4925]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121\b43121.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43160.exe_4926]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160\b43160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43313.exe_4927]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313\b43313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43313.exe_4928]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313\b43313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b43378.exe_4929]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378\b43378.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43714.exe_4930]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714\b43714.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43719.exe_4931]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719\b43719.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43958.exe_4932]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958\b43958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43963.exe_4933]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963\b43963.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b43994.exe_4934]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994\b43994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44020.exe_4935]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020\b44020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44193.exe_4936]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193\b44193.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44204.exe_4937]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204\b44204.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44224.exe_4938]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224\b44224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44297.exe_4939]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297\b44297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44410.exe_4940]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410\b44410.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44657.exe_4941]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657\b44657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44723.exe_4942]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723\b44723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44724.exe_4943]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724\b44724.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44861.exe_4944]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861\b44861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44879.exe_4945]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879\b44879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44946.exe_4946]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946\b44946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44983.exe_4947]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983\b44983.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44984.exe_4948]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984\b44984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b44985.exe_4949]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985\b44985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45015.exe_4950]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015\b45015.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45259.exe_4951]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259\b45259.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45270.exe_4952]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270\b45270.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45439.exe_4953]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439\b45439.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45458.exe_4954]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458\b45458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45535.exe_4955]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535\b45535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45541.exe_4956]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541\b45541.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45956.exe_4957]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956\b45956.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45984.exe_4958]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984\b45984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b45985.exe_4959]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985\b45985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46170.exe_4960]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170\b46170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46292.exe_4961]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292\b46292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46569.exe_4962]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569\b46569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46576.exe_4963]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576\b46576.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46583.exe_4964]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583\b46583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46629.exe_4965]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629\b46629.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46641.exe_4966]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641\b46641.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46649.exe_4967]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649\b46649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b46867.exe_4968]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867\b46867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;ISSUE_2989
+HostStyle=Any
+[b46897.exe_4969]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897\b46897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47022.exe_4970]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022\b47022.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47047.exe_4971]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047\b47047.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47080.exe_4972]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080\b47080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47093.exe_4973]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093\b47093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47610.exe_4974]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610\b47610.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47885.exe_4975]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885\b47885.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47906.exe_4976]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906\b47906.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48248.exe_4977]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248\b48248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48350.exe_4978]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350\b48350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48554a.exe_4979]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a\b48554a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48554b.exe_4980]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b\b48554b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48614.exe_4981]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614\b48614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48797.exe_4982]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797\b48797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48805.exe_4983]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805\b48805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48864.exe_4984]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864\b48864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48872.exe_4985]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872\b48872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48990a.exe_4986]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a\b48990a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48990b.exe_4987]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b\b48990b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49101.exe_4988]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101\b49101.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49318.exe_4989]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318\b49318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49322.exe_4990]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322\b49322.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49644.exe_4991]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644\b49644.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b49717.exe_4992]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717\b49717.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49984.exe_4993]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984\b49984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11553.exe_4994]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553\b11553.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16122.exe_4995]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122\b16122.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b18857.exe_4996]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857\b18857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28598.exe_4997]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598\b28598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b30868.exe_4998]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868\b30868.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31182.exe_4999]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182\b31182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31283.exe_5000]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283\b31283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31289.exe_5001]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289\b31289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31292.exe_5002]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292\b31292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31423.exe_5003]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423\b31423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31452.exe_5004]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452\b31452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31493.exe_5005]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493\b31493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31547.exe_5006]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547\b31547.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31745.exe_5007]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745\b31745.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b31746.exe_5008]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746\b31746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b31762.exe_5009]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762\b31762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31780.exe_5010]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780\b31780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31784.exe_5011]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784\b31784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31903.exe_5012]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903\b31903.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31917.exe_5013]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917\b31917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32613.exe_5014]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613\b32613.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b32614.exe_5015]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614\b32614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33125.exe_5016]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125\b33125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33131.exe_5017]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131\b33131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33135.exe_5018]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135\b33135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33335.exe_5019]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335\b33335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33361.exe_5020]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361\b33361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33362.exe_5021]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362\b33362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33388.exe_5022]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388\b33388.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33585.exe_5023]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585\b33585.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b33586.exe_5024]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586\b33586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b34951.exe_5025]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951\b34951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b34952.exe_5026]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952\b34952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b34953.exe_5027]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953\b34953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35315.exe_5028]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315\b35315.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35344.exe_5029]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344\b35344.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35348.exe_5030]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348\b35348.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35351.exe_5031]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351\b35351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35354.exe_5032]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354\b35354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35366.exe_5033]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366\b35366.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35486.exe_5034]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486\b35486.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35635.exe_5035]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635\b35635.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b35779.exe_5036]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779\b35779.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36301.exe_5037]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301\b36301.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36302.exe_5038]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302\b36302.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36304.exe_5039]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304\b36304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b36975.exe_5040]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975\b36975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37214.exe_5041]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214\b37214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37215.exe_5042]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215\b37215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37238.exe_5043]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238\b37238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37256.exe_5044]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256\b37256.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37578.exe_5045]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578\b37578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b37646.exe_5046]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646\b37646.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b37830.exe_5047]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830\b37830.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b38269.exe_5048]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269\b38269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40006.exe_5049]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006\b40006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b40347.exe_5050]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b41852.exe_5051]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852\b41852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b43693.exe_5052]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693\b43693.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b43694.exe_5053]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694\b43694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b46566.exe_5054]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566\b46566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47471.exe_5055]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471\b47471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47886.exe_5056]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886\b47886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b47975.exe_5057]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975\b47975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48929.exe_5058]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929\b48929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49104.exe_5059]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104\b49104.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49142.exe_5060]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142\b49142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49335.exe_5061]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335\b49335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49435.exe_5062]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435\b49435.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49809.exe_5063]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809\b49809.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50026.exe_5064]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026\b50026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50027.exe_5065]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027\b50027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+HostStyle=Any
+[b50033.exe_5066]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033\b50033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50042.exe_5067]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042\b50042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50145.exe_5068]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145\b50145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50145a.exe_5069]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a\b50145a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50145b.exe_5070]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b\b50145b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50145c.exe_5071]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c\b50145c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b50535.exe_5072]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535\b50535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51420.exe_5073]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420\b51420.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+HostStyle=Any
+[b51463.exe_5074]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463\b51463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51469.exe_5075]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469\b51469.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51515.exe_5076]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515\b51515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51565.exe_5077]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565\b51565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51575.exe_5078]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575\b51575.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51817.exe_5079]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817\b51817.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b51870.exe_5080]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870\b51870.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b51875.exe_5081]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875\b51875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b51875.exe_5082]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875\b51875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b52572.exe_5083]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572\b52572.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52578.exe_5084]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578\b52578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52593.exe_5085]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593\b52593.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b52733.exe_5086]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733\b52733.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b52746.exe_5087]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746\b52746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52760.exe_5088]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760\b52760.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52838.exe_5089]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838\b52838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52839.exe_5090]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839\b52839.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b52840.exe_5091]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840\b52840.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b53226a.exe_5092]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a\b53226a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b53226b.exe_5093]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b\b53226b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b53547.exe_5094]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547\b53547.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b53650.exe_5095]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650\b53650.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53662.exe_5096]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662\b53662.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53878.exe_5097]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878\b53878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53884.exe_5098]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884\b53884.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53942a.exe_5099]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a\b53942a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53942b.exe_5100]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b\b53942b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53958.exe_5101]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958\b53958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53977.exe_5102]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977\b53977.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53980.exe_5103]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980\b53980.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b53994.exe_5104]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994\b53994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[b53995.exe_5105]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995\b53995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54006.exe_5106]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006\b54006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54565.exe_5107]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565\b54565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54566.exe_5108]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566\b54566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54611.exe_5109]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611\b54611.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54667.exe_5110]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667\b54667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b54971.exe_5111]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971\b54971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b55197.exe_5112]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197\b55197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b55197.exe_5113]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197\b55197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b55216.exe_5114]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216\b55216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b55875.exe_5115]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875\b55875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b55923.exe_5116]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923\b55923.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56066.exe_5117]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066\b56066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56068.exe_5118]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068\b56068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56149.exe_5119]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149\b56149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56154.exe_5120]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154\b56154.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56159.exe_5121]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159\b56159.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56174.exe_5122]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174\b56174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56349.exe_5123]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349\b56349.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b56772.exe_5124]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772\b56772.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b56780.exe_5125]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780\b56780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b57367.exe_5126]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57367\b57367\b57367.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57367\b57367
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b57492.exe_5127]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492\b57492.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b57493.exe_5128]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493\b57493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
+HostStyle=Any
+[b57516.exe_5129]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516\b57516.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b57518.exe_5130]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518\b57518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b57952.exe_5131]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952\b57952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b58358.exe_5132]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358\b58358.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b58360.exe_5133]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360\b58360.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b58689.exe_5134]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689\b58689.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b58690.exe_5135]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690\b58690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b58866.exe_5136]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866\b58866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59297.exe_5137]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297\b59297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59319.exe_5138]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319\b59319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59320.exe_5139]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320\b59320.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59337.exe_5140]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337\b59337.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59477.exe_5141]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477\b59477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59478.exe_5142]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478\b59478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59508.exe_5143]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508\b59508.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59546.exe_5144]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546\b59546.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b59554.exe_5145]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554\b59554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59647.exe_5146]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647\b59647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59678.exe_5147]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678\b59678.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b59782.exe_5148]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782\b59782.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59822.exe_5149]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822\b59822.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59857.exe_5150]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857\b59857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59858.exe_5151]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858\b59858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59899.exe_5152]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899\b59899.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b59947.exe_5153]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947\b59947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59948.exe_5154]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948\b59948.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59949.exe_5155]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949\b59949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59952.exe_5156]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952\b59952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b59953.exe_5157]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953\b59953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b60127.exe_5158]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127\b60127.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b60142.exe_5159]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142\b60142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b60194.exe_5160]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194\b60194.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b60600.exe_5161]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600\b60600.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b60723.exe_5162]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723\b60723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61025.exe_5163]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025\b61025.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61028.exe_5164]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028\b61028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61185.exe_5165]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185\b61185.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61215.exe_5166]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215\b61215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61515.exe_5167]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515\b61515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b61640.exe_5168]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640\b61640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b62145.exe_5169]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145\b62145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b62498.exe_5170]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498\b62498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b62555.exe_5171]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555\b62555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b62892.exe_5172]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892\b62892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63183.exe_5173]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183\b63183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63552.exe_5174]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552\b63552.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63725.exe_5175]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725\b63725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63726.exe_5176]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726\b63726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63730.exe_5177]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730\b63730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63732.exe_5178]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732\b63732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b63743.exe_5179]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743\b63743.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b63823.exe_5180]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823\b63823.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b64026.exe_5181]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026\b64026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b64560.exe_5182]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560\b64560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b64579.exe_5183]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579\b64579.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b65087.exe_5184]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087\b65087.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b65176.exe_5185]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176\b65176.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b65407.exe_5186]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407\b65407.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b65423.exe_5187]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423\b65423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b66226.exe_5188]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226\b66226.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b66425.exe_5189]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425\b66425.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b66533.exe_5190]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533\b66533.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b66583.exe_5191]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583\b66583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b66620.exe_5192]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620\b66620.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b66679.exe_5193]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679\b66679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b67351.exe_5194]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351\b67351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b67414.exe_5195]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414\b67414.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b67744.exe_5196]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744\b67744.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b67819.exe_5197]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819\b67819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b67987.exe_5198]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987\b67987.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b68028.exe_5199]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028\b68028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b68045.exe_5200]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045\b68045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b68361.exe_5201]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361\b68361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b68634.exe_5202]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634\b68634.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b68757.exe_5203]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757\b68757.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b68872.exe_5204]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872\b68872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b69225.exe_5205]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225\b69225.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b69227.exe_5206]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227\b69227.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b69512.exe_5207]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512\b69512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b69528.exe_5208]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528\b69528.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b69848.exe_5209]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848\b69848.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70267.exe_5210]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267\b70267.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70289.exe_5211]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289\b70289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70335.exe_5212]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335\b70335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70354.exe_5213]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354\b70354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70808.exe_5214]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808\b70808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70909.exe_5215]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909\b70909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70964.exe_5216]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964\b70964.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70967.exe_5217]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967\b70967.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70992.exe_5218]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992\b70992.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b70994.exe_5219]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994\b70994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71003.exe_5220]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003\b71003.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71005.exe_5221]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005\b71005.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b71093.exe_5222]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093\b71093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b71099.exe_5223]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099\b71099.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71120.exe_5224]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120\b71120.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71135.exe_5225]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135\b71135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71155.exe_5226]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155\b71155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71179.exe_5227]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179\b71179.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71231.exe_5228]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231\b71231.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71318.exe_5229]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318\b71318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71722.exe_5230]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722\b71722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71831.exe_5231]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831\b71831.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71869.exe_5232]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869\b71869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b71999.exe_5233]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999\b71999.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72136.exe_5234]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136\b72136.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72160.exe_5235]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160\b72160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72161.exe_5236]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161\b72161.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72164.exe_5237]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164\b72164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b72422.exe_5238]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422\b72422.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b72518.exe_5239]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518\b72518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72522.exe_5240]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522\b72522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72687.exe_5241]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687\b72687.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b72699.exe_5242]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699\b72699.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72828.exe_5243]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828\b72828.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72932.exe_5244]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932\b72932.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b72986.exe_5245]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986\b72986.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b72996.exe_5246]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996\b72996.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b73079.exe_5247]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079\b73079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b73207.exe_5248]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207\b73207.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b73283.exe_5249]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283\b73283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b73786.exe_5250]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786\b73786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b73921.exe_5251]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921\b73921.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b74182.exe_5252]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182\b74182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b74608.exe_5253]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608\b74608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b74937.exe_5254]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937\b74937.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b74939.exe_5255]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939\b74939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b74976.exe_5256]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976\b74976.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75250.exe_5257]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250\b75250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75509.exe_5258]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509\b75509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75888.exe_5259]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888\b75888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75890.exe_5260]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890\b75890.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75944.exe_5261]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944\b75944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75945.exe_5262]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945\b75945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b75988.exe_5263]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988\b75988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b76267.exe_5264]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267\b76267.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b76511.exe_5265]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511\b76511.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b76590.exe_5266]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590\b76590.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b76717.exe_5267]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717\b76717.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b77304.exe_5268]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304\b77304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b77707.exe_5269]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707\b77707.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b77713.exe_5270]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713\b77713.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b77806.exe_5271]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806\b77806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b77950.exe_5272]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950\b77950.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b78392.exe_5273]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392\b78392.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b78694.exe_5274]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694\b78694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b79250.exe_5275]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250\b79250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b79418.exe_5276]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418\b79418.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b79642.exe_5277]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642\b79642.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b80043.exe_5278]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043\b80043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80045.exe_5279]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045\b80045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80764.exe_5280]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764\b80764.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b80824.exe_5281]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824\b80824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b81618.exe_5282]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618\b81618.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b81938.exe_5283]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938\b81938.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b82048.exe_5284]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048\b82048.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b82160.exe_5285]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160\b82160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b82247.exe_5286]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247\b82247.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b82249.exe_5287]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249\b82249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b82715.exe_5288]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715\b82715.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b82866.exe_5289]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866\b82866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b83690.exe_5290]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690\b83690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b83702.exe_5291]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702\b83702.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b84836.exe_5292]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836\b84836.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84909.exe_5293]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909\b84909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84916.exe_5294]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916\b84916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84971.exe_5295]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971\b84971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85316.exe_5296]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91377.exe_5297]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377\b91377.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b101147.exe_5298]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147\b101147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b113239.exe_5299]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239\b113239.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b85477.exe_5300]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477\b85477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b86139.exe_5301]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139\b86139.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b87284.exe_5302]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284\b87284.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b87285.exe_5303]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285\b87285.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b88712.exe_5304]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712\b88712.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b88793.exe_5305]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793\b88793.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b88797.exe_5306]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797\b88797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89277.exe_5307]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277\b89277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89279.exe_5308]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279\b89279.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89409.exe_5309]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409\b89409.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89506.exe_5310]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506\b89506.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89546.exe_5311]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546\b89546.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89600.exe_5312]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600\b89600.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b89797.exe_5313]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797\b89797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b89946.exe_5314]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946\b89946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b90129.exe_5315]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129\b90129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91021.exe_5316]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021\b91021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91189.exe_5317]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189\b91189.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91203.exe_5318]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203\b91203.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91223.exe_5319]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223\b91223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91230.exe_5320]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230\b91230.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91248.exe_5321]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248\b91248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b91359.exe_5322]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359\b91359.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91855.exe_5323]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855\b91855.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91859.exe_5324]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859\b91859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91867.exe_5325]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867\b91867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91917.exe_5326]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917\b91917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92066.exe_5327]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066\b92066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b92073.exe_5328]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073\b92073.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b92289.exe_5329]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289\b92289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b92568.exe_5330]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568\b92568.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92614.exe_5331]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614\b92614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92693.exe_5332]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693\b92693.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92714.exe_5333]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714\b92714.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b92736.exe_5334]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736\b92736.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b93027.exe_5335]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027\b93027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b93635.exe_5336]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635\b93635.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b94306.exe_5337]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306\b94306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b98958.exe_5338]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958\b98958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b99222.exe_5339]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222\b99222.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b99235.exe_5340]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235\b99235.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b99667.exe_5341]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667\b99667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b99969.exe_5342]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969\b99969.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b119538a.exe_5343]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a\b119538a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b119538b.exe_5344]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b\b119538b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b147814_il.exe_5345]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il\b147814_il.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b147816.exe_5346]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816\b147816.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b148815.exe_5347]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815\b148815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[params-mixed.exe_5348]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed\params-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[params-none.exe_5349]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none\params-none.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[params-object.exe_5350]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object\params-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[params-value.exe_5351]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value\params-value.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[params-varargs.exe_5352]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs\params-varargs.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static-mixed.exe_5353]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed\static-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static-none.exe_5354]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none\static-none.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[static-object.exe_5355]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object\static-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[static-ref.exe_5356]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref\static-ref.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b119294.exe_5357]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294\b119294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b130333.exe_5358]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333\b130333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b139895.exe_5359]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895\b139895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b140118.exe_5360]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118\b140118.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b140711.exe_5361]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711\b140711.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b140902.exe_5362]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902\b140902.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b143840.exe_5363]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840\b143840.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b101136.exe_5364]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b101136\b101136\b101136.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b101136\b101136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b102637.exe_5365]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637\b102637.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b102879.exe_5366]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879\b102879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b103058.exe_5367]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058\b103058.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b124232.exe_5368]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232\b124232.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b147147.exe_5369]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147\b147147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b147924.exe_5370]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924\b147924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b169333.exe_5371]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333\b169333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b178119.exe_5372]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119\b178119.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b178128.exe_5373]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128\b178128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b180381a.exe_5374]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a\b180381a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b180381b.exe_5375]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b\b180381b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b191926.exe_5376]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926\b191926.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;DBG_FAIL
+HostStyle=Any
+[csharptester.exe_5377]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester\csharptester.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b213516.exe_5378]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516\b213516.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b219940.exe_5379]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940\b219940.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b220968.exe_5380]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968\b220968.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b223924.exe_5381]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924\b223924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b223932.exe_5382]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932\b223932.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b223936.exe_5383]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936\b223936.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b00722.exe_5384]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722\b00722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b00735.exe_5385]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735\b00735.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b02345.exe_5386]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345\b02345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE
+HostStyle=Any
+[b02762.exe_5387]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762\b02762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b03689.exe_5388]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689\b03689.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b04319.exe_5389]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319\b04319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b05623.exe_5390]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623\b05623.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b06020.exe_5391]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020\b06020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07211.exe_5392]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211\b07211.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07369.exe_5393]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369\b07369.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07383.exe_5394]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383\b07383.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07900.exe_5395]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900\b07900.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b07947.exe_5396]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947\b07947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08020.exe_5397]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020\b08020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b08046.exe_5398]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046\b08046.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b11762.exe_5399]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762\b11762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13452.exe_5400]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452\b13452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14617.exe_5401]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617\b14617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15617.exe_5402]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617\b15617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16378.exe_5403]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378\b16378.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16382.exe_5404]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382\b16382.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16386.exe_5405]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386\b16386.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16399.exe_5406]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399\b16399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16473.exe_5407]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473\b16473.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16570.exe_5408]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570\b16570.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b18049.exe_5409]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049\b18049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b00719.exe_5410]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719\b00719.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b102962a.exe_5411]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a\b102962a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102962b.exe_5412]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b\b102962b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102962c.exe_5413]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c\b102962c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b115932a.exe_5414]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a\b115932a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b115932b.exe_5415]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b\b115932b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b118260.exe_5416]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260\b118260.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b138117.exe_5417]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117\b138117.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b19171.exe_5418]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171\b19171.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b21296.exe_5419]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296\b21296.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b30251.exe_5420]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251\b30251.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b31398.exe_5421]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398\b31398.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b091942.exe_5422]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942\b091942.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102533.exe_5423]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533\b102533.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b125091.exe_5424]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091\b125091.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b268908.exe_5425]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908\b268908.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[OverwriteArray.exe_5426]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309042\OverwriteArray\OverwriteArray.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309042\OverwriteArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b309555.exe_5427]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555\b309555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b320147.exe_5428]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147\b320147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b321799.exe_5429]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799\b321799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b323557-dbg.exe_5430]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg\b323557-dbg.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b323557-ret.exe_5431]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret\b323557-ret.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b338014.exe_5432]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014\b338014.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b353858.exe_5433]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858\b353858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b359564.exe_5434]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564\b359564.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b374944.exe_5435]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944\b374944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b399444a.exe_5436]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a\b399444a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b399444b.exe_5437]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b\b399444b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b405223.exe_5438]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223\b405223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b409617.exe_5439]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617\b409617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b409748.exe_5440]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748\b409748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_2925
+HostStyle=Any
+[b415164.exe_5441]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164\b415164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b416667.exe_5442]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667\b416667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b423721.exe_5443]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721\b423721.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b423755.exe_5444]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755\b423755.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b423755.exe_5445]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755\b423755.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b425314.exe_5446]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314\b425314.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b426654.exe_5447]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654\b426654.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b431011.exe_5448]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b431011\b431011\b431011.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b431011\b431011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b441487.exe_5449]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487\b441487.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b448208.exe_5450]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208\b448208.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b449827.exe_5451]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827\b449827.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b369916.exe_5452]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916\b369916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b471305.exe_5453]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305\b471305.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b475589.exe_5454]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589\b475589.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b487364.exe_5455]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364\b487364.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b487372.exe_5456]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372\b487372.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b489329.exe_5457]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329\b489329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b491215.exe_5458]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215\b491215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b518440.exe_5459]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440\b518440.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b530694.exe_5460]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694\b530694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[test.exe_5461]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test\test.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[test2.exe_5462]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2\test2.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b604247.exe_5463]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247\b604247.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b106272.exe_5464]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272\b106272.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b152292.exe_5465]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292\b152292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b173313.exe_5466]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313\b173313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b193264.exe_5467]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264\b193264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b48850.exe_5468]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850\b48850.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b561129.exe_5469]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129\b561129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b565808.exe_5470]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808\b565808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b569942.exe_5471]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942\b569942.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b589202.exe_5472]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202\b589202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b598034.exe_5473]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034\b598034.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b598649.exe_5474]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649\b598649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b602004.exe_5475]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004\b602004.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b608066.exe_5476]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066\b608066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b608198.exe_5477]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198\b608198.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b609280.exe_5478]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280\b609280.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b609988.exe_5479]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988\b609988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b609988.exe_5480]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988\b609988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b610562.exe_5481]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562\b610562.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b610750.exe_5482]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750\b610750.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b610750_32vs64.exe_5483]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64\b610750_32vs64.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b611219.exe_5484]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219\b611219.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b72218.exe_5485]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218\b72218.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE
+HostStyle=Any
+[ConstToString.exe_5486]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString\ConstToString.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b151497.exe_5487]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497\b151497.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b158861.exe_5488]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861\b158861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b163200.exe_5489]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200\b163200.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[LdfldaHack.exe_5490]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack\LdfldaHack.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;DBG_FAIL
+HostStyle=Any
+[b170362.exe_5491]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362\b170362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b174294.exe_5492]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294\b174294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b175679.exe_5493]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679\b175679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b176032.exe_5494]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032\b176032.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b188478.exe_5495]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478\b188478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b19679.exe_5496]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679\b19679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b202743.exe_5497]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743\b202743.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b33183.exe_5498]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183\b33183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b49778.exe_5499]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778\b49778.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[b429039.exe_5500]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039\b429039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DDB188478.exe_5501]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478\DDB188478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev10_865840.exe_5502]
+RelativePath=JIT\Regression\Dev11\dev10_865840\dev10_865840\dev10_865840.exe
+WorkingDir=JIT\Regression\Dev11\dev10_865840\dev10_865840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[loopvt.exe_5503]
+RelativePath=JIT\Regression\Dev11\dev10_94677\loopvt\loopvt.exe
+WorkingDir=JIT\Regression\Dev11\dev10_94677\loopvt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[conv_ovf_i4.exe_5504]
+RelativePath=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4\conv_ovf_i4.exe
+WorkingDir=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev11_13912.exe_5505]
+RelativePath=JIT\Regression\Dev11\dev11_13912\dev11_13912\dev11_13912.exe
+WorkingDir=JIT\Regression\Dev11\dev11_13912\dev11_13912
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[seqpts.exe_5506]
+RelativePath=JIT\Regression\Dev11\dev11_165544\seqpts\seqpts.exe
+WorkingDir=JIT\Regression\Dev11\dev11_165544\seqpts
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[dev11_20929_d.exe_5507]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_d\dev11_20929_d.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev11_20929_do.exe_5508]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_do\dev11_20929_do.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev11_20929_r.exe_5509]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_r\dev11_20929_r.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev11_20929_ro.exe_5510]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro\dev11_20929_ro.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Dev11_4421.exe_5511]
+RelativePath=JIT\Regression\Dev11\dev11_4421\Dev11_4421\Dev11_4421.exe
+WorkingDir=JIT\Regression\Dev11\dev11_4421\Dev11_4421
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Dev11_457559.exe_5512]
+RelativePath=JIT\Regression\Dev11\Dev11_457559\Dev11_457559\Dev11_457559.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_457559\Dev11_457559
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_HndIndex_10_Plain.exe_5513]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain\Test_HndIndex_10_Plain.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Test_HndIndex_10_Reordered.exe_5514]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered\Test_HndIndex_10_Reordered.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev11_5437.exe_5515]
+RelativePath=JIT\Regression\Dev11\Dev11_5437\Dev11_5437\Dev11_5437.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_5437\Dev11_5437
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev11_617302.exe_5516]
+RelativePath=JIT\Regression\Dev11\Dev11_617302\Dev11_617302\Dev11_617302.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_617302\Dev11_617302
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev11_646049.exe_5517]
+RelativePath=JIT\Regression\Dev11\Dev11_646049\Dev11_646049\Dev11_646049.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_646049\Dev11_646049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[Dev11_76013.exe_5518]
+RelativePath=JIT\Regression\Dev11\dev11_76013\Dev11_76013\Dev11_76013.exe
+WorkingDir=JIT\Regression\Dev11\dev11_76013\Dev11_76013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b473131.exe_5519]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131\b473131.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b473131_byte.exe_5520]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_byte\b473131_byte.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_byte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b473131_fld.exe_5521]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_fld\b473131_fld.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b473131_intptr.exe_5522]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr\b473131_intptr.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b473131_struct.exe_5523]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_struct\b473131_struct.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv2_10623.exe_5524]
+RelativePath=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623\DevDiv2_10623.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv2_11321.exe_5525]
+RelativePath=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321\DevDiv2_11321.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv2_8863.exe_5526]
+RelativePath=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863\DevDiv2_8863.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[BadMax1.exe_5527]
+RelativePath=JIT\Regression\Dev11\External\dev11_111914\BadMax1\BadMax1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_111914\BadMax1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BadBox1.exe_5528]
+RelativePath=JIT\Regression\Dev11\External\dev11_131317\BadBox1\BadBox1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_131317\BadBox1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CSharpPart.exe_5529]
+RelativePath=JIT\Regression\Dev11\External\dev11_132534\CSharpPart\CSharpPart.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_132534\CSharpPart
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[R3Trasher1.exe_5530]
+RelativePath=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1\R3Trasher1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ReflectOnField.exe_5531]
+RelativePath=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField\ReflectOnField.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorForwarder.exe_5532]
+RelativePath=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder\VectorForwarder.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[CSharpPart.exe_5533]
+RelativePath=JIT\Regression\Dev11\External\dev11_145295\CSharpPart\CSharpPart.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_145295\CSharpPart
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[GCHole1.exe_5534]
+RelativePath=JIT\Regression\Dev11\External\dev11_149090\GCHole1\GCHole1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_149090\GCHole1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DynamicStaticAlignment.exe_5535]
+RelativePath=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment\DynamicStaticAlignment.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[ShowLocallocAlignment.exe_5536]
+RelativePath=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment\ShowLocallocAlignment.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[app.exe_5537]
+RelativePath=JIT\Regression\Dev11\External\Dev11_243742\app\app.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_243742\app
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[UninitializedHighWord.exe_5538]
+RelativePath=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord\UninitializedHighWord.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[R3Contention.exe_5539]
+RelativePath=JIT\Regression\Dev11\External\dev11_28763\R3Contention\R3Contention.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_28763\R3Contention
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BadCheckedAdd1.exe_5540]
+RelativePath=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1\BadCheckedAdd1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[UseUnalignedDouble.exe_5541]
+RelativePath=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble\UseUnalignedDouble.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[UseTrashedVfp1.exe_5542]
+RelativePath=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1\UseTrashedVfp1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_876169_d.exe_5543]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d\DevDiv_876169_d.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_876169_do.exe_5544]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do\DevDiv_876169_do.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_876169_r.exe_5545]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r\DevDiv_876169_r.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_876169_ro.exe_5546]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro\DevDiv_876169_ro.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_168744.exe_5547]
+RelativePath=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744\DevDiv_168744.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[devdiv_174983.exe_5548]
+RelativePath=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983\devdiv_174983.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[devdiv_180411.exe_5549]
+RelativePath=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411\devdiv_180411.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_794115_d.exe_5550]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d\DevDiv_794115_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794115_do.exe_5551]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do\DevDiv_794115_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794115_r.exe_5552]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r\DevDiv_794115_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794115_ro.exe_5553]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro\DevDiv_794115_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794631_d.exe_5554]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d\DevDiv_794631_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794631_do.exe_5555]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do\DevDiv_794631_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794631_r.exe_5556]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r\DevDiv_794631_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_794631_ro.exe_5557]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro\DevDiv_794631_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_815940_d.exe_5558]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d\DevDiv_815940_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_815940_do.exe_5559]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do\DevDiv_815940_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_815940_r.exe_5560]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r\DevDiv_815940_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_815940_ro.exe_5561]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro\DevDiv_815940_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[devdiv_815941.exe_5562]
+RelativePath=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941\devdiv_815941.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[devdiv_815942.exe_5563]
+RelativePath=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942\devdiv_815942.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_816617_d.exe_5564]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d\DevDiv_816617_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_816617_do.exe_5565]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do\DevDiv_816617_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_816617_r.exe_5566]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r\DevDiv_816617_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_816617_ro.exe_5567]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro\DevDiv_816617_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_902271.exe_5568]
+RelativePath=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271\DevDiv_902271.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_911875_d.exe_5569]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d\DevDiv_911875_d.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_911875_do.exe_5570]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do\DevDiv_911875_do.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_911875_r.exe_5571]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r\DevDiv_911875_r.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DevDiv_911875_ro.exe_5572]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro\DevDiv_911875_ro.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[GitHub_1296.exe_5573]
+RelativePath=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296\GitHub_1296.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[GitHub_1323.exe_5574]
+RelativePath=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323\GitHub_1323.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[GitHub_2580.exe_5575]
+RelativePath=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580\GitHub_2580.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[GitHub_2610.exe_5576]
+RelativePath=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610\GitHub_2610.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[dev10_804810.exe_5577]
+RelativePath=JIT\Regression\v4\dev10_804810\dev10_804810\dev10_804810.exe
+WorkingDir=JIT\Regression\v4\dev10_804810\dev10_804810
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b100336.exe_5578]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336\b100336.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102759.exe_5579]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759\b102759.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102870.exe_5580]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870\b102870.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b103838.exe_5581]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838\b103838.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b103846.exe_5582]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846\b103846.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b106158.exe_5583]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158\b106158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b108366.exe_5584]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366\b108366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b108908.exe_5585]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908\b108908.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b109721.exe_5586]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721\b109721.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b109878.exe_5587]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878\b109878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b111130.exe_5588]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130\b111130.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b111192.exe_5589]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192\b111192.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b112348.exe_5590]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348\b112348.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b112982.exe_5591]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982\b112982.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b113286.exe_5592]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286\b113286.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b113493.exe_5593]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493\b113493.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b114628.exe_5594]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628\b114628.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b115103.exe_5595]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103\b115103.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b115253.exe_5596]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253\b115253.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b119026a.exe_5597]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a\b119026a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b119026b.exe_5598]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b\b119026b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b140298.exe_5599]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298\b140298.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b141062.exe_5600]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062\b141062.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b141358.exe_5601]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358\b141358.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b77951.exe_5602]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951\b77951.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b79852.exe_5603]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852\b79852.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b79858.exe_5604]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858\b79858.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80365.exe_5605]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365\b80365.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80373.exe_5606]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373\b80373.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80737.exe_5607]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737\b80737.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b80738.exe_5608]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738\b80738.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b81763.exe_5609]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763\b81763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b81764.exe_5610]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764\b81764.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b81766.exe_5611]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766\b81766.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84128.exe_5612]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128\b84128.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b84129.exe_5613]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129\b84129.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84131.exe_5614]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131\b84131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84136.exe_5615]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136\b84136.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84586.exe_5616]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586\b84586.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84590.exe_5617]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590\b84590.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84592.exe_5618]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592\b84592.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84957.exe_5619]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957\b84957.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84958.exe_5620]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958\b84958.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84961.exe_5621]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961\b84961.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b84962.exe_5622]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962\b84962.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85314.exe_5623]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314\b85314.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85315.exe_5624]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315\b85315.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85316.exe_5625]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85317.exe_5626]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317\b85317.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85564.exe_5627]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564\b85564.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85565.exe_5628]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565\b85565.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b85566.exe_5629]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566\b85566.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92713.exe_5630]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713\b92713.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b92726.exe_5631]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726\b92726.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b98431.exe_5632]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431\b98431.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b99219.exe_5633]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219\b99219.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b99403.exe_5634]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403\b99403.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b102615.exe_5635]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615\b102615.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102860.exe_5636]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860\b102860.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102887.exe_5637]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887\b102887.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b124409.exe_5638]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409\b124409.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b126221.exe_5639]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221\b126221.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b142473.exe_5640]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473\b142473.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b223862.exe_5641]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862\b223862.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b301479.exe_5642]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479\b301479.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b302509.exe_5643]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509\b302509.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b91074.exe_5644]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074\b91074.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b91944.exe_5645]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944\b91944.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b91953.exe_5646]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953\b91953.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10789.exe_5647]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789\b10789.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10790.exe_5648]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790\b10790.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10802.exe_5649]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802\b10802.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10827.exe_5650]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827\b10827.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10841.exe_5651]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841\b10841.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b10852.exe_5652]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852\b10852.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b11131.exe_5653]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131\b11131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b11878.exe_5654]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878\b11878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12022.exe_5655]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022\b12022.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12263.exe_5656]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263\b12263.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12343.exe_5657]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343\b12343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12390.exe_5658]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390\b12390.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12425.exe_5659]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425\b12425.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b13691.exe_5660]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691\b13691.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14324.exe_5661]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324\b14324.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b19112a.exe_5662]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a\b19112a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b19112b.exe_5663]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b\b19112b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102518.exe_5664]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518\b102518.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102729.exe_5665]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729\b102729.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102763.exe_5666]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763\b102763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102844.exe_5667]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844\b102844.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b102886.exe_5668]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886\b102886.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b108129.exe_5669]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129\b108129.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b10828.exe_5670]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828\b10828.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b12011.exe_5671]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011\b12011.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14355.exe_5672]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355\b14355.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14364.exe_5673]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364\b14364.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b14366.exe_5674]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366\b14366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14368.exe_5675]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368\b14368.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b14369.exe_5676]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369\b14369.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b15539.exe_5677]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539\b15539.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b16198.exe_5678]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198\b16198.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b16224.exe_5679]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224\b16224.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b17023.exe_5680]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023\b17023.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b17751.exe_5681]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751\b17751.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b17904.exe_5682]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904\b17904.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b19101.exe_5683]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101\b19101.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b19289.exe_5684]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289\b19289.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b19394.exe_5685]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394\b19394.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b21015.exe_5686]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015\b21015.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b22521.exe_5687]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521\b22521.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b22680.exe_5688]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680\b22680.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b26496.exe_5689]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496\b26496.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[b27077.exe_5690]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077\b27077.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b27978.exe_5691]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978\b27978.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b27980.exe_5692]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980\b27980.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28077.exe_5693]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077\b28077.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28141.exe_5694]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141\b28141.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28158.exe_5695]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158\b28158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b28158_64.exe_5696]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64\b28158_64.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b29343.exe_5697]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343\b29343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b29727.exe_5698]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727\b29727.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b184799.exe_5699]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799\b184799.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b302558.exe_5700]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558\b302558.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b309539.exe_5701]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539\b309539.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[b309548.exe_5702]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548\b309548.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b309576.exe_5703]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576\b309576.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b311420.exe_5704]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420\b311420.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b333008.exe_5705]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008\b333008.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b356258.exe_5706]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258\b356258.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b360587.exe_5707]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587\b360587.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b410474.exe_5708]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474\b410474.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b431098.exe_5709]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098\b431098.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b450688.exe_5710]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688\b450688.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b286991.exe_5711]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991\b286991.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[b460385.exe_5712]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385\b460385.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;EXPECTED_PASS
+HostStyle=Any
+[b539509.exe_5713]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509\b539509.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;JIT;UNSTABLE;ISSUE_3104;NEED_TRIAGE
+HostStyle=Any
+[DoWhileBndChk.exe_5714]
+RelativePath=JIT\RyuJIT\DoWhileBndChk\DoWhileBndChk.exe
+WorkingDir=JIT\RyuJIT\DoWhileBndChk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AbsGeneric_r.exe_5715]
+RelativePath=JIT\SIMD\AbsGeneric_r\AbsGeneric_r.exe
+WorkingDir=JIT\SIMD\AbsGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AbsGeneric_ro.exe_5716]
+RelativePath=JIT\SIMD\AbsGeneric_ro\AbsGeneric_ro.exe
+WorkingDir=JIT\SIMD\AbsGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AbsSqrt_r.exe_5717]
+RelativePath=JIT\SIMD\AbsSqrt_r\AbsSqrt_r.exe
+WorkingDir=JIT\SIMD\AbsSqrt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AbsSqrt_ro.exe_5718]
+RelativePath=JIT\SIMD\AbsSqrt_ro\AbsSqrt_ro.exe
+WorkingDir=JIT\SIMD\AbsSqrt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AddingSequence_r.exe_5719]
+RelativePath=JIT\SIMD\AddingSequence_r\AddingSequence_r.exe
+WorkingDir=JIT\SIMD\AddingSequence_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[AddingSequence_ro.exe_5720]
+RelativePath=JIT\SIMD\AddingSequence_ro\AddingSequence_ro.exe
+WorkingDir=JIT\SIMD\AddingSequence_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BitwiseOperations_r.exe_5721]
+RelativePath=JIT\SIMD\BitwiseOperations_r\BitwiseOperations_r.exe
+WorkingDir=JIT\SIMD\BitwiseOperations_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BitwiseOperations_ro.exe_5722]
+RelativePath=JIT\SIMD\BitwiseOperations_ro\BitwiseOperations_ro.exe
+WorkingDir=JIT\SIMD\BitwiseOperations_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BoxUnbox_r.exe_5723]
+RelativePath=JIT\SIMD\BoxUnbox_r\BoxUnbox_r.exe
+WorkingDir=JIT\SIMD\BoxUnbox_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BoxUnbox_ro.exe_5724]
+RelativePath=JIT\SIMD\BoxUnbox_ro\BoxUnbox_ro.exe
+WorkingDir=JIT\SIMD\BoxUnbox_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BugWithAVX_r.exe_5725]
+RelativePath=JIT\SIMD\BugWithAVX_r\BugWithAVX_r.exe
+WorkingDir=JIT\SIMD\BugWithAVX_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[BugWithAVX_ro.exe_5726]
+RelativePath=JIT\SIMD\BugWithAVX_ro\BugWithAVX_ro.exe
+WorkingDir=JIT\SIMD\BugWithAVX_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CircleInConvex_r.exe_5727]
+RelativePath=JIT\SIMD\CircleInConvex_r\CircleInConvex_r.exe
+WorkingDir=JIT\SIMD\CircleInConvex_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CircleInConvex_ro.exe_5728]
+RelativePath=JIT\SIMD\CircleInConvex_ro\CircleInConvex_ro.exe
+WorkingDir=JIT\SIMD\CircleInConvex_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CreateGeneric_r.exe_5729]
+RelativePath=JIT\SIMD\CreateGeneric_r\CreateGeneric_r.exe
+WorkingDir=JIT\SIMD\CreateGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CreateGeneric_ro.exe_5730]
+RelativePath=JIT\SIMD\CreateGeneric_ro\CreateGeneric_ro.exe
+WorkingDir=JIT\SIMD\CreateGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CtorFromArray_r.exe_5731]
+RelativePath=JIT\SIMD\CtorFromArray_r\CtorFromArray_r.exe
+WorkingDir=JIT\SIMD\CtorFromArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[CtorFromArray_ro.exe_5732]
+RelativePath=JIT\SIMD\CtorFromArray_ro\CtorFromArray_ro.exe
+WorkingDir=JIT\SIMD\CtorFromArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ctors_r.exe_5733]
+RelativePath=JIT\SIMD\Ctors_r\Ctors_r.exe
+WorkingDir=JIT\SIMD\Ctors_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ctors_ro.exe_5734]
+RelativePath=JIT\SIMD\Ctors_ro\Ctors_ro.exe
+WorkingDir=JIT\SIMD\Ctors_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DivSignedUnsignedTest_r.exe_5735]
+RelativePath=JIT\SIMD\DivSignedUnsignedTest_r\DivSignedUnsignedTest_r.exe
+WorkingDir=JIT\SIMD\DivSignedUnsignedTest_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[DivSignedUnsignedTest_ro.exe_5736]
+RelativePath=JIT\SIMD\DivSignedUnsignedTest_ro\DivSignedUnsignedTest_ro.exe
+WorkingDir=JIT\SIMD\DivSignedUnsignedTest_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Dup_r.exe_5737]
+RelativePath=JIT\SIMD\Dup_r\Dup_r.exe
+WorkingDir=JIT\SIMD\Dup_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Dup_ro.exe_5738]
+RelativePath=JIT\SIMD\Dup_ro\Dup_ro.exe
+WorkingDir=JIT\SIMD\Dup_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Haar-likeFeaturesGeneric_r.exe_5739]
+RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_r\Haar-likeFeaturesGeneric_r.exe
+WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Haar-likeFeaturesGeneric_ro.exe_5740]
+RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_ro\Haar-likeFeaturesGeneric_ro.exe
+WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[LdfldGeneric_r.exe_5741]
+RelativePath=JIT\SIMD\LdfldGeneric_r\LdfldGeneric_r.exe
+WorkingDir=JIT\SIMD\LdfldGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[LdfldGeneric_ro.exe_5742]
+RelativePath=JIT\SIMD\LdfldGeneric_ro\LdfldGeneric_ro.exe
+WorkingDir=JIT\SIMD\LdfldGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ldfld_r.exe_5743]
+RelativePath=JIT\SIMD\Ldfld_r\Ldfld_r.exe
+WorkingDir=JIT\SIMD\Ldfld_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ldfld_ro.exe_5744]
+RelativePath=JIT\SIMD\Ldfld_ro\Ldfld_ro.exe
+WorkingDir=JIT\SIMD\Ldfld_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ldind_r.exe_5745]
+RelativePath=JIT\SIMD\Ldind_r\Ldind_r.exe
+WorkingDir=JIT\SIMD\Ldind_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Ldind_ro.exe_5746]
+RelativePath=JIT\SIMD\Ldind_ro\Ldind_ro.exe
+WorkingDir=JIT\SIMD\Ldind_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MinMax_r.exe_5747]
+RelativePath=JIT\SIMD\MinMax_r\MinMax_r.exe
+WorkingDir=JIT\SIMD\MinMax_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[MinMax_ro.exe_5748]
+RelativePath=JIT\SIMD\MinMax_ro\MinMax_ro.exe
+WorkingDir=JIT\SIMD\MinMax_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Mul_r.exe_5749]
+RelativePath=JIT\SIMD\Mul_r\Mul_r.exe
+WorkingDir=JIT\SIMD\Mul_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Mul_ro.exe_5750]
+RelativePath=JIT\SIMD\Mul_ro\Mul_ro.exe
+WorkingDir=JIT\SIMD\Mul_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[SqrtGeneric_r.exe_5751]
+RelativePath=JIT\SIMD\SqrtGeneric_r\SqrtGeneric_r.exe
+WorkingDir=JIT\SIMD\SqrtGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[SqrtGeneric_ro.exe_5752]
+RelativePath=JIT\SIMD\SqrtGeneric_ro\SqrtGeneric_ro.exe
+WorkingDir=JIT\SIMD\SqrtGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[StoreElement_r.exe_5753]
+RelativePath=JIT\SIMD\StoreElement_r\StoreElement_r.exe
+WorkingDir=JIT\SIMD\StoreElement_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[StoreElement_ro.exe_5754]
+RelativePath=JIT\SIMD\StoreElement_ro\StoreElement_ro.exe
+WorkingDir=JIT\SIMD\StoreElement_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Sums_r.exe_5755]
+RelativePath=JIT\SIMD\Sums_r\Sums_r.exe
+WorkingDir=JIT\SIMD\Sums_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Sums_ro.exe_5756]
+RelativePath=JIT\SIMD\Sums_ro\Sums_ro.exe
+WorkingDir=JIT\SIMD\Sums_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Vector3_r.exe_5757]
+RelativePath=JIT\SIMD\Vector3_r\Vector3_r.exe
+WorkingDir=JIT\SIMD\Vector3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Vector3_ro.exe_5758]
+RelativePath=JIT\SIMD\Vector3_ro\Vector3_ro.exe
+WorkingDir=JIT\SIMD\Vector3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Vector4_r.exe_5759]
+RelativePath=JIT\SIMD\Vector4_r\Vector4_r.exe
+WorkingDir=JIT\SIMD\Vector4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[Vector4_ro.exe_5760]
+RelativePath=JIT\SIMD\Vector4_ro\Vector4_ro.exe
+WorkingDir=JIT\SIMD\Vector4_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorAbs_r.exe_5761]
+RelativePath=JIT\SIMD\VectorAbs_r\VectorAbs_r.exe
+WorkingDir=JIT\SIMD\VectorAbs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorAbs_ro.exe_5762]
+RelativePath=JIT\SIMD\VectorAbs_ro\VectorAbs_ro.exe
+WorkingDir=JIT\SIMD\VectorAbs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorAdd_r.exe_5763]
+RelativePath=JIT\SIMD\VectorAdd_r\VectorAdd_r.exe
+WorkingDir=JIT\SIMD\VectorAdd_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorAdd_ro.exe_5764]
+RelativePath=JIT\SIMD\VectorAdd_ro\VectorAdd_ro.exe
+WorkingDir=JIT\SIMD\VectorAdd_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArgs_r.exe_5765]
+RelativePath=JIT\SIMD\VectorArgs_r\VectorArgs_r.exe
+WorkingDir=JIT\SIMD\VectorArgs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArgs_ro.exe_5766]
+RelativePath=JIT\SIMD\VectorArgs_ro\VectorArgs_ro.exe
+WorkingDir=JIT\SIMD\VectorArgs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArrayInit_r.exe_5767]
+RelativePath=JIT\SIMD\VectorArrayInit_r\VectorArrayInit_r.exe
+WorkingDir=JIT\SIMD\VectorArrayInit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArrayInit_ro.exe_5768]
+RelativePath=JIT\SIMD\VectorArrayInit_ro\VectorArrayInit_ro.exe
+WorkingDir=JIT\SIMD\VectorArrayInit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArray_r.exe_5769]
+RelativePath=JIT\SIMD\VectorArray_r\VectorArray_r.exe
+WorkingDir=JIT\SIMD\VectorArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorArray_ro.exe_5770]
+RelativePath=JIT\SIMD\VectorArray_ro\VectorArray_ro.exe
+WorkingDir=JIT\SIMD\VectorArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorCopyToArray_r.exe_5771]
+RelativePath=JIT\SIMD\VectorCopyToArray_r\VectorCopyToArray_r.exe
+WorkingDir=JIT\SIMD\VectorCopyToArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorCopyToArray_ro.exe_5772]
+RelativePath=JIT\SIMD\VectorCopyToArray_ro\VectorCopyToArray_ro.exe
+WorkingDir=JIT\SIMD\VectorCopyToArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorDiv_r.exe_5773]
+RelativePath=JIT\SIMD\VectorDiv_r\VectorDiv_r.exe
+WorkingDir=JIT\SIMD\VectorDiv_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorDiv_ro.exe_5774]
+RelativePath=JIT\SIMD\VectorDiv_ro\VectorDiv_ro.exe
+WorkingDir=JIT\SIMD\VectorDiv_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorDot_r.exe_5775]
+RelativePath=JIT\SIMD\VectorDot_r\VectorDot_r.exe
+WorkingDir=JIT\SIMD\VectorDot_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorDot_ro.exe_5776]
+RelativePath=JIT\SIMD\VectorDot_ro\VectorDot_ro.exe
+WorkingDir=JIT\SIMD\VectorDot_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorExp_r.exe_5777]
+RelativePath=JIT\SIMD\VectorExp_r\VectorExp_r.exe
+WorkingDir=JIT\SIMD\VectorExp_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorExp_ro.exe_5778]
+RelativePath=JIT\SIMD\VectorExp_ro\VectorExp_ro.exe
+WorkingDir=JIT\SIMD\VectorExp_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorGet_r.exe_5779]
+RelativePath=JIT\SIMD\VectorGet_r\VectorGet_r.exe
+WorkingDir=JIT\SIMD\VectorGet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorGet_ro.exe_5780]
+RelativePath=JIT\SIMD\VectorGet_ro\VectorGet_ro.exe
+WorkingDir=JIT\SIMD\VectorGet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorHWAccel2_r.exe_5781]
+RelativePath=JIT\SIMD\VectorHWAccel2_r\VectorHWAccel2_r.exe
+WorkingDir=JIT\SIMD\VectorHWAccel2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorHWAccel2_ro.exe_5782]
+RelativePath=JIT\SIMD\VectorHWAccel2_ro\VectorHWAccel2_ro.exe
+WorkingDir=JIT\SIMD\VectorHWAccel2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorHWAccel_r.exe_5783]
+RelativePath=JIT\SIMD\VectorHWAccel_r\VectorHWAccel_r.exe
+WorkingDir=JIT\SIMD\VectorHWAccel_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorHWAccel_ro.exe_5784]
+RelativePath=JIT\SIMD\VectorHWAccel_ro\VectorHWAccel_ro.exe
+WorkingDir=JIT\SIMD\VectorHWAccel_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorInitN_r.exe_5785]
+RelativePath=JIT\SIMD\VectorInitN_r\VectorInitN_r.exe
+WorkingDir=JIT\SIMD\VectorInitN_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorInitN_ro.exe_5786]
+RelativePath=JIT\SIMD\VectorInitN_ro\VectorInitN_ro.exe
+WorkingDir=JIT\SIMD\VectorInitN_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorInit_r.exe_5787]
+RelativePath=JIT\SIMD\VectorInit_r\VectorInit_r.exe
+WorkingDir=JIT\SIMD\VectorInit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorInit_ro.exe_5788]
+RelativePath=JIT\SIMD\VectorInit_ro\VectorInit_ro.exe
+WorkingDir=JIT\SIMD\VectorInit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorIntEquals_r.exe_5789]
+RelativePath=JIT\SIMD\VectorIntEquals_r\VectorIntEquals_r.exe
+WorkingDir=JIT\SIMD\VectorIntEquals_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorIntEquals_ro.exe_5790]
+RelativePath=JIT\SIMD\VectorIntEquals_ro\VectorIntEquals_ro.exe
+WorkingDir=JIT\SIMD\VectorIntEquals_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMatrix_r.exe_5791]
+RelativePath=JIT\SIMD\VectorMatrix_r\VectorMatrix_r.exe
+WorkingDir=JIT\SIMD\VectorMatrix_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMatrix_ro.exe_5792]
+RelativePath=JIT\SIMD\VectorMatrix_ro\VectorMatrix_ro.exe
+WorkingDir=JIT\SIMD\VectorMatrix_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMax_r.exe_5793]
+RelativePath=JIT\SIMD\VectorMax_r\VectorMax_r.exe
+WorkingDir=JIT\SIMD\VectorMax_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMax_ro.exe_5794]
+RelativePath=JIT\SIMD\VectorMax_ro\VectorMax_ro.exe
+WorkingDir=JIT\SIMD\VectorMax_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMin_r.exe_5795]
+RelativePath=JIT\SIMD\VectorMin_r\VectorMin_r.exe
+WorkingDir=JIT\SIMD\VectorMin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMin_ro.exe_5796]
+RelativePath=JIT\SIMD\VectorMin_ro\VectorMin_ro.exe
+WorkingDir=JIT\SIMD\VectorMin_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMul_r.exe_5797]
+RelativePath=JIT\SIMD\VectorMul_r\VectorMul_r.exe
+WorkingDir=JIT\SIMD\VectorMul_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorMul_ro.exe_5798]
+RelativePath=JIT\SIMD\VectorMul_ro\VectorMul_ro.exe
+WorkingDir=JIT\SIMD\VectorMul_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorRelOp_r.exe_5799]
+RelativePath=JIT\SIMD\VectorRelOp_r\VectorRelOp_r.exe
+WorkingDir=JIT\SIMD\VectorRelOp_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorRelOp_ro.exe_5800]
+RelativePath=JIT\SIMD\VectorRelOp_ro\VectorRelOp_ro.exe
+WorkingDir=JIT\SIMD\VectorRelOp_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorReturn_r.exe_5801]
+RelativePath=JIT\SIMD\VectorReturn_r\VectorReturn_r.exe
+WorkingDir=JIT\SIMD\VectorReturn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorReturn_ro.exe_5802]
+RelativePath=JIT\SIMD\VectorReturn_ro\VectorReturn_ro.exe
+WorkingDir=JIT\SIMD\VectorReturn_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSet_r.exe_5803]
+RelativePath=JIT\SIMD\VectorSet_r\VectorSet_r.exe
+WorkingDir=JIT\SIMD\VectorSet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSet_ro.exe_5804]
+RelativePath=JIT\SIMD\VectorSet_ro\VectorSet_ro.exe
+WorkingDir=JIT\SIMD\VectorSet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSqrt_r.exe_5805]
+RelativePath=JIT\SIMD\VectorSqrt_r\VectorSqrt_r.exe
+WorkingDir=JIT\SIMD\VectorSqrt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSqrt_ro.exe_5806]
+RelativePath=JIT\SIMD\VectorSqrt_ro\VectorSqrt_ro.exe
+WorkingDir=JIT\SIMD\VectorSqrt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSub_r.exe_5807]
+RelativePath=JIT\SIMD\VectorSub_r\VectorSub_r.exe
+WorkingDir=JIT\SIMD\VectorSub_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorSub_ro.exe_5808]
+RelativePath=JIT\SIMD\VectorSub_ro\VectorSub_ro.exe
+WorkingDir=JIT\SIMD\VectorSub_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorUnused_r.exe_5809]
+RelativePath=JIT\SIMD\VectorUnused_r\VectorUnused_r.exe
+WorkingDir=JIT\SIMD\VectorUnused_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[VectorUnused_ro.exe_5810]
+RelativePath=JIT\SIMD\VectorUnused_ro\VectorUnused_ro.exe
+WorkingDir=JIT\SIMD\VectorUnused_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;NEW
+HostStyle=Any
+[FromNativePaths.exe_5811]
+RelativePath=Loader\NativeLibs\FromNativePaths\FromNativePaths.exe
+WorkingDir=Loader\NativeLibs\FromNativePaths
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[main.exe_5812]
+RelativePath=Loader\regressions\classloader\main\main.exe
+WorkingDir=Loader\regressions\classloader\main
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw307137.exe_5813]
+RelativePath=Loader\regressions\classloader\vsw307137\vsw307137.exe
+WorkingDir=Loader\regressions\classloader\vsw307137
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[Polyrec.exe_5814]
+RelativePath=Loader\regressions\polyrec\Polyrec\Polyrec.exe
+WorkingDir=Loader\regressions\polyrec\Polyrec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[Compilation.exe_5815]
+RelativePath=managed\Compilation\Compilation\Compilation.exe
+WorkingDir=managed\Compilation\Compilation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;MISSING_EXE
+HostStyle=Any
+[test.exe_5816]
+RelativePath=Regressions\assemblyref\test\test.exe
+WorkingDir=Regressions\assemblyref\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[AboveStackLimit.exe_5817]
+RelativePath=Regressions\common\AboveStackLimit\AboveStackLimit.exe
+WorkingDir=Regressions\common\AboveStackLimit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS;ISSUE_3032;DBG_FAIL;ISSUE_5814
+HostStyle=Any
+[ArrayCopy.exe_5818]
+RelativePath=Regressions\common\ArrayCopy\ArrayCopy.exe
+WorkingDir=Regressions\common\ArrayCopy
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[avtest.exe_5819]
+RelativePath=Regressions\common\avtest\avtest.exe
+WorkingDir=Regressions\common\avtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[CompEx.exe_5820]
+RelativePath=Regressions\common\CompEx\CompEx.exe
+WorkingDir=Regressions\common\CompEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[date.exe_5821]
+RelativePath=Regressions\common\date\date.exe
+WorkingDir=Regressions\common\date
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[DisableTransparencyEnforcement.exe_5822]
+RelativePath=Regressions\common\DisableTransparencyEnforcement\DisableTransparencyEnforcement.exe
+WorkingDir=Regressions\common\DisableTransparencyEnforcement
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[interlock.exe_5823]
+RelativePath=Regressions\common\interlock\interlock.exe
+WorkingDir=Regressions\common\interlock
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[Marshal.exe_5824]
+RelativePath=Regressions\common\Marshal\Marshal.exe
+WorkingDir=Regressions\common\Marshal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[pow3.exe_5825]
+RelativePath=Regressions\common\pow3\pow3.exe
+WorkingDir=Regressions\common\pow3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[test1307.exe_5826]
+RelativePath=Regressions\common\test1307\test1307.exe
+WorkingDir=Regressions\common\test1307
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[testClass.exe_5827]
+RelativePath=Regressions\common\testClass\testClass.exe
+WorkingDir=Regressions\common\testClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[testInterface.exe_5828]
+RelativePath=Regressions\common\testInterface\testInterface.exe
+WorkingDir=Regressions\common\testInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadCulture.exe_5829]
+RelativePath=Regressions\common\ThreadCulture\ThreadCulture.exe
+WorkingDir=Regressions\common\ThreadCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ToLower.exe_5830]
+RelativePath=Regressions\common\ToLower\ToLower.exe
+WorkingDir=Regressions\common\ToLower
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[Unsafe.exe_5831]
+RelativePath=Regressions\common\Unsafe\Unsafe.exe
+WorkingDir=Regressions\common\Unsafe
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[avtest.exe_5832]
+RelativePath=Regressions\coreclr\0014\avtest\avtest.exe
+WorkingDir=Regressions\coreclr\0014\avtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[expl_double.exe_5833]
+RelativePath=Regressions\expl_double\expl_double\expl_double.exe
+WorkingDir=Regressions\expl_double\expl_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStatic01.exe_5834]
+RelativePath=Threading\ThreadStatics\ThreadStatic01\ThreadStatic01.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStatic02.exe_5835]
+RelativePath=Threading\ThreadStatics\ThreadStatic02\ThreadStatic02.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStatic03.exe_5836]
+RelativePath=Threading\ThreadStatics\ThreadStatic03\ThreadStatic03.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStatic05.exe_5837]
+RelativePath=Threading\ThreadStatics\ThreadStatic05\ThreadStatic05.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStatic06.exe_5838]
+RelativePath=Threading\ThreadStatics\ThreadStatic06\ThreadStatic06.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0;RT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_535767.exe_5838]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767\Dev10_535767.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[test448035.exe_5839]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\test448035\test448035.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\test448035
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TestAPIs.exe_5840]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestAPIs\TestAPIs.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestAPIs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TestGC.exe_5841]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestGC\TestGC.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestGC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TestOverrides.exe_5842]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestOverrides\TestOverrides.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestOverrides
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions01.exe_5843]
+RelativePath=baseservices\exceptions\generics\GenericExceptions01\GenericExceptions01.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions02.exe_5844]
+RelativePath=baseservices\exceptions\generics\GenericExceptions02\GenericExceptions02.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions03.exe_5845]
+RelativePath=baseservices\exceptions\generics\GenericExceptions03\GenericExceptions03.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions04.exe_5846]
+RelativePath=baseservices\exceptions\generics\GenericExceptions04\GenericExceptions04.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions05.exe_5847]
+RelativePath=baseservices\exceptions\generics\GenericExceptions05\GenericExceptions05.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions06.exe_5848]
+RelativePath=baseservices\exceptions\generics\GenericExceptions06\GenericExceptions06.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions07.exe_5849]
+RelativePath=baseservices\exceptions\generics\GenericExceptions07\GenericExceptions07.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericExceptions08.exe_5850]
+RelativePath=baseservices\exceptions\generics\GenericExceptions08\GenericExceptions08.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch01.exe_5851]
+RelativePath=baseservices\exceptions\generics\nested-try-catch01\nested-try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch02.exe_5852]
+RelativePath=baseservices\exceptions\generics\nested-try-catch02\nested-try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch03.exe_5853]
+RelativePath=baseservices\exceptions\generics\nested-try-catch03\nested-try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch04.exe_5854]
+RelativePath=baseservices\exceptions\generics\nested-try-catch04\nested-try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch05.exe_5855]
+RelativePath=baseservices\exceptions\generics\nested-try-catch05\nested-try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch06.exe_5856]
+RelativePath=baseservices\exceptions\generics\nested-try-catch06\nested-try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch07.exe_5857]
+RelativePath=baseservices\exceptions\generics\nested-try-catch07\nested-try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch08.exe_5858]
+RelativePath=baseservices\exceptions\generics\nested-try-catch08\nested-try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch09.exe_5859]
+RelativePath=baseservices\exceptions\generics\nested-try-catch09\nested-try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nested-try-catch10.exe_5860]
+RelativePath=baseservices\exceptions\generics\nested-try-catch10\nested-try-catch10.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally-struct01.exe_5861]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct01\try-catch-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally-struct02.exe_5862]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct02\try-catch-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally-struct03.exe_5863]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct03\try-catch-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally01.exe_5864]
+RelativePath=baseservices\exceptions\generics\try-catch-finally01\try-catch-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally02.exe_5865]
+RelativePath=baseservices\exceptions\generics\try-catch-finally02\try-catch-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-finally03.exe_5866]
+RelativePath=baseservices\exceptions\generics\try-catch-finally03\try-catch-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct01.exe_5867]
+RelativePath=baseservices\exceptions\generics\try-catch-struct01\try-catch-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct02.exe_5868]
+RelativePath=baseservices\exceptions\generics\try-catch-struct02\try-catch-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct03.exe_5869]
+RelativePath=baseservices\exceptions\generics\try-catch-struct03\try-catch-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct04.exe_5870]
+RelativePath=baseservices\exceptions\generics\try-catch-struct04\try-catch-struct04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct05.exe_5871]
+RelativePath=baseservices\exceptions\generics\try-catch-struct05\try-catch-struct05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct06.exe_5872]
+RelativePath=baseservices\exceptions\generics\try-catch-struct06\try-catch-struct06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct07.exe_5873]
+RelativePath=baseservices\exceptions\generics\try-catch-struct07\try-catch-struct07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct08.exe_5874]
+RelativePath=baseservices\exceptions\generics\try-catch-struct08\try-catch-struct08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch-struct09.exe_5875]
+RelativePath=baseservices\exceptions\generics\try-catch-struct09\try-catch-struct09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch01.exe_5876]
+RelativePath=baseservices\exceptions\generics\try-catch01\try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch02.exe_5877]
+RelativePath=baseservices\exceptions\generics\try-catch02\try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch03.exe_5878]
+RelativePath=baseservices\exceptions\generics\try-catch03\try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch04.exe_5879]
+RelativePath=baseservices\exceptions\generics\try-catch04\try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch05.exe_5880]
+RelativePath=baseservices\exceptions\generics\try-catch05\try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch06.exe_5881]
+RelativePath=baseservices\exceptions\generics\try-catch06\try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch07.exe_5882]
+RelativePath=baseservices\exceptions\generics\try-catch07\try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch08.exe_5883]
+RelativePath=baseservices\exceptions\generics\try-catch08\try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-catch09.exe_5884]
+RelativePath=baseservices\exceptions\generics\try-catch09\try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally-struct01.exe_5885]
+RelativePath=baseservices\exceptions\generics\try-finally-struct01\try-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally-struct02.exe_5886]
+RelativePath=baseservices\exceptions\generics\try-finally-struct02\try-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally-struct03.exe_5887]
+RelativePath=baseservices\exceptions\generics\try-finally-struct03\try-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally01.exe_5888]
+RelativePath=baseservices\exceptions\generics\try-finally01\try-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally02.exe_5889]
+RelativePath=baseservices\exceptions\generics\try-finally02\try-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[try-finally03.exe_5890]
+RelativePath=baseservices\exceptions\generics\try-finally03\try-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter001.exe_5891]
+RelativePath=baseservices\exceptions\generics\TypeParameter001\TypeParameter001.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter002.exe_5892]
+RelativePath=baseservices\exceptions\generics\TypeParameter002\TypeParameter002.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter003.exe_5893]
+RelativePath=baseservices\exceptions\generics\TypeParameter003\TypeParameter003.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter004.exe_5894]
+RelativePath=baseservices\exceptions\generics\TypeParameter004\TypeParameter004.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter005.exe_5895]
+RelativePath=baseservices\exceptions\generics\TypeParameter005\TypeParameter005.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter006.exe_5896]
+RelativePath=baseservices\exceptions\generics\TypeParameter006\TypeParameter006.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter007.exe_5897]
+RelativePath=baseservices\exceptions\generics\TypeParameter007\TypeParameter007.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter008.exe_5898]
+RelativePath=baseservices\exceptions\generics\TypeParameter008\TypeParameter008.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter009.exe_5899]
+RelativePath=baseservices\exceptions\generics\TypeParameter009\TypeParameter009.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter010.exe_5900]
+RelativePath=baseservices\exceptions\generics\TypeParameter010\TypeParameter010.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter011.exe_5901]
+RelativePath=baseservices\exceptions\generics\TypeParameter011\TypeParameter011.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter012.exe_5902]
+RelativePath=baseservices\exceptions\generics\TypeParameter012\TypeParameter012.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter013.exe_5903]
+RelativePath=baseservices\exceptions\generics\TypeParameter013\TypeParameter013.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter014.exe_5904]
+RelativePath=baseservices\exceptions\generics\TypeParameter014\TypeParameter014.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter015.exe_5905]
+RelativePath=baseservices\exceptions\generics\TypeParameter015\TypeParameter015.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter016.exe_5906]
+RelativePath=baseservices\exceptions\generics\TypeParameter016\TypeParameter016.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter017.exe_5907]
+RelativePath=baseservices\exceptions\generics\TypeParameter017\TypeParameter017.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeParameter018.exe_5908]
+RelativePath=baseservices\exceptions\generics\TypeParameter018\TypeParameter018.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[349379.exe_5909]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\349379\349379\349379.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\349379\349379
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[366085.exe_5910]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\366085\366085\366085.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\366085\366085
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[106011.exe_5911]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\106011\106011\106011.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\106011\106011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[302680.exe_5912]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\302680\302680\302680.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\302680\302680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OOMException01.exe_5913]
+RelativePath=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01\OOMException01.exe
+WorkingDir=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BaseClass.exe_5914]
+RelativePath=baseservices\exceptions\unittests\BaseClass\BaseClass.exe
+WorkingDir=baseservices\exceptions\unittests\BaseClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InnerFinally.exe_5915]
+RelativePath=baseservices\exceptions\unittests\InnerFinally\InnerFinally.exe
+WorkingDir=baseservices\exceptions\unittests\InnerFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RethrowAndFinally.exe_5916]
+RelativePath=baseservices\exceptions\unittests\RethrowAndFinally\RethrowAndFinally.exe
+WorkingDir=baseservices\exceptions\unittests\RethrowAndFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ReturnFromCatch.exe_5917]
+RelativePath=baseservices\exceptions\unittests\ReturnFromCatch\ReturnFromCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ReturnFromCatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThrowInCatch.exe_5918]
+RelativePath=baseservices\exceptions\unittests\ThrowInCatch\ThrowInCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInCatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThrowInFinally.exe_5919]
+RelativePath=baseservices\exceptions\unittests\ThrowInFinally\ThrowInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TryCatchInFinally.exe_5920]
+RelativePath=baseservices\exceptions\unittests\TryCatchInFinally\TryCatchInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\TryCatchInFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CS_ThreadPoolNullChecks.exe_5921]
+RelativePath=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks\CS_ThreadPoolNullChecks.exe
+WorkingDir=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DefaultStackCommit.exe_5922]
+RelativePath=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit\DefaultStackCommit.exe
+WorkingDir=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_ARENullRefEx.exe_5923]
+RelativePath=baseservices\threading\coverage\Nullref\CS_ARENullRefEx\CS_ARENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_ARENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_MRENullRefEx.exe_5924]
+RelativePath=baseservices\threading\coverage\Nullref\CS_MRENullRefEx\CS_MRENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_MRENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_MutexNullRefEx.exe_5925]
+RelativePath=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx\CS_MutexNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_RWHNullRefEx.exe_5926]
+RelativePath=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx\CS_RWHNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_SLENullRefEx.exe_5927]
+RelativePath=baseservices\threading\coverage\Nullref\CS_SLENullRefEx\CS_SLENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_SLENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_TimerNullRefEx.exe_5928]
+RelativePath=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx\CS_TimerNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_TSNullRefEx.exe_5929]
+RelativePath=baseservices\threading\coverage\Nullref\CS_TSNullRefEx\CS_TSNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_TSNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CS_WHNullRefEx.exe_5930]
+RelativePath=baseservices\threading\coverage\Nullref\CS_WHNullRefEx\CS_WHNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_WHNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[CultureChangeSecurity.exe_5931]
+RelativePath=baseservices\threading\currentculture\CultureChangeSecurity\CultureChangeSecurity.exe
+WorkingDir=baseservices\threading\currentculture\CultureChangeSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConstructFalse.exe_5932]
+RelativePath=baseservices\threading\events\AutoResetEvent\ConstructFalse\ConstructFalse.exe
+WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ConstructTrue.exe_5933]
+RelativePath=baseservices\threading\events\AutoResetEvent\ConstructTrue\ConstructTrue.exe
+WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoResetCast1.exe_5934]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1\AutoResetCast1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoResetCast2.exe_5935]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2\AutoResetCast2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoResetCtor1.exe_5936]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1\AutoResetCtor1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoResetCtor2.exe_5937]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2\AutoResetCtor2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualResetCast1.exe_5938]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1\ManualResetCast1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualResetCast2.exe_5939]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2\ManualResetCast2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualResetCtor1.exe_5940]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1\ManualResetCtor1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualResetCtor2.exe_5941]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2\ManualResetCtor2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoConstructFalse.exe_5942]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse\AutoConstructFalse.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[AutoConstructTrue.exe_5943]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue\AutoConstructTrue.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualConstructFalse.exe_5944]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse\ManualConstructFalse.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ManualConstructTrue.exe_5945]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue\ManualConstructTrue.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ConstructFalse.exe_5946]
+RelativePath=baseservices\threading\events\ManualResetEvent\ConstructFalse\ConstructFalse.exe
+WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[ConstructTrue.exe_5947]
+RelativePath=baseservices\threading\events\ManualResetEvent\ConstructTrue\ConstructTrue.exe
+WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit01.exe_5948]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit01\EnterExit01.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit02.exe_5949]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit02\EnterExit02.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit03.exe_5950]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit03\EnterExit03.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit04.exe_5951]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit04\EnterExit04.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit05.exe_5952]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit05\EnterExit05.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit06.exe_5953]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit06\EnterExit06.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit07.exe_5954]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit07\EnterExit07.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit08.exe_5955]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit08\EnterExit08.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit09.exe_5956]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit09\EnterExit09.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit10.exe_5957]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit10\EnterExit10.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit11.exe_5958]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit11\EnterExit11.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit12.exe_5959]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit12\EnterExit12.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit13.exe_5960]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit13\EnterExit13.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[EnterExit14.exe_5961]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit14\EnterExit14.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[TryEnter01.exe_5962]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter01\TryEnter01.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[TryEnter03.exe_5963]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter03\TryEnter03.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[TryEnter04.exe_5964]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter04\TryEnter04.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[TryEnter05.exe_5965]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter05\TryEnter05.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[TryEnter06.exe_5966]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter06\TryEnter06.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[GThread01.exe_5967]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread02.exe_5968]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread03.exe_5969]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread04.exe_5970]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread05.exe_5971]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread06.exe_5972]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread07.exe_5973]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread08.exe_5974]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread09.exe_5975]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread10.exe_5976]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread11.exe_5977]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread12.exe_5978]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread13.exe_5979]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread14.exe_5980]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread15.exe_5981]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread16.exe_5982]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread17.exe_5983]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread18.exe_5984]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread19.exe_5985]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread20.exe_5986]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread21.exe_5987]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread22.exe_5988]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread23.exe_5989]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread24.exe_5990]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread25.exe_5991]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread26.exe_5992]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread27.exe_5993]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread28.exe_5994]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread29.exe_5995]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread30.exe_5996]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread01.exe_5997]
+RelativePath=baseservices\threading\generics\threadstart\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread02.exe_5998]
+RelativePath=baseservices\threading\generics\threadstart\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread03.exe_5999]
+RelativePath=baseservices\threading\generics\threadstart\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread04.exe_6000]
+RelativePath=baseservices\threading\generics\threadstart\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread05.exe_6001]
+RelativePath=baseservices\threading\generics\threadstart\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread06.exe_6002]
+RelativePath=baseservices\threading\generics\threadstart\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread07.exe_6003]
+RelativePath=baseservices\threading\generics\threadstart\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread08.exe_6004]
+RelativePath=baseservices\threading\generics\threadstart\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread09.exe_6005]
+RelativePath=baseservices\threading\generics\threadstart\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread10.exe_6006]
+RelativePath=baseservices\threading\generics\threadstart\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread11.exe_6007]
+RelativePath=baseservices\threading\generics\threadstart\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread12.exe_6008]
+RelativePath=baseservices\threading\generics\threadstart\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread13.exe_6009]
+RelativePath=baseservices\threading\generics\threadstart\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread14.exe_6010]
+RelativePath=baseservices\threading\generics\threadstart\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread15.exe_6011]
+RelativePath=baseservices\threading\generics\threadstart\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread16.exe_6012]
+RelativePath=baseservices\threading\generics\threadstart\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread17.exe_6013]
+RelativePath=baseservices\threading\generics\threadstart\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread18.exe_6014]
+RelativePath=baseservices\threading\generics\threadstart\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread19.exe_6015]
+RelativePath=baseservices\threading\generics\threadstart\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread20.exe_6016]
+RelativePath=baseservices\threading\generics\threadstart\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread21.exe_6017]
+RelativePath=baseservices\threading\generics\threadstart\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread22.exe_6018]
+RelativePath=baseservices\threading\generics\threadstart\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread23.exe_6019]
+RelativePath=baseservices\threading\generics\threadstart\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread24.exe_6020]
+RelativePath=baseservices\threading\generics\threadstart\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GThread25.exe_6021]
+RelativePath=baseservices\threading\generics\threadstart\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread26.exe_6022]
+RelativePath=baseservices\threading\generics\threadstart\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread27.exe_6023]
+RelativePath=baseservices\threading\generics\threadstart\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread28.exe_6024]
+RelativePath=baseservices\threading\generics\threadstart\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread29.exe_6025]
+RelativePath=baseservices\threading\generics\threadstart\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[GThread30.exe_6026]
+RelativePath=baseservices\threading\generics\threadstart\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[thread01.exe_6027]
+RelativePath=baseservices\threading\generics\TimerCallback\thread01\thread01.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread02.exe_6028]
+RelativePath=baseservices\threading\generics\TimerCallback\thread02\thread02.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread03.exe_6029]
+RelativePath=baseservices\threading\generics\TimerCallback\thread03\thread03.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread04.exe_6030]
+RelativePath=baseservices\threading\generics\TimerCallback\thread04\thread04.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread05.exe_6031]
+RelativePath=baseservices\threading\generics\TimerCallback\thread05\thread05.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread06.exe_6032]
+RelativePath=baseservices\threading\generics\TimerCallback\thread06\thread06.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread07.exe_6033]
+RelativePath=baseservices\threading\generics\TimerCallback\thread07\thread07.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread08.exe_6034]
+RelativePath=baseservices\threading\generics\TimerCallback\thread08\thread08.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread09.exe_6035]
+RelativePath=baseservices\threading\generics\TimerCallback\thread09\thread09.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread10.exe_6036]
+RelativePath=baseservices\threading\generics\TimerCallback\thread10\thread10.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread11.exe_6037]
+RelativePath=baseservices\threading\generics\TimerCallback\thread11\thread11.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread12.exe_6038]
+RelativePath=baseservices\threading\generics\TimerCallback\thread12\thread12.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread13.exe_6039]
+RelativePath=baseservices\threading\generics\TimerCallback\thread13\thread13.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread14.exe_6040]
+RelativePath=baseservices\threading\generics\TimerCallback\thread14\thread14.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread15.exe_6041]
+RelativePath=baseservices\threading\generics\TimerCallback\thread15\thread15.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread16.exe_6042]
+RelativePath=baseservices\threading\generics\TimerCallback\thread16\thread16.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread17.exe_6043]
+RelativePath=baseservices\threading\generics\TimerCallback\thread17\thread17.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread18.exe_6044]
+RelativePath=baseservices\threading\generics\TimerCallback\thread18\thread18.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread19.exe_6045]
+RelativePath=baseservices\threading\generics\TimerCallback\thread19\thread19.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread20.exe_6046]
+RelativePath=baseservices\threading\generics\TimerCallback\thread20\thread20.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread21.exe_6047]
+RelativePath=baseservices\threading\generics\TimerCallback\thread21\thread21.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread22.exe_6048]
+RelativePath=baseservices\threading\generics\TimerCallback\thread22\thread22.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread23.exe_6049]
+RelativePath=baseservices\threading\generics\TimerCallback\thread23\thread23.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread24.exe_6050]
+RelativePath=baseservices\threading\generics\TimerCallback\thread24\thread24.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread25.exe_6051]
+RelativePath=baseservices\threading\generics\TimerCallback\thread25\thread25.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread26.exe_6052]
+RelativePath=baseservices\threading\generics\TimerCallback\thread26\thread26.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread27.exe_6053]
+RelativePath=baseservices\threading\generics\TimerCallback\thread27\thread27.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread28.exe_6054]
+RelativePath=baseservices\threading\generics\TimerCallback\thread28\thread28.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread29.exe_6055]
+RelativePath=baseservices\threading\generics\TimerCallback\thread29\thread29.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread30.exe_6056]
+RelativePath=baseservices\threading\generics\TimerCallback\thread30\thread30.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[tighttimercallback.exe_6057]
+RelativePath=baseservices\threading\generics\TimerCallback\tighttimercallback\tighttimercallback.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\tighttimercallback
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread01.exe_6058]
+RelativePath=baseservices\threading\generics\WaitCallback\thread01\thread01.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread02.exe_6059]
+RelativePath=baseservices\threading\generics\WaitCallback\thread02\thread02.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread03.exe_6060]
+RelativePath=baseservices\threading\generics\WaitCallback\thread03\thread03.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread04.exe_6061]
+RelativePath=baseservices\threading\generics\WaitCallback\thread04\thread04.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread05.exe_6062]
+RelativePath=baseservices\threading\generics\WaitCallback\thread05\thread05.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread06.exe_6063]
+RelativePath=baseservices\threading\generics\WaitCallback\thread06\thread06.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread07.exe_6064]
+RelativePath=baseservices\threading\generics\WaitCallback\thread07\thread07.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread08.exe_6065]
+RelativePath=baseservices\threading\generics\WaitCallback\thread08\thread08.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread09.exe_6066]
+RelativePath=baseservices\threading\generics\WaitCallback\thread09\thread09.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread10.exe_6067]
+RelativePath=baseservices\threading\generics\WaitCallback\thread10\thread10.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread11.exe_6068]
+RelativePath=baseservices\threading\generics\WaitCallback\thread11\thread11.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread12.exe_6069]
+RelativePath=baseservices\threading\generics\WaitCallback\thread12\thread12.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread13.exe_6070]
+RelativePath=baseservices\threading\generics\WaitCallback\thread13\thread13.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread14.exe_6071]
+RelativePath=baseservices\threading\generics\WaitCallback\thread14\thread14.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread15.exe_6072]
+RelativePath=baseservices\threading\generics\WaitCallback\thread15\thread15.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread16.exe_6073]
+RelativePath=baseservices\threading\generics\WaitCallback\thread16\thread16.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread17.exe_6074]
+RelativePath=baseservices\threading\generics\WaitCallback\thread17\thread17.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread18.exe_6075]
+RelativePath=baseservices\threading\generics\WaitCallback\thread18\thread18.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread19.exe_6076]
+RelativePath=baseservices\threading\generics\WaitCallback\thread19\thread19.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread20.exe_6077]
+RelativePath=baseservices\threading\generics\WaitCallback\thread20\thread20.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread21.exe_6078]
+RelativePath=baseservices\threading\generics\WaitCallback\thread21\thread21.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread22.exe_6079]
+RelativePath=baseservices\threading\generics\WaitCallback\thread22\thread22.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread23.exe_6080]
+RelativePath=baseservices\threading\generics\WaitCallback\thread23\thread23.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread24.exe_6081]
+RelativePath=baseservices\threading\generics\WaitCallback\thread24\thread24.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread25.exe_6082]
+RelativePath=baseservices\threading\generics\WaitCallback\thread25\thread25.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread26.exe_6083]
+RelativePath=baseservices\threading\generics\WaitCallback\thread26\thread26.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread27.exe_6084]
+RelativePath=baseservices\threading\generics\WaitCallback\thread27\thread27.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread28.exe_6085]
+RelativePath=baseservices\threading\generics\WaitCallback\thread28\thread28.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread29.exe_6086]
+RelativePath=baseservices\threading\generics\WaitCallback\thread29\thread29.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[thread30.exe_6087]
+RelativePath=baseservices\threading\generics\WaitCallback\thread30\thread30.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[InterlockedAddLongWithSubtract.exe_6088]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract\InterlockedAddLongWithSubtract.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[CompareExchangeTString.exe_6089]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTString\CompareExchangeTString.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[ExchangeInt.exe_6090]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeInt\ExchangeInt.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeInt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExchangeLong.exe_6091]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeLong\ExchangeLong.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeLong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExchangeTClass.exe_6092]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTClass\ExchangeTClass.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnterNull.exe_6093]
+RelativePath=baseservices\threading\monitor\enter\EnterNull\EnterNull.exe
+WorkingDir=baseservices\threading\monitor\enter\EnterNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExitNull.exe_6094]
+RelativePath=baseservices\threading\monitor\exit\ExitNull\ExitNull.exe
+WorkingDir=baseservices\threading\monitor\exit\ExitNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PulseNull.exe_6095]
+RelativePath=baseservices\threading\monitor\pulse\PulseNull\PulseNull.exe
+WorkingDir=baseservices\threading\monitor\pulse\PulseNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PulseAllNull.exe_6096]
+RelativePath=baseservices\threading\monitor\pulseall\PulseAllNull\PulseAllNull.exe
+WorkingDir=baseservices\threading\monitor\pulseall\PulseAllNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnterExitExit.exe_6097]
+RelativePath=baseservices\threading\monitor\unownedlock\EnterExitExit\EnterExitExit.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\EnterExitExit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NoEnterNewObject.exe_6098]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterNewObject\NoEnterNewObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterNewObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NoEnterObject.exe_6099]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterObject\NoEnterObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NoEnterValType.exe_6100]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterValType\NoEnterValType.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterValType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStartNeg1.exe_6101]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg1\ThreadStartNeg1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStartNeg3.exe_6102]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg3\ThreadStartNeg3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStartNeg4.exe_6103]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg4\ThreadStartNeg4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStartNull.exe_6104]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull\ThreadStartNull.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ThreadStartNull2.exe_6105]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull2\ThreadStartNull2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleReleaseWriteDDBug71632.exe_6106]
+RelativePath=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632\SingleReleaseWriteDDBug71632.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[TryEnterFailureDDBugs124485.exe_6107]
+RelativePath=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485\TryEnterFailureDDBugs124485.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Upgrader.exe_6108]
+RelativePath=baseservices\threading\readerwriterlockslim\Upgrader\Upgrader.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\Upgrader
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[576463.exe_6109]
+RelativePath=baseservices\threading\regressions\576463\576463\576463.exe
+WorkingDir=baseservices\threading\regressions\576463\576463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[6906.exe_6110]
+RelativePath=baseservices\threading\regressions\6906\6906\6906.exe
+WorkingDir=baseservices\threading\regressions\6906\6906
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co9600Ctor.exe_6111]
+RelativePath=CoreMangLib\components\stopwatch\Co9600Ctor\Co9600Ctor.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9600Ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co9604get_IsRunning.exe_6112]
+RelativePath=CoreMangLib\components\stopwatch\Co9604get_IsRunning\Co9604get_IsRunning.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9604get_IsRunning
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ActionCtor.exe_6113]
+RelativePath=CoreMangLib\cti\system\action\ActionCtor\ActionCtor.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ActionInvoke.exe_6114]
+RelativePath=CoreMangLib\cti\system\action\ActionInvoke\ActionInvoke.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ActivatorCreateInstance2.exe_6115]
+RelativePath=CoreMangLib\cti\system\activator\ActivatorCreateInstance2\ActivatorCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\activator\ActivatorCreateInstance2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArgumentExceptionCtor1.exe_6116]
+RelativePath=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1\ArgumentExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArgumentNullExceptionCtor1.exe_6117]
+RelativePath=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1\ArgumentNullExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArgumentOutOfRangeExceptionCtor.exe_6118]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor\ArgumentOutOfRangeExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArgumentOutOfRangeExceptionMessage.exe_6119]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage\ArgumentOutOfRangeExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArithmeticExceptionCtor1.exe_6120]
+RelativePath=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1\ArithmeticExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch1.exe_6121]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1\ArrayBinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch1b.exe_6122]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1b\ArrayBinarySearch1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch2.exe_6123]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2\ArrayBinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch2b.exe_6124]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2b\ArrayBinarySearch2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch3.exe_6125]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3\ArrayBinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch3b.exe_6126]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3b\ArrayBinarySearch3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch4.exe_6127]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4\ArrayBinarySearch4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch4b.exe_6128]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4b\ArrayBinarySearch4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch5.exe_6129]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5\ArrayBinarySearch5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch5b.exe_6130]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5b\ArrayBinarySearch5b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayBinarySearch6.exe_6131]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch6\ArrayBinarySearch6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayClear.exe_6132]
+RelativePath=CoreMangLib\cti\system\array\ArrayClear\ArrayClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayClone.exe_6133]
+RelativePath=CoreMangLib\cti\system\array\ArrayClone\ArrayClone.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCopy1.exe_6134]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy1\ArrayCopy1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCopy2.exe_6135]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy2\ArrayCopy2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCopyTo.exe_6136]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopyTo\ArrayCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCreateInstance1.exe_6137]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1\ArrayCreateInstance1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCreateInstance1b.exe_6138]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1b\ArrayCreateInstance1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCreateInstance2.exe_6139]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2\ArrayCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayCreateInstance2b.exe_6140]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2b\ArrayCreateInstance2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetEnumerator.exe_6141]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetEnumerator\ArrayGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetLength.exe_6142]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLength\ArrayGetLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3104
+HostStyle=Any
+[ArrayGetLowerBound.exe_6143]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLowerBound\ArrayGetLowerBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLowerBound
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetUpperBound.exe_6144]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetUpperBound\ArrayGetUpperBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetUpperBound
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetValue.exe_6145]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue\ArrayGetValue.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetValue1.exe_6146]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue1\ArrayGetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayGetValue2.exe_6147]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2\ArrayGetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE
+HostStyle=Any
+[ArrayGetValue2b.exe_6148]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2b\ArrayGetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayICollectionget_Count.exe_6149]
+RelativePath=CoreMangLib\cti\system\array\ArrayICollectionget_Count\ArrayICollectionget_Count.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayICollectionget_Count
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListAdd.exe_6150]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListAdd\ArrayIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListClear.exe_6151]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListClear\ArrayIListClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListContains.exe_6152]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListContains\ArrayIListContains.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListget_item.exe_6153]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListget_item\ArrayIListget_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListget_item
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListIndexOF.exe_6154]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListIndexOF\ArrayIListIndexOF.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListIndexOF
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListInsert.exe_6155]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListInsert\ArrayIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListRemove.exe_6156]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemove\ArrayIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListRemoveAt.exe_6157]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemoveAt\ArrayIListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIListset_item.exe_6158]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListset_item\ArrayIListset_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListset_item
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf1.exe_6159]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1\ArrayIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf1b.exe_6160]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1b\ArrayIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf2.exe_6161]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2\ArrayIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf2b.exe_6162]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2b\ArrayIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf3.exe_6163]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3\ArrayIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf3b.exe_6164]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3b\ArrayIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf4.exe_6165]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4\ArrayIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayIndexOf4b.exe_6166]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4b\ArrayIndexOf4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayInitialize.exe_6167]
+RelativePath=CoreMangLib\cti\system\array\ArrayInitialize\ArrayInitialize.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayInitialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf1.exe_6168]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1\ArrayLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf1b.exe_6169]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1b\ArrayLastIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf2.exe_6170]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2\ArrayLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf2b.exe_6171]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2b\ArrayLastIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf3.exe_6172]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3\ArrayLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf3b.exe_6173]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3b\ArrayLastIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLastIndexOf4.exe_6174]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf4\ArrayLastIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayLength.exe_6175]
+RelativePath=CoreMangLib\cti\system\array\ArrayLength\ArrayLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayRank.exe_6176]
+RelativePath=CoreMangLib\cti\system\array\ArrayRank\ArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayRank
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayReserse1.exe_6177]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse1\ArrayReserse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayReserse2.exe_6178]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse2\ArrayReserse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayReverse1.exe_6179]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse1\ArrayReverse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayReverse2.exe_6180]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse2\ArrayReverse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySetValue1.exe_6181]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1\ArraySetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySetValue1b.exe_6182]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1b\ArraySetValue1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySetValue2.exe_6183]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2\ArraySetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE;ISSUE_3104
+HostStyle=Any
+[ArraySetValue2b.exe_6184]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2b\ArraySetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort1.exe_6185]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1\ArraySort1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort10.exe_6186]
+RelativePath=CoreMangLib\cti\system\array\ArraySort10\ArraySort10.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort11.exe_6187]
+RelativePath=CoreMangLib\cti\system\array\ArraySort11\ArraySort11.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort12.exe_6188]
+RelativePath=CoreMangLib\cti\system\array\ArraySort12\ArraySort12.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort13.exe_6189]
+RelativePath=CoreMangLib\cti\system\array\ArraySort13\ArraySort13.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort14.exe_6190]
+RelativePath=CoreMangLib\cti\system\array\ArraySort14\ArraySort14.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;REQ_LARGE_GEN0
+HostStyle=Any
+[ArraySort1b.exe_6191]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1b\ArraySort1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort2.exe_6192]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2\ArraySort2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort2b.exe_6193]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2b\ArraySort2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort3.exe_6194]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3\ArraySort3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort3b.exe_6195]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3b\ArraySort3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort4.exe_6196]
+RelativePath=CoreMangLib\cti\system\array\ArraySort4\ArraySort4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort5.exe_6197]
+RelativePath=CoreMangLib\cti\system\array\ArraySort5\ArraySort5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort6.exe_6198]
+RelativePath=CoreMangLib\cti\system\array\ArraySort6\ArraySort6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort7.exe_6199]
+RelativePath=CoreMangLib\cti\system\array\ArraySort7\ArraySort7.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort8.exe_6200]
+RelativePath=CoreMangLib\cti\system\array\ArraySort8\ArraySort8.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArraySort9.exe_6201]
+RelativePath=CoreMangLib\cti\system\array\ArraySort9\ArraySort9.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor1.exe_6202]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1\ArrayTypeMismatchExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor2.exe_6203]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2\ArrayTypeMismatchExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor3.exe_6204]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3\ArrayTypeMismatchExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DDB125472_GetHashCode.exe_6205]
+RelativePath=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode\DDB125472_GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GetHashCode.exe_6206]
+RelativePath=CoreMangLib\cti\system\attribute\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsAll.exe_6207]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll\AttributeTargetsAll.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsAssembly.exe_6208]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly\AttributeTargetsAssembly.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsClass.exe_6209]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass\AttributeTargetsClass.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsConstructor.exe_6210]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor\AttributeTargetsConstructor.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsDelegate.exe_6211]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate\AttributeTargetsDelegate.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsEnum.exe_6212]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum\AttributeTargetsEnum.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsEvent.exe_6213]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent\AttributeTargetsEvent.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsField.exe_6214]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsField\AttributeTargetsField.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsGenericParameter.exe_6215]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter\AttributeTargetsGenericParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsInterface.exe_6216]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface\AttributeTargetsInterface.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsMethod.exe_6217]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod\AttributeTargetsMethod.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsModule.exe_6218]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule\AttributeTargetsModule.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsParameter.exe_6219]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter\AttributeTargetsParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsProperty.exe_6220]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty\AttributeTargetsProperty.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsReturnValue.exe_6221]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue\AttributeTargetsReturnValue.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeTargetsStruct.exe_6222]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct\AttributeTargetsStruct.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeUsageAttributeAllowMultiple.exe_6223]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple\AttributeUsageAttributeAllowMultiple.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeUsageAttributeCtor.exe_6224]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor\AttributeUsageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BadImageFormatExceptionCtor1.exe_6225]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1\BadImageFormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BadImageFormatExceptionCtor2.exe_6226]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2\BadImageFormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BadImageFormatExceptionCtor3.exe_6227]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3\BadImageFormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BadImageFormatExceptionMessage.exe_6228]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage\BadImageFormatExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BadImageFormatExceptionToString.exe_6229]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString\BadImageFormatExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanCompareTo_Boolean.exe_6230]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean\BooleanCompareTo_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanEquals_Boolean.exe_6231]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean\BooleanEquals_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanEquals_Object.exe_6232]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Object\BooleanEquals_Object.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanFalseString.exe_6233]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanFalseString\BooleanFalseString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanFalseString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanGetHashCode.exe_6234]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanGetHashCode\BooleanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToBoolean.exe_6235]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean\BooleanIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToByte.exe_6236]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte\BooleanIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToChar.exe_6237]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar\BooleanIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToDateTime.exe_6238]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime\BooleanIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToDecimal.exe_6239]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal\BooleanIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToDouble.exe_6240]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble\BooleanIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToInt16.exe_6241]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16\BooleanIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToInt32.exe_6242]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32\BooleanIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToInt64.exe_6243]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64\BooleanIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToSByte.exe_6244]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte\BooleanIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToSingle.exe_6245]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle\BooleanIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToType.exe_6246]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType\BooleanIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToUInt16.exe_6247]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16\BooleanIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToUInt32.exe_6248]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32\BooleanIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanIConvertibleToUInt64.exe_6249]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64\BooleanIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanParse.exe_6250]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanParse\BooleanParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanToString.exe_6251]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanToString\BooleanToString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanTrueString.exe_6252]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTrueString\BooleanTrueString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTrueString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BooleanTryParse.exe_6253]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTryParse\BooleanTryParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteEquals1.exe_6254]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals1\ByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteEquals2.exe_6255]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals2\ByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteGetHashCode.exe_6256]
+RelativePath=CoreMangLib\cti\system\byte\ByteGetHashCode\ByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToBoolean.exe_6257]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean\ByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToByte.exe_6258]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToByte\ByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToChar.exe_6259]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToChar\ByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToDateTime.exe_6260]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime\ByteIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToDecimal.exe_6261]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal\ByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToDouble.exe_6262]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble\ByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToInt16.exe_6263]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16\ByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToInt32.exe_6264]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32\ByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToInt64.exe_6265]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64\ByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToSByte.exe_6266]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte\ByteIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToSingle.exe_6267]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle\ByteIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToType.exe_6268]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToType\ByteIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToUInt16.exe_6269]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16\ByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToUInt32.exe_6270]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32\ByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteIConvertibleToUInt64.exe_6271]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64\ByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteMaxValue.exe_6272]
+RelativePath=CoreMangLib\cti\system\byte\ByteMaxValue\ByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteMinValue.exe_6273]
+RelativePath=CoreMangLib\cti\system\byte\ByteMinValue\ByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteParse1.exe_6274]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse1\ByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteParse3.exe_6275]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse3\ByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteToString2.exe_6276]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString2\ByteToString2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteToString3.exe_6277]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString3\ByteToString3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteToString4.exe_6278]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString4\ByteToString4.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ByteTryParse.exe_6279]
+RelativePath=CoreMangLib\cti\system\byte\ByteTryParse\ByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharCompateTo1.exe_6280]
+RelativePath=CoreMangLib\cti\system\char\CharCompateTo1\CharCompateTo1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharCompateTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEquals1.exe_6281]
+RelativePath=CoreMangLib\cti\system\char\CharEquals1\CharEquals1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEquals2.exe_6282]
+RelativePath=CoreMangLib\cti\system\char\CharEquals2\CharEquals2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharGetHashCode.exe_6283]
+RelativePath=CoreMangLib\cti\system\char\CharGetHashCode\CharGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\char\CharGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToBoolean.exe_6284]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToBoolean\CharIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToByte.exe_6285]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToByte\CharIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToChar.exe_6286]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToChar\CharIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToDateTime.exe_6287]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDateTime\CharIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToDecimal.exe_6288]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDecimal\CharIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToDouble.exe_6289]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDouble\CharIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToInt16.exe_6290]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt16\CharIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToInt32.exe_6291]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt32\CharIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToInt64.exe_6292]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt64\CharIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToSByte.exe_6293]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSByte\CharIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToSingle.exe_6294]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSingle\CharIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToType.exe_6295]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToType\CharIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToUInt16.exe_6296]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt16\CharIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToUInt32.exe_6297]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt32\CharIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIConvertibleToUInt64.exe_6298]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt64\CharIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsControl1.exe_6299]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl1\CharIsControl1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsControl2.exe_6300]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl2\CharIsControl2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsDigit1.exe_6301]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit1\CharIsDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsDigit2.exe_6302]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit2\CharIsDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLetter1.exe_6303]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter1\CharIsLetter1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLetter2.exe_6304]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter2\CharIsLetter2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLetterOrDigit1.exe_6305]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit1\CharIsLetterOrDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLetterOrDigit2.exe_6306]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit2\CharIsLetterOrDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLower1.exe_6307]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower1\CharIsLower1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsLower2.exe_6308]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower2\CharIsLower2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsNumber1.exe_6309]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber1\CharIsNumber1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsNumber2.exe_6310]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber2\CharIsNumber2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsPunctuation2.exe_6311]
+RelativePath=CoreMangLib\cti\system\char\CharIsPunctuation2\CharIsPunctuation2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsPunctuation2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSeparator1.exe_6312]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator1\CharIsSeparator1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSeparator2.exe_6313]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator2\CharIsSeparator2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSurrogate1.exe_6314]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate1\CharIsSurrogate1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSurrogate2.exe_6315]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate2\CharIsSurrogate2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSurrogatePair1.exe_6316]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair1\CharIsSurrogatePair1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSurrogatePair2.exe_6317]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair2\CharIsSurrogatePair2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsSymbol1.exe_6318]
+RelativePath=CoreMangLib\cti\system\char\CharIsSymbol1\CharIsSymbol1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSymbol1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsUpper1.exe_6319]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper1\CharIsUpper1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsUpper2.exe_6320]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper2\CharIsUpper2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsWhiteSpace1.exe_6321]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace1\CharIsWhiteSpace1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharIsWhiteSpace2.exe_6322]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace2\CharIsWhiteSpace2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharMaxValue.exe_6323]
+RelativePath=CoreMangLib\cti\system\char\CharMaxValue\CharMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharMinValue.exe_6324]
+RelativePath=CoreMangLib\cti\system\char\CharMinValue\CharMinValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharToString1.exe_6325]
+RelativePath=CoreMangLib\cti\system\char\CharToString1\CharToString1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharToString2.exe_6326]
+RelativePath=CoreMangLib\cti\system\char\CharToString2\CharToString2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharTryParse.exe_6327]
+RelativePath=CoreMangLib\cti\system\char\CharTryParse\CharTryParse.exe
+WorkingDir=CoreMangLib\cti\system\char\CharTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEnumeratorCurrent.exe_6328]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent\CharEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEnumeratorIEnumeratorCurrent.exe_6329]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent\CharEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEnumeratorIEnumgetCurrent.exe_6330]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent\CharEnumeratorIEnumgetCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEnumeratorMoveNext.exe_6331]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext\CharEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharEnumeratorReset.exe_6332]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset\CharEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CLSCompliantAttributeCtor.exe_6333]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor\CLSCompliantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CLSCompliantAttributeIsCompliant.exe_6334]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant\CLSCompliantAttributeIsCompliant.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEntryCtor.exe_6335]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor\DictionaryEntryCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEntryKey.exe_6336]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey\DictionaryEntryKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEntryValue.exe_6337]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue\DictionaryEntryValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparerCompare1.exe_6338]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1\ComparerCompare1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparerCompare2.exe_6339]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2\ComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparerCtor.exe_6340]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor\ComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparerDefault.exe_6341]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault\ComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryAdd.exe_6342]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd\DictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryClear.exe_6343]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear\DictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryComparer.exe_6344]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer\DictionaryComparer.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryContainsKey.exe_6345]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey\DictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryContainsValue.exe_6346]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue\DictionaryContainsValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCount.exe_6347]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount\DictionaryCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor1.exe_6348]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1\DictionaryCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor2.exe_6349]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2\DictionaryCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor3.exe_6350]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3\DictionaryCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor4.exe_6351]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4\DictionaryCtor4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor5.exe_6352]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5\DictionaryCtor5.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryCtor6.exe_6353]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6\DictionaryCtor6.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryGetEnumerator.exe_6354]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator\DictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionAdd.exe_6355]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd\DictionaryICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionContains.exe_6356]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains\DictionaryICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionCopyTo.exe_6357]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo\DictionaryICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionCopyTo2.exe_6358]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2\DictionaryICollectionCopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionIsReadOnly.exe_6359]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly\DictionaryICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionIsReadOnly2.exe_6360]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2\DictionaryICollectionIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionIsSynchronized.exe_6361]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized\DictionaryICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionIsSynchronized2.exe_6362]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2\DictionaryICollectionIsSynchronized2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionRemove.exe_6363]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove\DictionaryICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionSyncRoot.exe_6364]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot\DictionaryICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryICollectionSyncRoot2.exe_6365]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2\DictionaryICollectionSyncRoot2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryAdd.exe_6366]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd\DictionaryIDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryContains.exe_6367]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains\DictionaryIDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryGetEnumerator.exe_6368]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator\DictionaryIDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryIsFixedSize.exe_6369]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize\DictionaryIDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryIsFixedSize2.exe_6370]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2\DictionaryIDictionaryIsFixedSize2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryIsReadOnly.exe_6371]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly\DictionaryIDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryIsReadOnly2.exe_6372]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2\DictionaryIDictionaryIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryItem.exe_6373]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem\DictionaryIDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryItem2.exe_6374]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2\DictionaryIDictionaryItem2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryKeys.exe_6375]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys\DictionaryIDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryKeys2.exe_6376]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2\DictionaryIDictionaryKeys2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryKeys3.exe_6377]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3\DictionaryIDictionaryKeys3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryKeys4.exe_6378]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4\DictionaryIDictionaryKeys4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryRemove.exe_6379]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove\DictionaryIDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryValue2.exe_6380]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2\DictionaryIDictionaryValue2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryValue3.exe_6381]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3\DictionaryIDictionaryValue3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryValue4.exe_6382]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4\DictionaryIDictionaryValue4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIDictionaryValues.exe_6383]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues\DictionaryIDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIEnumerableGetEnumerator.exe_6384]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator\DictionaryIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryIEnumerableGetEnumerator2.exe_6385]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2\DictionaryIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryRemove.exe_6386]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove\DictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryTryGetValue.exe_6387]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue\DictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictEnumIDictEnumget_Entry.exe_6388]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry\DictEnumIDictEnumget_Entry.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictEnumIDictEnumget_Key.exe_6389]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key\DictEnumIDictEnumget_Key.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictEnumIDictEnumget_Value.exe_6390]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value\DictEnumIDictEnumget_Value.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictEnumIEnumget_Current.exe_6391]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current\DictEnumIEnumget_Current.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictEnumIEnumReset.exe_6392]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset\DictEnumIEnumReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEnumeratorCurrent.exe_6393]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent\DictionaryEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEnumeratorDispose.exe_6394]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose\DictionaryEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryEnumeratorMoveNext.exe_6395]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext\DictionaryEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericICollectionRemove.exe_6396]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6397]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionSyncRoot.exe_6398]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6399]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionCopyTo.exe_6400]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo\KeyCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionCount.exe_6401]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount\KeyCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionCtor.exe_6402]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor\KeyCollectionCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionGetEnumerator.exe_6403]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator\KeyCollectionGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollectionsICollectionCopyTo.exe_6404]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollGenericICollClear.exe_6405]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear\SystemCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollGenericICollContains.exe_6406]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains\SystemCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollGenericICollectionAdd.exe_6407]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd\SystemCollGenericICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollGenICollIsReadOnly.exe_6408]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly\SystemCollGenICollIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollGenIEnumGetEnumerator.exe_6409]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator\SystemCollGenIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionCopyTo.exe_6410]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo\DictionaryValueCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionCount.exe_6411]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount\DictionaryValueCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionctor.exe_6412]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor\DictionaryValueCollectionctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericICollectionIsReadOnly.exe_6413]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly\GenericICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GenericICollectionRemove.exe_6414]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GetEnumerator.exe_6415]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator\GetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6416]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6417]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollectionsICollectionCopyTo.exe_6418]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SystemCollICollectionSyncRoot.exe_6419]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot\SystemCollICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollGenericICollAdd.exe_6420]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd\ValueCollGenericICollAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollGenericICollClear.exe_6421]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear\ValueCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollGenericICollContains.exe_6422]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains\ValueCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollGenericIEnumGetEnumerator.exe_6423]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator\ValueCollGenericIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorCurrent.exe_6424]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent\DictionaryKeyCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorDispose.exe_6425]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose\DictionaryKeyCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorMoveNext.exe_6426]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext\DictionaryKeyCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorCurrent.exe_6427]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorDispose.exe_6428]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorMoveNext.exe_6429]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionEnumeratorIEnumeratorCurrent.exe_6430]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent\KeyCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyCollectionEnumeratorIEnumeratorReset.exe_6431]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset\KeyCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorCurrent.exe_6432]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorReset.exe_6433]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorCurrent.exe_6434]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorDispose.exe_6435]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorMoveNext.exe_6436]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorCurrent.exe_6437]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorReset.exe_6438]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EqualityComparerEquals.exe_6439]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals\EqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EqualityComparerGetHashCode.exe_6440]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode\EqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EqulityComparerDefault.exe_6441]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault\EqulityComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionAdd.exe_6442]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd\ICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionClear.exe_6443]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear\ICollectionClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionContains.exe_6444]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains\ICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionCopyTo.exe_6445]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionCount.exe_6446]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionIsReadOnly.exe_6447]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly\ICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionRemove.exe_6448]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove\ICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryContainsKey.exe_6449]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey\IDictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryItem.exe_6450]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem\IDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryKeys.exe_6451]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys\IDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryTryGetValue.exe_6452]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue\IDictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryValues.exe_6453]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues\IDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6454]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumeratorCurrent.exe_6455]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEqualityComparerEquals.exe_6456]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals\IEqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEqualityComparerGetHashCode.exe_6457]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode\IEqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListIndexOf.exe_6458]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf\IListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListInsert.exe_6459]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListInsert\IListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListItem.exe_6460]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListRemoveAt.exe_6461]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt\IListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyNotFoundExceptionCtor1.exe_6462]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1\KeyNotFoundExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyNotFoundExceptionCtor2.exe_6463]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2\KeyNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyValuePairctor.exe_6464]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor\KeyValuePairctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyValuePairKey.exe_6465]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey\KeyValuePairKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyValuePairToString.exe_6466]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString\KeyValuePairToString.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[KeyValuePairValue.exe_6467]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue\KeyValuePairValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BinarySearch1.exe_6468]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch1\BinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BinarySearch2.exe_6469]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch2\BinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BinarySearch3.exe_6470]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch3\BinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CopyTo1.exe_6471]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo1\CopyTo1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CopyTo2.exe_6472]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo2\CopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CopyTo3.exe_6473]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo3\CopyTo3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListAdd.exe_6474]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAdd\ListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListAddRange.exe_6475]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAddRange\ListAddRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAddRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListCapacity.exe_6476]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCapacity\ListCapacity.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCapacity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListClear.exe_6477]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListClear\ListClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListContains.exe_6478]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListContains\ListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListCount.exe_6479]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCount\ListCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListCtor1.exe_6480]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor1\ListCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListCtor2.exe_6481]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor2\ListCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListCtor3.exe_6482]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor3\ListCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListForEach.exe_6483]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListForEach\ListForEach.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListForEach
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListGetEnumerator.exe_6484]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator\ListGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListGetRange.exe_6485]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetRange\ListGetRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListICollectionCopyTo.exe_6486]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo\ListICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListICollectionIsReadOnly.exe_6487]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly\ListICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListICollectionIsSynchronized.exe_6488]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized\ListICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListICollectionSyncRoot.exe_6489]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot\ListICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIEnumerableGetEnumerator.exe_6490]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator\ListIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIEnumerableGetEnumerator2.exe_6491]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2\ListIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListAdd.exe_6492]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListAdd\ListIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListContains.exe_6493]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListContains\ListIListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListIndexOf.exe_6494]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf\ListIListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListInsert.exe_6495]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListInsert\ListIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListIsFixedSize.exe_6496]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize\ListIListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListIsReadOnly.exe_6497]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly\ListIListIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListItem.exe_6498]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListItem\ListIListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIListRemove.exe_6499]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListRemove\ListIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIndexOf1.exe_6500]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1\ListIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIndexOf2.exe_6501]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2\ListIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListIndexOf3.exe_6502]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3\ListIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListInsertRange.exe_6503]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListInsertRange\ListInsertRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListInsertRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListLastIndexOf1.exe_6504]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1\ListLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListLastIndexOf2.exe_6505]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2\ListLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListLastIndexOf3.exe_6506]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3\ListLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListRemoveAt.exe_6507]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt\ListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListRemoveRange.exe_6508]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange\ListRemoveRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListReverse.exe_6509]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse\ListReverse.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListReverse2.exe_6510]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse2\ListReverse2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListToArray.exe_6511]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListToArray\ListToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ListTrimExcess.exe_6512]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess\ListTrimExcess.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueClear.exe_6513]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueClear\QueueClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueContains.exe_6514]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueContains\QueueContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueCopyTo.exe_6515]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo\QueueCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueCount.exe_6516]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCount\QueueCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueCtor1.exe_6517]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1\QueueCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueCtor2.exe_6518]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2\QueueCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueCtor3.exe_6519]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3\QueueCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueDequeue.exe_6520]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue\QueueDequeue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueEnqueue.exe_6521]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue\QueueEnqueue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueGetEnumerator.exe_6522]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator\QueueGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueuePeek.exe_6523]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueuePeek\QueuePeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueuePeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[QueueToArray.exe_6524]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueToArray\QueueToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumeratorCurrent.exe_6525]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent\EnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumeratorDispose.exe_6526]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose\EnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumeratorMoveNext.exe_6527]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext\EnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackClear.exe_6528]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackClear\StackClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackContains.exe_6529]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackContains\StackContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackCopyTo.exe_6530]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo\StackCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackCount.exe_6531]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCount\StackCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackCtor1.exe_6532]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor1\StackCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackCtor2.exe_6533]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor2\StackCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackCtor3.exe_6534]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor3\StackCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackGetEnumerator.exe_6535]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator\StackGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackPeek.exe_6536]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPeek\StackPeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackPop.exe_6537]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPop\StackPop.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackPush.exe_6538]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPush\StackPush.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackToArray.exe_6539]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackToArray\StackToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackEnumeratorCurrent.exe_6540]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent\StackEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackEnumeratorDispose.exe_6541]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose\StackEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackEnumeratorMoveNext.exe_6542]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext\StackEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionCopyTo.exe_6543]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionCount.exe_6544]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6545]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ICollectionSyncRoot.exe_6546]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IComparerCompare.exe_6547]
+RelativePath=CoreMangLib\cti\system\collections\icomparer\IComparerCompare\IComparerCompare.exe
+WorkingDir=CoreMangLib\cti\system\collections\icomparer\IComparerCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryAdd.exe_6548]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd\IDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryClear.exe_6549]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear\IDictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryContains.exe_6550]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains\IDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryGetEnumerator.exe_6551]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator\IDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryIsFixedSize.exe_6552]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize\IDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryIsReadOnly.exe_6553]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly\IDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDictionaryRemove.exe_6554]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove\IDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumeratorCurrent.exe_6555]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumeratorMoveNext.exe_6556]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext\IEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IEnumeratorReset.exe_6557]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset\IEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListIsFixedSize.exe_6558]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize\IListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IListItem.exe_6559]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparisonBeginInvoke.exe_6560]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke\ComparisonBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparisonEndInvoke.exe_6561]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonEndInvoke\ComparisonEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ComparisonInvoke.exe_6562]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonInvoke\ComparisonInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[consoleseterror_PSC.exe_6563]
+RelativePath=CoreMangLib\cti\system\console\consoleseterror_PSC\consoleseterror_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\consoleseterror_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[ConsoleSetOut_PSC.exe_6564]
+RelativePath=CoreMangLib\cti\system\console\ConsoleSetOut_PSC\ConsoleSetOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\ConsoleSetOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[ConvertChangeType2.exe_6565]
+RelativePath=CoreMangLib\cti\system\convert\ConvertChangeType2\ConvertChangeType2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertChangeType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertFromBase64CharArray.exe_6566]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray\ConvertFromBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertFromBase64String.exe_6567]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64String\ConvertFromBase64String.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64String
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBase64CharArray.exe_6568]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64CharArray\ConvertToBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64CharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBase64String1.exe_6569]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String1\ConvertToBase64String1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBase64String2.exe_6570]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String2\ConvertToBase64String2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean.exe_6571]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean\ConvertToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean2.exe_6572]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean2\ConvertToBoolean2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean4.exe_6573]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean4\ConvertToBoolean4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean5.exe_6574]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean5\ConvertToBoolean5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean6.exe_6575]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean6\ConvertToBoolean6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean7.exe_6576]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean7\ConvertToBoolean7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToBoolean8.exe_6577]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean8\ConvertToBoolean8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte.exe_6578]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte\ConvertToByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte1.exe_6579]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte1\ConvertToByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte2.exe_6580]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte2\ConvertToByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte3.exe_6581]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte3\ConvertToByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte4.exe_6582]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte4\ConvertToByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte6.exe_6583]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte6\ConvertToByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte7.exe_6584]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte7\ConvertToByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToByte8.exe_6585]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte8\ConvertToByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar.exe_6586]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar\ConvertToChar.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;;UNSTABLE;DBG
+HostStyle=Any
+[ConvertToChar10.exe_6587]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar10\ConvertToChar10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar11.exe_6588]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar11\ConvertToChar11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar12.exe_6589]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar12\ConvertToChar12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar13.exe_6590]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar13\ConvertToChar13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar14.exe_6591]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar14\ConvertToChar14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar15.exe_6592]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar15\ConvertToChar15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar16.exe_6593]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar16\ConvertToChar16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3263
+HostStyle=Any
+[ConvertToChar5.exe_6594]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar5\ConvertToChar5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar6.exe_6595]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar6\ConvertToChar6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar7.exe_6596]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar7\ConvertToChar7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToChar8.exe_6597]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar8\ConvertToChar8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE;DBG
+HostStyle=Any
+[ConvertToChar9.exe_6598]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar9\ConvertToChar9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDateTime.exe_6599]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDateTime\ConvertToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[ConvertToDecimal.exe_6600]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal\ConvertToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal1.exe_6601]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal1\ConvertToDecimal1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal10.exe_6602]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal10\ConvertToDecimal10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal11.exe_6603]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal11\ConvertToDecimal11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal12.exe_6604]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal12\ConvertToDecimal12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal13.exe_6605]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal13\ConvertToDecimal13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal14.exe_6606]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal14\ConvertToDecimal14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal15.exe_6607]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal15\ConvertToDecimal15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal16.exe_6608]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal16\ConvertToDecimal16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal17.exe_6609]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal17\ConvertToDecimal17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal18.exe_6610]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal18\ConvertToDecimal18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal2.exe_6611]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal2\ConvertToDecimal2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal5.exe_6612]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal5\ConvertToDecimal5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal6.exe_6613]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal6\ConvertToDecimal6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal8.exe_6614]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal8\ConvertToDecimal8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDecimal9.exe_6615]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal9\ConvertToDecimal9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble.exe_6616]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble\ConvertToDouble.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble10.exe_6617]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble10\ConvertToDouble10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble11.exe_6618]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble11\ConvertToDouble11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble12.exe_6619]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble12\ConvertToDouble12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble13.exe_6620]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble13\ConvertToDouble13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble14.exe_6621]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble14\ConvertToDouble14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble15.exe_6622]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble15\ConvertToDouble15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble16.exe_6623]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble16\ConvertToDouble16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble17.exe_6624]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble17\ConvertToDouble17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble5.exe_6625]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble5\ConvertToDouble5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble6.exe_6626]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble6\ConvertToDouble6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble7.exe_6627]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble7\ConvertToDouble7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble8.exe_6628]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble8\ConvertToDouble8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToDouble9.exe_6629]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble9\ConvertToDouble9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16.exe_6630]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16\ConvertToInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_1.exe_6631]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_1\ConvertToInt16_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_10.exe_6632]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_10\ConvertToInt16_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_11.exe_6633]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_11\ConvertToInt16_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_16.exe_6634]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_16\ConvertToInt16_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_17.exe_6635]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_17\ConvertToInt16_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_18.exe_6636]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_18\ConvertToInt16_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_2.exe_6637]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_2\ConvertToInt16_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_3.exe_6638]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_3\ConvertToInt16_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_4.exe_6639]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_4\ConvertToInt16_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_5.exe_6640]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_5\ConvertToInt16_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_6.exe_6641]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_6\ConvertToInt16_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_7.exe_6642]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_7\ConvertToInt16_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_8.exe_6643]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_8\ConvertToInt16_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt16_9.exe_6644]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_9\ConvertToInt16_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32.exe_6645]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32\ConvertToInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_1.exe_6646]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_1\ConvertToInt32_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_10.exe_6647]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_10\ConvertToInt32_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_11.exe_6648]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_11\ConvertToInt32_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_16.exe_6649]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_16\ConvertToInt32_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_17.exe_6650]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_17\ConvertToInt32_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_18.exe_6651]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_18\ConvertToInt32_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_2.exe_6652]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_2\ConvertToInt32_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_3.exe_6653]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_3\ConvertToInt32_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_4.exe_6654]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_4\ConvertToInt32_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_5.exe_6655]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_5\ConvertToInt32_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_6.exe_6656]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_6\ConvertToInt32_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_7.exe_6657]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_7\ConvertToInt32_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_8.exe_6658]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_8\ConvertToInt32_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt32_9.exe_6659]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_9\ConvertToInt32_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64.exe_6660]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64\ConvertToInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_1.exe_6661]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_1\ConvertToInt64_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_10.exe_6662]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_10\ConvertToInt64_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_11.exe_6663]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_11\ConvertToInt64_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_16.exe_6664]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_16\ConvertToInt64_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_17.exe_6665]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_17\ConvertToInt64_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_18.exe_6666]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_18\ConvertToInt64_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_2.exe_6667]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_2\ConvertToInt64_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_3.exe_6668]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_3\ConvertToInt64_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_4.exe_6669]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_4\ConvertToInt64_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_5.exe_6670]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_5\ConvertToInt64_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_6.exe_6671]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_6\ConvertToInt64_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_7.exe_6672]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_7\ConvertToInt64_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_8.exe_6673]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_8\ConvertToInt64_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToInt64_9.exe_6674]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_9\ConvertToInt64_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte.exe_6675]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte\ConvertToSByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte1.exe_6676]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte1\ConvertToSByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte10.exe_6677]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte10\ConvertToSByte10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte11.exe_6678]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte11\ConvertToSByte11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte16.exe_6679]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte16\ConvertToSByte16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte2.exe_6680]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte2\ConvertToSByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte3.exe_6681]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte3\ConvertToSByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte4.exe_6682]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte4\ConvertToSByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte5.exe_6683]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte5\ConvertToSByte5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte6.exe_6684]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte6\ConvertToSByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte7.exe_6685]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte7\ConvertToSByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte8.exe_6686]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte8\ConvertToSByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSByte9.exe_6687]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte9\ConvertToSByte9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle.exe_6688]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle\ConvertToSingle.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle13.exe_6689]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle13\ConvertToSingle13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle14.exe_6690]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle14\ConvertToSingle14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle15.exe_6691]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle15\ConvertToSingle15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle16.exe_6692]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle16\ConvertToSingle16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToSingle17.exe_6693]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle17\ConvertToSingle17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString1.exe_6694]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString1\ConvertToString1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString10.exe_6695]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString10\ConvertToString10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString11.exe_6696]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString11\ConvertToString11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString12.exe_6697]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString12\ConvertToString12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString13.exe_6698]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString13\ConvertToString13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString14.exe_6699]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString14\ConvertToString14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString15.exe_6700]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString15\ConvertToString15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString16.exe_6701]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString16\ConvertToString16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString17.exe_6702]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString17\ConvertToString17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString18.exe_6703]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString18\ConvertToString18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString19.exe_6704]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString19\ConvertToString19.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString2.exe_6705]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString2\ConvertToString2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString20.exe_6706]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString20\ConvertToString20.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString21.exe_6707]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString21\ConvertToString21.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString22.exe_6708]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString22\ConvertToString22.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString23.exe_6709]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString23\ConvertToString23.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString24.exe_6710]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString24\ConvertToString24.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString25.exe_6711]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString25\ConvertToString25.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString28.exe_6712]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString28\ConvertToString28.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString29.exe_6713]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString29\ConvertToString29.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString30.exe_6714]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString30\ConvertToString30.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString31.exe_6715]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString31\ConvertToString31.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString31
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString32.exe_6716]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString32\ConvertToString32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString33.exe_6717]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString33\ConvertToString33.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString33
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString4.exe_6718]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString4\ConvertToString4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString5.exe_6719]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString5\ConvertToString5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString6.exe_6720]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString6\ConvertToString6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString7.exe_6721]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString7\ConvertToString7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString8.exe_6722]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString8\ConvertToString8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToString9.exe_6723]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString9\ConvertToString9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt16.exe_6724]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt16\ConvertToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt161.exe_6725]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt161\ConvertToUInt161.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt161
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1610.exe_6726]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1610\ConvertToUInt1610.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1611.exe_6727]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1611\ConvertToUInt1611.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1611
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1612.exe_6728]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1612\ConvertToUInt1612.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1612
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1613.exe_6729]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1613\ConvertToUInt1613.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1613
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1614.exe_6730]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1614\ConvertToUInt1614.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1615.exe_6731]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1615\ConvertToUInt1615.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1615
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1616.exe_6732]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1616\ConvertToUInt1616.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1616
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1617.exe_6733]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1617\ConvertToUInt1617.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt1618.exe_6734]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1618\ConvertToUInt1618.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1618
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt162.exe_6735]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt162\ConvertToUInt162.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt162
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt163.exe_6736]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt163\ConvertToUInt163.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt163
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt164.exe_6737]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt164\ConvertToUInt164.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt165.exe_6738]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt165\ConvertToUInt165.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt165
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt166.exe_6739]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt166\ConvertToUInt166.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt166
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt167.exe_6740]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt167\ConvertToUInt167.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt167
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt168.exe_6741]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt168\ConvertToUInt168.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt168
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt169.exe_6742]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt169\ConvertToUInt169.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt169
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt32.exe_6743]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt32\ConvertToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[ConvertToUInt321.exe_6744]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt321\ConvertToUInt321.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3210.exe_6745]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3210\ConvertToUInt3210.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3210
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3211.exe_6746]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3211\ConvertToUInt3211.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3211
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3212.exe_6747]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3212\ConvertToUInt3212.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3212
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3213.exe_6748]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3213\ConvertToUInt3213.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3213
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3215.exe_6749]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3215\ConvertToUInt3215.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3216.exe_6750]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3216\ConvertToUInt3216.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3217.exe_6751]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3217\ConvertToUInt3217.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3218.exe_6752]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3218\ConvertToUInt3218.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt3219.exe_6753]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3219\ConvertToUInt3219.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt322.exe_6754]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt322\ConvertToUInt322.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt322
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt323.exe_6755]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt323\ConvertToUInt323.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt324.exe_6756]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt324\ConvertToUInt324.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt324
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt325.exe_6757]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt325\ConvertToUInt325.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt325
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[ConvertToUInt326.exe_6758]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt326\ConvertToUInt326.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt326
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt327.exe_6759]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt327\ConvertToUInt327.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt327
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt328.exe_6760]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt328\ConvertToUInt328.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt328
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt329.exe_6761]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt329\ConvertToUInt329.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt64.exe_6762]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt64\ConvertToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt641.exe_6763]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt641\ConvertToUInt641.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt641
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6410.exe_6764]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6410\ConvertToUInt6410.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6410
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6411.exe_6765]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6411\ConvertToUInt6411.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6412.exe_6766]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6412\ConvertToUInt6412.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6412
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6413.exe_6767]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6413\ConvertToUInt6413.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6413
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE
+HostStyle=Any
+[ConvertToUInt6414.exe_6768]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6414\ConvertToUInt6414.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6415.exe_6769]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6415\ConvertToUInt6415.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6415
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6416.exe_6770]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6416\ConvertToUInt6416.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6416
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6417.exe_6771]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6417\ConvertToUInt6417.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6417
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt6418.exe_6772]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6418\ConvertToUInt6418.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6418
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt642.exe_6773]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt642\ConvertToUInt642.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt642
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt643.exe_6774]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt643\ConvertToUInt643.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt643
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt644.exe_6775]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt644\ConvertToUInt644.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt644
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt645.exe_6776]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt645\ConvertToUInt645.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt645
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt646.exe_6777]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt646\ConvertToUInt646.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt646
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt647.exe_6778]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt647\ConvertToUInt647.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt648.exe_6779]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt648\ConvertToUInt648.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt648
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConvertToUInt649.exe_6780]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt649\ConvertToUInt649.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCompare.exe_6781]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompare\DateTimeCompare.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCompareTo1.exe_6782]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompareTo1\DateTimeCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCtor1.exe_6783]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor1\DateTimeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCtor3.exe_6784]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor3\DateTimeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCtor4.exe_6785]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor4\DateTimeCtor4.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCtor6.exe_6786]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor6\DateTimeCtor6.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeCtor7.exe_6787]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor7\DateTimeCtor7.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeDate.exe_6788]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeDate\DateTimeDate.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeDate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeGetHashCode.exe_6789]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeGetHashCode\DateTimeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeHour.exe_6790]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeHour\DateTimeHour.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeHour
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeKind.exe_6791]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeKind\DateTimeKind.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeKind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeMaxValue.exe_6792]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMaxValue\DateTimeMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeMillisecond.exe_6793]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMillisecond\DateTimeMillisecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMillisecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeMinute.exe_6794]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinute\DateTimeMinute.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinute
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeMinValue.exe_6795]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinValue\DateTimeMinValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeNow.exe_6796]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeNow\DateTimeNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeNow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeParse1.exe_6797]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse1\DateTimeParse1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[DateTimeParse2.exe_6798]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse2\DateTimeParse2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[DateTimeParse3.exe_6799]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse3\DateTimeParse3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[DateTimeParseExact1.exe_6800]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact1\DateTimeParseExact1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[DateTimeParseExact2.exe_6801]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact2\DateTimeParseExact2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE
+HostStyle=Any
+[DateTimeParseExact3.exe_6802]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact3\DateTimeParseExact3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE;ISSUE_3104;NEED_TRIAGE
+HostStyle=Any
+[DateTimeSecond.exe_6803]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSecond\DateTimeSecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeSubtract1.exe_6804]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract1\DateTimeSubtract1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeSubtract2.exe_6805]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract2\DateTimeSubtract2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeTicks.exe_6806]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTicks\DateTimeTicks.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeTimeOfDay.exe_6807]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay\DateTimeTimeOfDay.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimetoday.exe_6808]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimetoday\DateTimetoday.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimetoday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToFileTime.exe_6809]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTime\DateTimeToFileTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToFileTimeUtc.exe_6810]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc\DateTimeToFileTimeUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToLocalTime.exe_6811]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToLocalTime\DateTimeToLocalTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToLocalTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToString1.exe_6812]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString1\DateTimeToString1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToString2.exe_6813]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString2\DateTimeToString2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeToString3.exe_6814]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString3\DateTimeToString3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeUtcNow.exe_6815]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeUtcNow\DateTimeUtcNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeUtcNow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeKindLocal.exe_6816]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal\DateTimeKindLocal.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeKindUnspecified.exe_6817]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified\DateTimeKindUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeKindUtc.exe_6818]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc\DateTimeKindUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekFriday.exe_6819]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday\DayOfWeekFriday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekMonday.exe_6820]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday\DayOfWeekMonday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekSaturday.exe_6821]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday\DayOfWeekSaturday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekSunday.exe_6822]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday\DayOfWeekSunday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekThursday.exe_6823]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday\DayOfWeekThursday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekTuesDay.exe_6824]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay\DayOfWeekTuesDay.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DayOfWeekWednesday.exe_6825]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday\DayOfWeekWednesday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimaFloor.exe_6826]
+RelativePath=CoreMangLib\cti\system\decimal\DecimaFloor\DecimaFloor.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimaFloor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalAdd.exe_6827]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalAdd\DecimalAdd.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCompare.exe_6828]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCompare\DecimalCompare.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor1.exe_6829]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor1\DecimalCtor1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor2.exe_6830]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor2\DecimalCtor2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor3.exe_6831]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor3\DecimalCtor3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor4.exe_6832]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor4\DecimalCtor4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor5.exe_6833]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor5\DecimalCtor5.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor6.exe_6834]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor6\DecimalCtor6.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor7.exe_6835]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor7\DecimalCtor7.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalCtor8.exe_6836]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor8\DecimalCtor8.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalDivide.exe_6837]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalDivide\DecimalDivide.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalDivide
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalEquals1.exe_6838]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals1\DecimalEquals1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalEquals2.exe_6839]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals2\DecimalEquals2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalEquals3.exe_6840]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals3\DecimalEquals3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalGetBits.exe_6841]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalGetBits\DecimalGetBits.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalGetBits
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalMaxValue.exe_6842]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMaxValue\DecimalMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalMinusOne.exe_6843]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinusOne\DecimalMinusOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinusOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalMinValue.exe_6844]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinValue\DecimalMinValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalMultiply.exe_6845]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMultiply\DecimalMultiply.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMultiply
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalNegate.exe_6846]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalNegate\DecimalNegate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalNegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalOne.exe_6847]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalOne\DecimalOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalParse.exe_6848]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse\DecimalParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalParse2.exe_6849]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse2\DecimalParse2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalParse3.exe_6850]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse3\DecimalParse3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalParse4.exe_6851]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse4\DecimalParse4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalRemainder.exe_6852]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalRemainder\DecimalRemainder.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalRemainder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[DecimalSubtract.exe_6853]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalSubtract\DecimalSubtract.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalSubtract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToBoolean.exe_6854]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToBoolean\DecimalToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToByte.exe_6855]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte\DecimalToByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToByte1.exe_6856]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte1\DecimalToByte1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToChar.exe_6857]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToChar\DecimalToChar.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToDateTime.exe_6858]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDateTime\DecimalToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToDecimal.exe_6859]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDecimal\DecimalToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToDouble.exe_6860]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDouble\DecimalToDouble.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToInt16.exe_6861]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt16\DecimalToInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToInt32.exe_6862]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt32\DecimalToInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToInt64.exe_6863]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt64\DecimalToInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToSByte.exe_6864]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSByte\DecimalToSByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToSingle.exe_6865]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSingle\DecimalToSingle.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToString1.exe_6866]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString1\DecimalToString1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToString2.exe_6867]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString2\DecimalToString2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToString3.exe_6868]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString3\DecimalToString3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToString4.exe_6869]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString4\DecimalToString4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToUInt16.exe_6870]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt16\DecimalToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToUInt32.exe_6871]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt32\DecimalToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalToUInt64.exe_6872]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt64\DecimalToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalTruncate.exe_6873]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTruncate\DecimalTruncate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTruncate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalTryParse.exe_6874]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTryParse\DecimalTryParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalZero.exe_6875]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalZero\DecimalZero.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateCombine1.exe_6876]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombine1\DelegateCombine1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombine1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateCombineImpl.exe_6877]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombineImpl\DelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombineImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateEquals1.exe_6878]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateEquals1\DelegateEquals1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateGetHashCode1.exe_6879]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetHashCode1\DelegateGetHashCode1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetHashCode1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateGetInvocationList1.exe_6880]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1\DelegateGetInvocationList1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DelegateRemove.exe_6881]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateRemove\DelegateRemove.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[delegateRemoveImpl.exe_6882]
+RelativePath=CoreMangLib\cti\system\delegate\delegateRemoveImpl\delegateRemoveImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\delegateRemoveImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConditionalAttributeConditionString.exe_6883]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString\ConditionalAttributeConditionString.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConditionalAttributeCtor.exe_6884]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor\ConditionalAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DebuggingModesDefault.exe_6885]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault\DebuggingModesDefault.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DebuggingModesDisableOptimizations.exe_6886]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations\DebuggingModesDisableOptimizations.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DebuggingModesEnableEditAndContinue.exe_6887]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue\DebuggingModesEnableEditAndContinue.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DebuggingModesIgnoreSymbolStoreSequencePoints.exe_6888]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints\DebuggingModesIgnoreSymbolStoreSequencePoints.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DebuggingModesNone.exe_6889]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone\DebuggingModesNone.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DivideByZeroExceptionCtor.exe_6890]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor\DivideByZeroExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DivideByZeroExceptionCtor2.exe_6891]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2\DivideByZeroExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DivideByZeroExceptionCtor3.exe_6892]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3\DivideByZeroExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DllNotFoundException1.exe_6893]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1\DllNotFoundException1.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DllNotFoundExceptionCtor2.exe_6894]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2\DllNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DllNotFoundExceptionCtor3.exe_6895]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3\DllNotFoundExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleCompareTo1.exe_6896]
+RelativePath=CoreMangLib\cti\system\double\DoubleCompareTo1\DoubleCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleCompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[DoubleEpsilon.exe_6897]
+RelativePath=CoreMangLib\cti\system\double\DoubleEpsilon\DoubleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEpsilon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleEquals1.exe_6898]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals1\DoubleEquals1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleEquals2.exe_6899]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals2\DoubleEquals2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleGetHashCode.exe_6900]
+RelativePath=CoreMangLib\cti\system\double\DoubleGetHashCode\DoubleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToBoolean.exe_6901]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean\DoubleIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToByte.exe_6902]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToByte\DoubleIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToDateTime.exe_6903]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime\DoubleIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToDecimal.exe_6904]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal\DoubleIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToDouble.exe_6905]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble\DoubleIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToInt16.exe_6906]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16\DoubleIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToInt32.exe_6907]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32\DoubleIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToInt64.exe_6908]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64\DoubleIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToSByte.exe_6909]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte\DoubleIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIConvertibleToSingle.exe_6910]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle\DoubleIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIsInfinity.exe_6911]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsInfinity\DoubleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIsNaN.exe_6912]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNaN\DoubleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIsNegativeInfinity.exe_6913]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity\DoubleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleIsPositiveInfinity.exe_6914]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity\DoubleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleMaxValue.exe_6915]
+RelativePath=CoreMangLib\cti\system\double\DoubleMaxValue\DoubleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleMinValue.exe_6916]
+RelativePath=CoreMangLib\cti\system\double\DoubleMinValue\DoubleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleNaN.exe_6917]
+RelativePath=CoreMangLib\cti\system\double\DoubleNaN\DoubleNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleNegativeInfinity.exe_6918]
+RelativePath=CoreMangLib\cti\system\double\DoubleNegativeInfinity\DoubleNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleParse3.exe_6919]
+RelativePath=CoreMangLib\cti\system\double\DoubleParse3\DoubleParse3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoublePositiveInfinity.exe_6920]
+RelativePath=CoreMangLib\cti\system\double\DoublePositiveInfinity\DoublePositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoublePositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleToString1.exe_6921]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString1\DoubleToString1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleToString2.exe_6922]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString2\DoubleToString2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleToString3.exe_6923]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString3\DoubleToString3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleToString4.exe_6924]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString4\DoubleToString4.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DoubleTryParse.exe_6925]
+RelativePath=CoreMangLib\cti\system\double\DoubleTryParse\DoubleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToInt64.exe_6926]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64\EnumIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToSingle.exe_6927]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle\EnumIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToType.exe_6928]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToType\EnumIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToUint16.exe_6929]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16\EnumIConvertibleToUint16.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToUint32.exe_6930]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32\EnumIConvertibleToUint32.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIConvertibleToUint64.exe_6931]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64\EnumIConvertibleToUint64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumIsDefined.exe_6932]
+RelativePath=CoreMangLib\cti\system\enum\EnumIsDefined\EnumIsDefined.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIsDefined
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumToObjectb.exe_6933]
+RelativePath=CoreMangLib\cti\system\enum\EnumToObjectb\EnumToObjectb.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToObjectb
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumToString.exe_6934]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString\EnumToString.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnumToString3.exe_6935]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString3\EnumToString3.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EnvironmentNewLine.exe_6936]
+RelativePath=CoreMangLib\cti\system\environment\EnvironmentNewLine\EnvironmentNewLine.exe
+WorkingDir=CoreMangLib\cti\system\environment\EnvironmentNewLine
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventArgsctor.exe_6937]
+RelativePath=CoreMangLib\cti\system\eventargs\EventArgsctor\EventArgsctor.exe
+WorkingDir=CoreMangLib\cti\system\eventargs\EventArgsctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventHandlerInvoke.exe_6938]
+RelativePath=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventHandlerBeginInvoke.exe_6939]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke\EventHandlerBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventHandlerCtor.exe_6940]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor\EventHandlerCtor.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventHandlerEndInvoke.exe_6941]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke\EventHandlerEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventHandlerInvoke.exe_6942]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExceptionCtor1.exe_6943]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor1\ExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExceptionCtor2.exe_6944]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor2\ExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExceptionCtor3.exe_6945]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor3\ExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ExceptionGetBaseException.exe_6946]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionGetBaseException\ExceptionGetBaseException.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionGetBaseException
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlagsAttributeCtor.exe_6947]
+RelativePath=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor\FlagsAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FormatExceptionCtor1.exe_6948]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1\FormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FormatExceptionCtor2.exe_6949]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2\FormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FormatExceptionCtor3.exe_6950]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3\FormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCCollect.exe_6951]
+RelativePath=CoreMangLib\cti\system\gc\GCCollect\GCCollect.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCCollect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCGetTotalMemory.exe_6952]
+RelativePath=CoreMangLib\cti\system\gc\GCGetTotalMemory\GCGetTotalMemory.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCGetTotalMemory
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCKeepAlive.exe_6953]
+RelativePath=CoreMangLib\cti\system\gc\GCKeepAlive\GCKeepAlive.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCKeepAlive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCMaxGeneration.exe_6954]
+RelativePath=CoreMangLib\cti\system\gc\GCMaxGeneration\GCMaxGeneration.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCMaxGeneration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCReRegisterForFinalize.exe_6955]
+RelativePath=CoreMangLib\cti\system\gc\GCReRegisterForFinalize\GCReRegisterForFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCReRegisterForFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCSuppressFinalize.exe_6956]
+RelativePath=CoreMangLib\cti\system\gc\GCSuppressFinalize\GCSuppressFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCSuppressFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCWaitForPendingFinalizers.exe_6957]
+RelativePath=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers\GCWaitForPendingFinalizers.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CalendarWeekRuleFirstDay.exe_6958]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay\CalendarWeekRuleFirstDay.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CalendarWeekRuleFirstFourDayWeek.exe_6959]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek\CalendarWeekRuleFirstFourDayWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CalendarWeekRuleFirstFullWeek.exe_6960]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek\CalendarWeekRuleFirstFullWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharUnicodeInfoGetNumericValue1.exe_6961]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1\CharUnicodeInfoGetNumericValue1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharUnicodeInfoGetNumericValue2.exe_6962]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2\CharUnicodeInfoGetNumericValue2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharUnicodeInfoGetUnicodeCategory1.exe_6963]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1\CharUnicodeInfoGetUnicodeCategory1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharUnicodeInfoGetUnicodeCategory2.exe_6964]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2\CharUnicodeInfoGetUnicodeCategory2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareInfoCompare2.exe_6965]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2\CompareInfoCompare2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareInfoIndexOf2.exe_6966]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2\CompareInfoIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsIgnoreCase.exe_6967]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase\CompareOptionsIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsIgnoreKanaType.exe_6968]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType\CompareOptionsIgnoreKanaType.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsIgnoreNonSpace.exe_6969]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace\CompareOptionsIgnoreNonSpace.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsIgnoreSymbols.exe_6970]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols\CompareOptionsIgnoreSymbols.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsIgnoreWidth.exe_6971]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth\CompareOptionsIgnoreWidth.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsNone.exe_6972]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone\CompareOptionsNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsOrdinal.exe_6973]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal\CompareOptionsOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsOrdinalIgoreCase.exe_6974]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase\CompareOptionsOrdinalIgoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompareOptionsStringSort.exe_6975]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort\CompareOptionsStringSort.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoClone.exe_6976]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone\CultureInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoEnglishName.exe_6977]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName\CultureInfoEnglishName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoEquals.exe_6978]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals\CultureInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoGetCultureInfo2.exe_6979]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2\CultureInfoGetCultureInfo2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoGetHashCode.exe_6980]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode\CultureInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoInvariantCulture.exe_6981]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture\CultureInfoInvariantCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoIsNeutralCulture.exe_6982]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture\CultureInfoIsNeutralCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoName.exe_6983]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName\CultureInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoNativeName.exe_6984]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName\CultureInfoNativeName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoParent.exe_6985]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent\CultureInfoParent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoReadOnly.exe_6986]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly\CultureInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoTextInfo.exe_6987]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo\CultureInfoTextInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoToString.exe_6988]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString\CultureInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureInfoTwoLetterISOLanguageName.exe_6989]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName\CultureInfoTwoLetterISOLanguageName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoClone.exe_6990]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone\DateTimeFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoCurrentInfo.exe_6991]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo\DateTimeFormatInfoCurrentInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoGetAbbreviatedMonthName.exe_6992]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName\DateTimeFormatInfoGetAbbreviatedMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoGetFormat.exe_6993]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat\DateTimeFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoGetInstance.exe_6994]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance\DateTimeFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoGetMonthName.exe_6995]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName\DateTimeFormatInfoGetMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoInvariantInfo.exe_6996]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo\DateTimeFormatInfoInvariantInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoIsReadOnly.exe_6997]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly\DateTimeFormatInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoReadOnly.exe_6998]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly\DateTimeFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoRFC1123Pattern.exe_6999]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern\DateTimeFormatInfoRFC1123Pattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeFormatInfoSortableDateTimePattern.exe_7000]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern\DateTimeFormatInfoSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UniversalSortableDateTimePattern.exe_7001]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern\UniversalSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStyleAllowInnerWhite.exe_7002]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite\DateTimeStyleAllowInnerWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAdjustToUniversal.exe_7003]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal\DateTimeStylesAdjustToUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAllowLeadingWhite.exe_7004]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite\DateTimeStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAllowTrailingWhite.exe_7005]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite\DateTimeStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAllowWhiteSpaces.exe_7006]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces\DateTimeStylesAllowWhiteSpaces.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAssumeLocal.exe_7007]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal\DateTimeStylesAssumeLocal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesAssumeUniversal.exe_7008]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal\DateTimeStylesAssumeUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesNoCurrentDateDefault.exe_7009]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault\DateTimeStylesNoCurrentDateDefault.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesNone.exe_7010]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone\DateTimeStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DateTimeStylesRoundTripKind.exe_7011]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind\DateTimeStylesRoundTripKind.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoClone.exe_7012]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone\NumberFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoCtor.exe_7013]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor\NumberFormatInfoCtor.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoCurrencyDecimalSeparator.exe_7014]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator\NumberFormatInfoCurrencyDecimalSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoCurrencyGroupSeparator.exe_7015]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator\NumberFormatInfoCurrencyGroupSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoGetFormat.exe_7016]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat\NumberFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoGetInstance.exe_7017]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance\NumberFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberFormatInfoReadOnly.exe_7018]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly\NumberFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowCurrencySymbol.exe_7019]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol\NumberStylesAllowCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowDecimalPoint.exe_7020]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint\NumberStylesAllowDecimalPoint.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowExponent.exe_7021]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent\NumberStylesAllowExponent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowHexSpecifier.exe_7022]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier\NumberStylesAllowHexSpecifier.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowLeadingSign.exe_7023]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign\NumberStylesAllowLeadingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowLeadingWhite.exe_7024]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite\NumberStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowParentheses.exe_7025]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses\NumberStylesAllowParentheses.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowThousands.exe_7026]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands\NumberStylesAllowThousands.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowTrailingSign.exe_7027]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign\NumberStylesAllowTrailingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAllowTrailingWhite.exe_7028]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite\NumberStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesAny.exe_7029]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny\NumberStylesAny.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesCurrency.exe_7030]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency\NumberStylesCurrency.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesFloat.exe_7031]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat\NumberStylesFloat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesHexNumber.exe_7032]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber\NumberStylesHexNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesInteger.exe_7033]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger\NumberStylesInteger.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesNone.exe_7034]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone\NumberStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NumberStylesNumber.exe_7035]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber\NumberStylesNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoCurrentRegion.exe_7036]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion\RegionInfoCurrentRegion.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoEquals.exe_7037]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals\RegionInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoGetHashCode.exe_7038]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode\RegionInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoIsMetric.exe_7039]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric\RegionInfoIsMetric.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoISOCurrencySymbol.exe_7040]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol\RegionInfoISOCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoName.exe_7041]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName\RegionInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoToString.exe_7042]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString\RegionInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RegionInfoTwoLetterISORegionName.exe_7043]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName\RegionInfoTwoLetterISORegionName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoCtor1.exe_7044]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1\StringInfoCtor1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoCtor2.exe_7045]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2\StringInfoCtor2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoEquals.exe_7046]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals\StringInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoGetHashCode.exe_7047]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode\StringInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoGetNextTextElement2.exe_7048]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2\StringInfoGetNextTextElement2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoGetTextElementEnumerator1.exe_7049]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1\StringInfoGetTextElementEnumerator1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoGetTextElementEnumerator2.exe_7050]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2\StringInfoGetTextElementEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoLengthInTextElements.exe_7051]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements\StringInfoLengthInTextElements.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoParseCombiningCharacters.exe_7052]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters\StringInfoParseCombiningCharacters.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInfoString.exe_7053]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString\StringInfoString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextElementEnumeratorCurrent.exe_7054]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent\TextElementEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextElementEnumeratorElementIndex.exe_7055]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex\TextElementEnumeratorElementIndex.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextElementEnumeratorGetTextElement.exe_7056]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement\TextElementEnumeratorGetTextElement.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextElementEnumeratorMoveNext.exe_7057]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext\TextElementEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextElementEnumeratorReset.exe_7058]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset\TextElementEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoCultureName.exe_7059]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName\TextInfoCultureName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoEquals.exe_7060]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals\TextInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoGetHashCode.exe_7061]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode\TextInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoIsReadOnly.exe_7062]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly\TextInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoToString.exe_7063]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString\TextInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoToUpper1.exe_7064]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1\TextInfoToUpper1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextInfoToUpper2.exe_7065]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2\TextInfoToUpper2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryClosePunctuation.exe_7066]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation\UnicodeCategoryClosePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryConnectorPunctuation.exe_7067]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation\UnicodeCategoryConnectorPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryControl.exe_7068]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl\UnicodeCategoryControl.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryDashPunctuation.exe_7069]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation\UnicodeCategoryDashPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryDecimalDigitNumber.exe_7070]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber\UnicodeCategoryDecimalDigitNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryEnclosingMark.exe_7071]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark\UnicodeCategoryEnclosingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryFinalQuotePunctuation.exe_7072]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation\UnicodeCategoryFinalQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryFormat.exe_7073]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat\UnicodeCategoryFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryInitialQuotePunctuation.exe_7074]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation\UnicodeCategoryInitialQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryLetterNumber.exe_7075]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber\UnicodeCategoryLetterNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryLineSeparator.exe_7076]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator\UnicodeCategoryLineSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryLowercaseLetter.exe_7077]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter\UnicodeCategoryLowercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryMathSymbol.exe_7078]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol\UnicodeCategoryMathSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryModifierLetter.exe_7079]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter\UnicodeCategoryModifierLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryModifierSymbol.exe_7080]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol\UnicodeCategoryModifierSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryNonSpacingMark.exe_7081]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark\UnicodeCategoryNonSpacingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOpenPunctuation.exe_7082]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation\UnicodeCategoryOpenPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOtherLetter.exe_7083]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter\UnicodeCategoryOtherLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOtherNotAssigned.exe_7084]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned\UnicodeCategoryOtherNotAssigned.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOtherNumber.exe_7085]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber\UnicodeCategoryOtherNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOtherPunctuation.exe_7086]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation\UnicodeCategoryOtherPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryOtherSymbol.exe_7087]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol\UnicodeCategoryOtherSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryParagraphSeparator.exe_7088]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator\UnicodeCategoryParagraphSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryPrivateUse.exe_7089]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse\UnicodeCategoryPrivateUse.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategorySpaceSeparator.exe_7090]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator\UnicodeCategorySpaceSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategorySpacingCombiningMark.exe_7091]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark\UnicodeCategorySpacingCombiningMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategorySurrogate.exe_7092]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate\UnicodeCategorySurrogate.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryTitlecaseLetter.exe_7093]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter\UnicodeCategoryTitlecaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeCategoryUppercaseLetter.exe_7094]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter\UnicodeCategoryUppercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCompareTo1_cti.exe_7095]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo1_cti\GuidCompareTo1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCompareTo2.exe_7096]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo2\GuidCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCtor1.exe_7097]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1\GuidCtor1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCtor1_cti.exe_7098]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1_cti\GuidCtor1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCtor2_cti.exe_7099]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor2_cti\GuidCtor2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor2_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCtor3.exe_7100]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3\GuidCtor3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidCtor3_cti.exe_7101]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3_cti\GuidCtor3_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEmpty.exe_7102]
+RelativePath=CoreMangLib\cti\system\guid\GuidEmpty\GuidEmpty.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEquals1.exe_7103]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1\GuidEquals1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEquals1_cti.exe_7104]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1_cti\GuidEquals1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEquals2.exe_7105]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2\GuidEquals2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEquals2_cti.exe_7106]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2_cti\GuidEquals2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidEquals3.exe_7107]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals3\GuidEquals3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidGetHashCode.exe_7108]
+RelativePath=CoreMangLib\cti\system\guid\GuidGetHashCode\GuidGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidNewGuid.exe_7109]
+RelativePath=CoreMangLib\cti\system\guid\GuidNewGuid\GuidNewGuid.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidNewGuid
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidToByteArray.exe_7110]
+RelativePath=CoreMangLib\cti\system\guid\GuidToByteArray\GuidToByteArray.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToByteArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GuidToString1.exe_7111]
+RelativePath=CoreMangLib\cti\system\guid\GuidToString1\GuidToString1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IComparableCompareTo.exe_7112]
+RelativePath=CoreMangLib\cti\system\icomparable\IComparableCompareTo\IComparableCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable\IComparableCompareTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IComparable_GenericCompareTo.exe_7113]
+RelativePath=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo\IComparable_GenericCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToBoolean.exe_7114]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean\IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToByte.exe_7115]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToByte\IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToChar.exe_7116]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToChar\IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToDateTime.exe_7117]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime\IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToDecimal.exe_7118]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal\IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToDouble.exe_7119]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble\IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToInt16.exe_7120]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16\IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToInt32.exe_7121]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32\IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IConvertibleToInt64.exe_7122]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64\IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IDisposableDispose.exe_7123]
+RelativePath=CoreMangLib\cti\system\idisposable\IDisposableDispose\IDisposableDispose.exe
+WorkingDir=CoreMangLib\cti\system\idisposable\IDisposableDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IFormatableToString.exe_7124]
+RelativePath=CoreMangLib\cti\system\iformatable\IFormatableToString\IFormatableToString.exe
+WorkingDir=CoreMangLib\cti\system\iformatable\IFormatableToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IndexOutOfRangeExceptionctor1.exe_7125]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1\IndexOutOfRangeExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IndexOutOfRangeExceptionctor2.exe_7126]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2\IndexOutOfRangeExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IndexOutOfRangeExceptionctor3.exe_7127]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3\IndexOutOfRangeExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32CompareTo1.exe_7128]
+RelativePath=CoreMangLib\cti\system\int\Int32CompareTo1\Int32CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Equals1.exe_7129]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals1\Int32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Equals2.exe_7130]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals2\Int32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32GetHashCode.exe_7131]
+RelativePath=CoreMangLib\cti\system\int\Int32GetHashCode\Int32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToBoolean.exe_7132]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean\Int32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToByte.exe_7133]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToByte\Int32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToChar.exe_7134]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToChar\Int32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToDateTime.exe_7135]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime\Int32IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToDecimal.exe_7136]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal\Int32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToDouble.exe_7137]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDouble\Int32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToInt16.exe_7138]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt16\Int32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToInt32.exe_7139]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt32\Int32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToInt64.exe_7140]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt64\Int32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToSByte.exe_7141]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSByte\Int32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToSingle.exe_7142]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSingle\Int32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToType.exe_7143]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToType\Int32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToUInt16.exe_7144]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16\Int32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToUInt32.exe_7145]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32\Int32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32IConvertibleToUInt64.exe_7146]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64\Int32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32MaxValue.exe_7147]
+RelativePath=CoreMangLib\cti\system\int\Int32MaxValue\Int32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32MinValue.exe_7148]
+RelativePath=CoreMangLib\cti\system\int\Int32MinValue\Int32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Parse1.exe_7149]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse1\Int32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Parse2.exe_7150]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse2\Int32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Parse3.exe_7151]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse3\Int32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32Parse4.exe_7152]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse4\Int32Parse4.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32ToString3.exe_7153]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString3\Int32ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int32TryParse.exe_7154]
+RelativePath=CoreMangLib\cti\system\int\Int32TryParse\Int32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16Equals1.exe_7155]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals1\Int16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16Equals2.exe_7156]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals2\Int16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16GetHashCode.exe_7157]
+RelativePath=CoreMangLib\cti\system\int16\Int16GetHashCode\Int16GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToBoolean.exe_7158]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean\Int16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToByte.exe_7159]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToByte\Int16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToChar.exe_7160]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToChar\Int16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToDateTime.exe_7161]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime\Int16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToDecimal.exe_7162]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal\Int16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToDouble.exe_7163]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble\Int16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToInt16.exe_7164]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16\Int16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToInt32.exe_7165]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32\Int16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToInt64.exe_7166]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64\Int16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToSByte.exe_7167]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte\Int16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToSingle.exe_7168]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle\Int16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToType.exe_7169]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToType\Int16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToUInt16.exe_7170]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16\Int16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToUInt32.exe_7171]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32\Int16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16IConvertibleToUInt64.exe_7172]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64\Int16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16MaxValue.exe_7173]
+RelativePath=CoreMangLib\cti\system\int16\Int16MaxValue\Int16MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16MinValue.exe_7174]
+RelativePath=CoreMangLib\cti\system\int16\Int16MinValue\Int16MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16Parse1.exe_7175]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse1\Int16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16Parse2.exe_7176]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse2\Int16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16Parse3.exe_7177]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse3\Int16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int16TryParse.exe_7178]
+RelativePath=CoreMangLib\cti\system\int16\Int16TryParse\Int16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64CompareTo1.exe_7179]
+RelativePath=CoreMangLib\cti\system\int64\Int64CompareTo1\Int64CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64Equals1.exe_7180]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals1\Int64Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64Equals2.exe_7181]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals2\Int64Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64GetHashCode.exe_7182]
+RelativePath=CoreMangLib\cti\system\int64\Int64GetHashCode\Int64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToBoolean.exe_7183]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean\Int64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToByte.exe_7184]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToByte\Int64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToChar.exe_7185]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToChar\Int64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToDateTime.exe_7186]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime\Int64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToDecimal.exe_7187]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal\Int64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToDouble.exe_7188]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble\Int64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToInt16.exe_7189]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16\Int64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToInt32.exe_7190]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32\Int64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToInt64.exe_7191]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64\Int64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToSByte.exe_7192]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte\Int64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToSingle.exe_7193]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle\Int64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToType.exe_7194]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToType\Int64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToUInt16.exe_7195]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16\Int64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToUInt32.exe_7196]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32\Int64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64IConvertibleToUInt64.exe_7197]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64\Int64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64MaxValue.exe_7198]
+RelativePath=CoreMangLib\cti\system\int64\Int64MaxValue\Int64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64MinValue.exe_7199]
+RelativePath=CoreMangLib\cti\system\int64\Int64MinValue\Int64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64Parse1.exe_7200]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse1\Int64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64Parse2.exe_7201]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse2\Int64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64Parse3.exe_7202]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse3\Int64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64ToString3.exe_7203]
+RelativePath=CoreMangLib\cti\system\int64\Int64ToString3\Int64ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Int64TryParse.exe_7204]
+RelativePath=CoreMangLib\cti\system\int64\Int64TryParse\Int64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrCtor_Int32.exe_7205]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32\IntPtrCtor_Int32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrCtor_Int64.exe_7206]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64\IntPtrCtor_Int64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrCtor_Void.exe_7207]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Void\IntPtrCtor_Void.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrEquals.exe_7208]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrEquals\IntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrGetHashCode.exe_7209]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrGetHashCode\IntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;ISSUE_3511
+HostStyle=Any
+[IntPtrToInt32.exe_7210]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt32\IntPtrToInt32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrToInt64.exe_7211]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt64\IntPtrToInt64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrToPointer.exe_7212]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToPointer\IntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToPointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrToString.exe_7213]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToString\IntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IntPtrZero.exe_7214]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrZero\IntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidCastExceptionctor1.exe_7215]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1\InvalidCastExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidCastExceptionctor2.exe_7216]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2\InvalidCastExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidCastExceptionctor3.exe_7217]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3\InvalidCastExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidOperationExceptionctor1.exe_7218]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1\InvalidOperationExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidOperationExceptionctor2.exe_7219]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2\InvalidOperationExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidOperationExceptionctor3.exe_7220]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3\InvalidOperationExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidProgramExceptionctor1.exe_7221]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1\InvalidProgramExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidProgramExceptionctor2.exe_7222]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2\InvalidProgramExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InvalidProgramExceptionctor3.exe_7223]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3\InvalidProgramExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[BinaryWriterOutStream_PSC.exe_7224]
+RelativePath=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC\BinaryWriterOutStream_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DirectoryNotFoundExceptionctor1.exe_7225]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1\DirectoryNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DirectoryNotFoundExceptionctor2.exe_7226]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2\DirectoryNotFoundExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[endofstreamexceptionctor1_PSC.exe_7227]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC\endofstreamexceptionctor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[endofstreamexceptionctor2_PSC.exe_7228]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC\endofstreamexceptionctor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAccessEnum.exe_7229]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum\FileAccessEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAccessRead.exe_7230]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessRead\FileAccessRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessRead
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAccessReadWrite.exe_7231]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite\FileAccessReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAccessWrite.exe_7232]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite\FileAccessWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesArchive.exe_7233]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive\FileAttributesArchive.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesCompressed.exe_7234]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed\FileAttributesCompressed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesDeivce.exe_7235]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce\FileAttributesDeivce.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesDirectory.exe_7236]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory\FileAttributesDirectory.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesEncrypted.exe_7237]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted\FileAttributesEncrypted.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesEnum.exe_7238]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum\FileAttributesEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesHidden.exe_7239]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden\FileAttributesHidden.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesNormal.exe_7240]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal\FileAttributesNormal.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesNotContentIndexed.exe_7241]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed\FileAttributesNotContentIndexed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesOffline.exe_7242]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline\FileAttributesOffline.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesReadOnly.exe_7243]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly\FileAttributesReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesReparsePoint.exe_7244]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint\FileAttributesReparsePoint.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesSystem.exe_7245]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem\FileAttributesSystem.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileAttributesTemporary.exe_7246]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary\FileAttributesTemporary.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeAppend.exe_7247]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeAppend\FileModeAppend.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeAppend
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeCreate.exe_7248]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreate\FileModeCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeCreateNew.exe_7249]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreateNew\FileModeCreateNew.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreateNew
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeEnum.exe_7250]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeEnum\FileModeEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeOpen.exe_7251]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpen\FileModeOpen.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeOpenOrCreate.exe_7252]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate\FileModeOpenOrCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileModeTruncate.exe_7253]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeTruncate\FileModeTruncate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeTruncate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionCtor.exe_7254]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor\FileNotFoundExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionctor1.exe_7255]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1\FileNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionCtor2.exe_7256]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2\FileNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionGetMessage.exe_7257]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage\FileNotFoundExceptionGetMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionMessage.exe_7258]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage\FileNotFoundExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileNotFoundExceptionToString.exe_7259]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString\FileNotFoundExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileShareEnum.exe_7260]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareEnum\FileShareEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileShareNone.exe_7261]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareNone\FileShareNone.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileShareRead.exe_7262]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareRead\FileShareRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareRead
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileShareReadWrite.exe_7263]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite\FileShareReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileShareWrite.exe_7264]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareWrite\FileShareWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FileStreamDispose_PSC.exe_7265]
+RelativePath=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC\FileStreamDispose_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IOExceptionctor1.exe_7266]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1\IOExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IOExceptionctor2.exe_7267]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2\IOExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor.exe_7268]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor\MemoryStreamCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor2.exe_7269]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2\MemoryStreamCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor3.exe_7270]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3\MemoryStreamCtor3.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor4.exe_7271]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4\MemoryStreamCtor4.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor5.exe_7272]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5\MemoryStreamCtor5.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor6.exe_7273]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6\MemoryStreamCtor6.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemoryStreamCtor7.exe_7274]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7\MemoryStreamCtor7.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PathTooLongExceptionctor1.exe_7275]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1\PathTooLongExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PathTooLongExceptionctor2.exe_7276]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2\PathTooLongExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SeekOriginBegin.exe_7277]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin\SeekOriginBegin.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SeekOriginCurrent.exe_7278]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent\SeekOriginCurrent.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SeekOriginEnd.exe_7279]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd\SeekOriginEnd.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SeekOriginEnum.exe_7280]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum\SeekOriginEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamDispose1_PSC.exe_7281]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC\StreamDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamDispose2_PSC.exe_7282]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC\StreamDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamNull_PSC.exe_7283]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamNull_PSC\StreamNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamReadTimeOut_PSC.exe_7284]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC\StreamReadTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamWriteTimeOut_PSC.exe_7285]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC\StreamWriteTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StreamReaderNull_PSC.exe_7286]
+RelativePath=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC\StreamReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringWriterEncoding_PSC.exe_7287]
+RelativePath=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC\StringWriterEncoding_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextReaderNull_PSC.exe_7288]
+RelativePath=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC\TextReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TextWriterNull_PSC.exe_7289]
+RelativePath=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC\TextWriterNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs1.exe_7290]
+RelativePath=CoreMangLib\cti\system\math\MathAbs1\MathAbs1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs2.exe_7291]
+RelativePath=CoreMangLib\cti\system\math\MathAbs2\MathAbs2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs3.exe_7292]
+RelativePath=CoreMangLib\cti\system\math\MathAbs3\MathAbs3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs4.exe_7293]
+RelativePath=CoreMangLib\cti\system\math\MathAbs4\MathAbs4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs5.exe_7294]
+RelativePath=CoreMangLib\cti\system\math\MathAbs5\MathAbs5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs6.exe_7295]
+RelativePath=CoreMangLib\cti\system\math\MathAbs6\MathAbs6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAbs7.exe_7296]
+RelativePath=CoreMangLib\cti\system\math\MathAbs7\MathAbs7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAcos.exe_7297]
+RelativePath=CoreMangLib\cti\system\math\MathAcos\MathAcos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAcos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAtan.exe_7298]
+RelativePath=CoreMangLib\cti\system\math\MathAtan\MathAtan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathAtan2.exe_7299]
+RelativePath=CoreMangLib\cti\system\math\MathAtan2\MathAtan2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathCeiling.exe_7300]
+RelativePath=CoreMangLib\cti\system\math\MathCeiling\MathCeiling.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCeiling
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathCos.exe_7301]
+RelativePath=CoreMangLib\cti\system\math\MathCos\MathCos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathCosh.exe_7302]
+RelativePath=CoreMangLib\cti\system\math\MathCosh\MathCosh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCosh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathE.exe_7303]
+RelativePath=CoreMangLib\cti\system\math\MathE\MathE.exe
+WorkingDir=CoreMangLib\cti\system\math\MathE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathExp.exe_7304]
+RelativePath=CoreMangLib\cti\system\math\MathExp\MathExp.exe
+WorkingDir=CoreMangLib\cti\system\math\MathExp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathFloor.exe_7305]
+RelativePath=CoreMangLib\cti\system\math\MathFloor\MathFloor.exe
+WorkingDir=CoreMangLib\cti\system\math\MathFloor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathIEEERemainder.exe_7306]
+RelativePath=CoreMangLib\cti\system\math\MathIEEERemainder\MathIEEERemainder.exe
+WorkingDir=CoreMangLib\cti\system\math\MathIEEERemainder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;DBG_PASS;NEED_TRIAGE
+HostStyle=Any
+[MathLog.exe_7307]
+RelativePath=CoreMangLib\cti\system\math\MathLog\MathLog.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathLog10.exe_7308]
+RelativePath=CoreMangLib\cti\system\math\MathLog10\MathLog10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax1.exe_7309]
+RelativePath=CoreMangLib\cti\system\math\MathMax1\MathMax1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax10.exe_7310]
+RelativePath=CoreMangLib\cti\system\math\MathMax10\MathMax10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax11.exe_7311]
+RelativePath=CoreMangLib\cti\system\math\MathMax11\MathMax11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax2.exe_7312]
+RelativePath=CoreMangLib\cti\system\math\MathMax2\MathMax2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax3.exe_7313]
+RelativePath=CoreMangLib\cti\system\math\MathMax3\MathMax3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax4.exe_7314]
+RelativePath=CoreMangLib\cti\system\math\MathMax4\MathMax4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax5.exe_7315]
+RelativePath=CoreMangLib\cti\system\math\MathMax5\MathMax5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax6.exe_7316]
+RelativePath=CoreMangLib\cti\system\math\MathMax6\MathMax6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax7.exe_7317]
+RelativePath=CoreMangLib\cti\system\math\MathMax7\MathMax7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax8.exe_7318]
+RelativePath=CoreMangLib\cti\system\math\MathMax8\MathMax8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMax9.exe_7319]
+RelativePath=CoreMangLib\cti\system\math\MathMax9\MathMax9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin1.exe_7320]
+RelativePath=CoreMangLib\cti\system\math\MathMin1\MathMin1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin10.exe_7321]
+RelativePath=CoreMangLib\cti\system\math\MathMin10\MathMin10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin11.exe_7322]
+RelativePath=CoreMangLib\cti\system\math\MathMin11\MathMin11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin2.exe_7323]
+RelativePath=CoreMangLib\cti\system\math\MathMin2\MathMin2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin3.exe_7324]
+RelativePath=CoreMangLib\cti\system\math\MathMin3\MathMin3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin4.exe_7325]
+RelativePath=CoreMangLib\cti\system\math\MathMin4\MathMin4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin5.exe_7326]
+RelativePath=CoreMangLib\cti\system\math\MathMin5\MathMin5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin6.exe_7327]
+RelativePath=CoreMangLib\cti\system\math\MathMin6\MathMin6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin7.exe_7328]
+RelativePath=CoreMangLib\cti\system\math\MathMin7\MathMin7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin8.exe_7329]
+RelativePath=CoreMangLib\cti\system\math\MathMin8\MathMin8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathMin9.exe_7330]
+RelativePath=CoreMangLib\cti\system\math\MathMin9\MathMin9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathPI.exe_7331]
+RelativePath=CoreMangLib\cti\system\math\MathPI\MathPI.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathPow.exe_7332]
+RelativePath=CoreMangLib\cti\system\math\MathPow\MathPow.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[mathRound1.exe_7333]
+RelativePath=CoreMangLib\cti\system\math\mathRound1\mathRound1.exe
+WorkingDir=CoreMangLib\cti\system\math\mathRound1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathRound2.exe_7334]
+RelativePath=CoreMangLib\cti\system\math\MathRound2\MathRound2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
+HostStyle=Any
+[MathRound3.exe_7335]
+RelativePath=CoreMangLib\cti\system\math\MathRound3\MathRound3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathRound4.exe_7336]
+RelativePath=CoreMangLib\cti\system\math\MathRound4\MathRound4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
+HostStyle=Any
+[MathSign1.exe_7337]
+RelativePath=CoreMangLib\cti\system\math\MathSign1\MathSign1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathSign2.exe_7338]
+RelativePath=CoreMangLib\cti\system\math\MathSign2\MathSign2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[MathSign3.exe_7339]
+RelativePath=CoreMangLib\cti\system\math\MathSign3\MathSign3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathSign4.exe_7340]
+RelativePath=CoreMangLib\cti\system\math\MathSign4\MathSign4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathSign5.exe_7341]
+RelativePath=CoreMangLib\cti\system\math\MathSign5\MathSign5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathSign6.exe_7342]
+RelativePath=CoreMangLib\cti\system\math\MathSign6\MathSign6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathSign7.exe_7343]
+RelativePath=CoreMangLib\cti\system\math\MathSign7\MathSign7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[MathSin.exe_7344]
+RelativePath=CoreMangLib\cti\system\math\MathSin\MathSin.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[MathSinh.exe_7345]
+RelativePath=CoreMangLib\cti\system\math\MathSinh\MathSinh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSinh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3105
+HostStyle=Any
+[MathSqrt.exe_7346]
+RelativePath=CoreMangLib\cti\system\math\MathSqrt\MathSqrt.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSqrt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathTan.exe_7347]
+RelativePath=CoreMangLib\cti\system\math\MathTan\MathTan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTan
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MathTanh.exe_7348]
+RelativePath=CoreMangLib\cti\system\math\MathTanh\MathTanh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTanh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemberAccessExceptionCtor1.exe_7349]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1\MemberAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemberAccessExceptionCtor2.exe_7350]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2\MemberAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MemberAccessExceptionCtor3.exe_7351]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3\MemberAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAccessExceptionCtor1.exe_7352]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1\MethodAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAccessExceptionCtor2.exe_7353]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2\MethodAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAccessExceptionCtor3.exe_7354]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3\MethodAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingFieldExceptionCtor1.exe_7355]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1\MissingFieldExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingFieldExceptionCtor2.exe_7356]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2\MissingFieldExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingFieldExceptionCtor3.exe_7357]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3\MissingFieldExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingFieldExceptionMessage.exe_7358]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage\MissingFieldExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMemberExceptionCtor1.exe_7359]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1\MissingMemberExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMemberExceptionCtor2.exe_7360]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2\MissingMemberExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMemberExceptionCtor3.exe_7361]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3\MissingMemberExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMemberExceptionMessage.exe_7362]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage\MissingMemberExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMethodExceptionCtor1.exe_7363]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1\MissingMethodExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMethodExceptionCtor2.exe_7364]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2\MissingMethodExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMethodExceptionCtor3.exe_7365]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3\MissingMethodExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingMethodExceptionMessage.exe_7366]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage\MissingMethodExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MulticastDelegateCombineImpl.exe_7367]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl\MulticastDelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MulticastDelegateEquals.exe_7368]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals\MulticastDelegateEquals.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MulticastDelegateGetHashCode.exe_7369]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode\MulticastDelegateGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MulticastDelegateGetInvocationList.exe_7370]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList\MulticastDelegateGetInvocationList.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotImplementedExceptionCtor1.exe_7371]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1\NotImplementedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotImplementedExceptionCtor2.exe_7372]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2\NotImplementedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotImplementedExceptionCtor3.exe_7373]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3\NotImplementedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotSupportedExceptionCtor1.exe_7374]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1\NotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotSupportedExceptionCtor2.exe_7375]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2\NotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NotSupportedExceptionCtor3.exe_7376]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3\NotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableCompare.exe_7377]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCompare\NullableCompare.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableCtor.exe_7378]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCtor\NullableCtor.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableEquals.exe_7379]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals\NullableEquals.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableEquals2.exe_7380]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals2\NullableEquals2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableGetHashCode.exe_7381]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetHashCode\NullableGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableGetUnderlyingType.exe_7382]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType\NullableGetUnderlyingType.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableGetValueOrDefault1.exe_7383]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1\NullableGetValueOrDefault1.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableGetValueOrDefault2.exe_7384]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2\NullableGetValueOrDefault2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableHasValue.exe_7385]
+RelativePath=CoreMangLib\cti\system\nullable\NullableHasValue\NullableHasValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableHasValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableToString.exe_7386]
+RelativePath=CoreMangLib\cti\system\nullable\NullableToString\NullableToString.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullableValue.exe_7387]
+RelativePath=CoreMangLib\cti\system\nullable\NullableValue\NullableValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NullReferenceExceptionCtor1.exe_7388]
+RelativePath=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1\NullReferenceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectCtor.exe_7389]
+RelativePath=CoreMangLib\cti\system\object\ObjectCtor\ObjectCtor.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectEquals1.exe_7390]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals1\ObjectEquals1.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectEquals2.exe_7391]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals2\ObjectEquals2.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectFinalize.exe_7392]
+RelativePath=CoreMangLib\cti\system\object\ObjectFinalize\ObjectFinalize.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectGetHashCode.exe_7393]
+RelativePath=CoreMangLib\cti\system\object\ObjectGetHashCode\ObjectGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectMemberwiseClone.exe_7394]
+RelativePath=CoreMangLib\cti\system\object\ObjectMemberwiseClone\ObjectMemberwiseClone.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectMemberwiseClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectReferenceEquals.exe_7395]
+RelativePath=CoreMangLib\cti\system\object\ObjectReferenceEquals\ObjectReferenceEquals.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectReferenceEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectToString.exe_7396]
+RelativePath=CoreMangLib\cti\system\object\ObjectToString\ObjectToString.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectDisposedExceptionMessage.exe_7397]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage\ObjectDisposedExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObjectDisposedExceptionObjectName.exe_7398]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName\ObjectDisposedExceptionObjectName.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObsoleteAttributeCtor1.exe_7399]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1\ObsoleteAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObsoleteAttributeCtor2.exe_7400]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2\ObsoleteAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObsoleteAttributeCtor3.exe_7401]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3\ObsoleteAttributeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObsoleteAttributeIsError.exe_7402]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError\ObsoleteAttributeIsError.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ObsoleteAttributeMessage.exe_7403]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage\ObsoleteAttributeMessage.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OutOfMemoryExceptionCtor1.exe_7404]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1\OutOfMemoryExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OutOfMemoryExceptionCtor2.exe_7405]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2\OutOfMemoryExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OutOfMemoryExceptionCtor3.exe_7406]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3\OutOfMemoryExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OverflowExceptionCtor1.exe_7407]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1\OverflowExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OverflowExceptionCtor2.exe_7408]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2\OverflowExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OverflowExceptionCtor3.exe_7409]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3\OverflowExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParamArrayAttributeCtor.exe_7410]
+RelativePath=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor\ParamArrayAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor1.exe_7411]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1\PlatformNotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor2.exe_7412]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2\PlatformNotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor3.exe_7413]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3\PlatformNotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PredicateBeginInvoke.exe_7414]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateBeginInvoke\PredicateBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PredicateEndInvoke.exe_7415]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateEndInvoke\PredicateEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PredicateInvoke.exe_7416]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateInvoke\PredicateInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomCtor1.exe_7417]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor1\RandomCtor1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomCtor2.exe_7418]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor2\RandomCtor2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomNext1.exe_7419]
+RelativePath=CoreMangLib\cti\system\random\RandomNext1\RandomNext1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomNext2.exe_7420]
+RelativePath=CoreMangLib\cti\system\random\RandomNext2\RandomNext2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomNext3.exe_7421]
+RelativePath=CoreMangLib\cti\system\random\RandomNext3\RandomNext3.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomNextBytes.exe_7422]
+RelativePath=CoreMangLib\cti\system\random\RandomNextBytes\RandomNextBytes.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextBytes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomNextDouble.exe_7423]
+RelativePath=CoreMangLib\cti\system\random\RandomNextDouble\RandomNextDouble.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RandomSample.exe_7424]
+RelativePath=CoreMangLib\cti\system\random\RandomSample\RandomSample.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomSample
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RankExceptionCtor1.exe_7425]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor1\RankExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RankExceptionCtor2.exe_7426]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor2\RankExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RankExceptionCtor3.exe_7427]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor3\RankExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AmbiguousMatchExceptionCtor1.exe_7428]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1\AmbiguousMatchExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AmbiguousMatchExceptionCtor2.exe_7429]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2\AmbiguousMatchExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AmbiguousMatchExceptionCtor3.exe_7430]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3\AmbiguousMatchExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyConfigurationAttributeConfiguration.exe_7431]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration\AssemblyConfigurationAttributeConfiguration.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyConfigurationAttributeCtor.exe_7432]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor\AssemblyConfigurationAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDefaultAliasAttributeCtor.exe_7433]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor\AssemblyDefaultAliasAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDefaultAliasAttributeDefaultAlias.exe_7434]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias\AssemblyDefaultAliasAttributeDefaultAlias.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDelaySignAttributeCtor.exe_7435]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor\AssemblyDelaySignAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDelaySignAttributeDelaySign.exe_7436]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign\AssemblyDelaySignAttributeDelaySign.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDescriptionAttributeCtor.exe_7437]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor\AssemblyDescriptionAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyDescriptionAttributeDescription.exe_7438]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription\AssemblyDescriptionAttributeDescription.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyKeyFileAttributeCtor.exe_7439]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor\AssemblyKeyFileAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyKeyFileAttributeKeyFile.exe_7440]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile\AssemblyKeyFileAttributeKeyFile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyKeyNameAttributeCtor.exe_7441]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor\AssemblyKeyNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyKeyNameAttributeKeyName.exe_7442]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName\AssemblyKeyNameAttributeKeyName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameGetPublicKey.exe_7443]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey\AssemblyNameGetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameGetPublicKeyToken.exe_7444]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken\AssemblyNameGetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameSetPublicKey.exe_7445]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey\AssemblyNameSetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameSetPublicKeyToken.exe_7446]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken\AssemblyNameSetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameVersion.exe_7447]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion\AssemblyNameVersion.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameFlagsNone.exe_7448]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone\AssemblyNameFlagsNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameFlagsPublicKey.exe_7449]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey\AssemblyNameFlagsPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyNameFlagsRetargetable.exe_7450]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable\AssemblyNameFlagsRetargetable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyTitleAttributeCtor.exe_7451]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor\AssemblyTitleAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyTitleAttributeTitle.exe_7452]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle\AssemblyTitleAttributeTitle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionsAny.exe_7453]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny\CallingConventionsAny.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionsExplicitThis.exe_7454]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis\CallingConventionsExplicitThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionsHasThis.exe_7455]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis\CallingConventionsHasThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionsStandard.exe_7456]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard\CallingConventionsStandard.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionsVarArgs.exe_7457]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs\CallingConventionsVarArgs.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConstructorInfoConstructorName.exe_7458]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName\ConstructorInfoConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ConstructorInfoTypeConstructorName.exe_7459]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName\ConstructorInfoTypeConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DefaultMemberAttributeCtor.exe_7460]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor\DefaultMemberAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DefaultMemberAttributeMemberName.exe_7461]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName\DefaultMemberAttributeMemberName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlBranch.exe_7462]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch\FlowControlBranch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlCall.exe_7463]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall\FlowControlCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlCond_Branch.exe_7464]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch\FlowControlCond_Branch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlMeta.exe_7465]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta\FlowControlMeta.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlNext.exe_7466]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext\FlowControlNext.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlReturn.exe_7467]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn\FlowControlReturn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FlowControlThrow.exe_7468]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow\FlowControlThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeEquals1.exe_7469]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1\OpCodeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeEquals2.exe_7470]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2\OpCodeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeFlowControl.exe_7471]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl\OpCodeFlowControl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeGetHashCode.exe_7472]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode\OpCodeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeName.exe_7473]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName\OpCodeName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeOpCodeType.exe_7474]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType\OpCodeOpCodeType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeOperandType.exe_7475]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType\OpCodeOperandType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesAdd_Ovf.exe_7476]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf\OpCodesAdd_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesAdd_Ovf_Un.exe_7477]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un\OpCodesAdd_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesAnd.exe_7478]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd\OpCodesAnd.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesArglist.exe_7479]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist\OpCodesArglist.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBeq.exe_7480]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq\OpCodesBeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBeq_S.exe_7481]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S\OpCodesBeq_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBge.exe_7482]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge\OpCodesBge.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBge_S.exe_7483]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S\OpCodesBge_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBge_Un.exe_7484]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un\OpCodesBge_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBge_Un_S.exe_7485]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S\OpCodesBge_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBgt.exe_7486]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt\OpCodesBgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBgt_S.exe_7487]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S\OpCodesBgt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBgt_Un.exe_7488]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un\OpCodesBgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBgt_Un_S.exe_7489]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S\OpCodesBgt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBle.exe_7490]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle\OpCodesBle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBle_S.exe_7491]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S\OpCodesBle_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBle_Un.exe_7492]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un\OpCodesBle_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBle_Un_S.exe_7493]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S\OpCodesBle_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBlt.exe_7494]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt\OpCodesBlt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBlt_S.exe_7495]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S\OpCodesBlt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBlt_Un.exe_7496]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un\OpCodesBlt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBlt_Un_S.exe_7497]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S\OpCodesBlt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBne_Un.exe_7498]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un\OpCodesBne_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBne_Un_S.exe_7499]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S\OpCodesBne_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBox.exe_7500]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox\OpCodesBox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBr.exe_7501]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr\OpCodesBr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBreak.exe_7502]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak\OpCodesBreak.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBrfalse.exe_7503]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse\OpCodesBrfalse.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBrfalse_S.exe_7504]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S\OpCodesBrfalse_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBrtrue.exe_7505]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue\OpCodesBrtrue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBrtrue_S.exe_7506]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S\OpCodesBrtrue_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesBr_S.exe_7507]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S\OpCodesBr_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCall.exe_7508]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall\OpCodesCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCalli.exe_7509]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli\OpCodesCalli.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCallvirt.exe_7510]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt\OpCodesCallvirt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCastclass.exe_7511]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass\OpCodesCastclass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCeq.exe_7512]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq\OpCodesCeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCgt.exe_7513]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt\OpCodesCgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCgt_Un.exe_7514]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un\OpCodesCgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCkfinite.exe_7515]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite\OpCodesCkfinite.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesClt.exe_7516]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt\OpCodesClt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesClt_Un.exe_7517]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un\OpCodesClt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConstrained.exe_7518]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained\OpCodesConstrained.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_I.exe_7519]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I\OpCodesConv_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_I1.exe_7520]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1\OpCodesConv_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_I2.exe_7521]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2\OpCodesConv_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_I4.exe_7522]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4\OpCodesConv_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_I8.exe_7523]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8\OpCodesConv_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I.exe_7524]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I\OpCodesConv_Ovf_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I1.exe_7525]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1\OpCodesConv_Ovf_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I1_Un.exe_7526]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un\OpCodesConv_Ovf_I1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I2.exe_7527]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2\OpCodesConv_Ovf_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I2_Un.exe_7528]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un\OpCodesConv_Ovf_I2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I4.exe_7529]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4\OpCodesConv_Ovf_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I4_Un.exe_7530]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un\OpCodesConv_Ovf_I4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I8.exe_7531]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8\OpCodesConv_Ovf_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I8_Un.exe_7532]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un\OpCodesConv_Ovf_I8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_I_Un.exe_7533]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un\OpCodesConv_Ovf_I_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U.exe_7534]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U\OpCodesConv_Ovf_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U1.exe_7535]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1\OpCodesConv_Ovf_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U1_Un.exe_7536]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un\OpCodesConv_Ovf_U1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U2.exe_7537]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2\OpCodesConv_Ovf_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U2_Un.exe_7538]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un\OpCodesConv_Ovf_U2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U4.exe_7539]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4\OpCodesConv_Ovf_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U4_Un.exe_7540]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un\OpCodesConv_Ovf_U4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U8.exe_7541]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8\OpCodesConv_Ovf_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U8_Un.exe_7542]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un\OpCodesConv_Ovf_U8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_Ovf_U_Un.exe_7543]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un\OpCodesConv_Ovf_U_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_R4.exe_7544]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4\OpCodesConv_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_R8.exe_7545]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8\OpCodesConv_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_R_Un.exe_7546]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un\OpCodesConv_R_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_U.exe_7547]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U\OpCodesConv_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_U1.exe_7548]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1\OpCodesConv_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_U2.exe_7549]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2\OpCodesConv_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_U4.exe_7550]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4\OpCodesConv_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesConv_U8.exe_7551]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8\OpCodesConv_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCpblk.exe_7552]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk\OpCodesCpblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesCpobj.exe_7553]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj\OpCodesCpobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesDiv.exe_7554]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv\OpCodesDiv.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesDiv_Un.exe_7555]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un\OpCodesDiv_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesDup.exe_7556]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup\OpCodesDup.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesEndfilter.exe_7557]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter\OpCodesEndfilter.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesEndfinally.exe_7558]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally\OpCodesEndfinally.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesInitblk.exe_7559]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk\OpCodesInitblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesInitobj.exe_7560]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj\OpCodesInitobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesIsinst.exe_7561]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst\OpCodesIsinst.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeSize.exe_7562]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize\OpCodeSize.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesJmp.exe_7563]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp\OpCodesJmp.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg.exe_7564]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg\OpCodesLdarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarga.exe_7565]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga\OpCodesLdarga.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarga_S.exe_7566]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S\OpCodesLdarga_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg_0.exe_7567]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0\OpCodesLdarg_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg_1.exe_7568]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1\OpCodesLdarg_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg_2.exe_7569]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2\OpCodesLdarg_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg_3.exe_7570]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3\OpCodesLdarg_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdarg_S.exe_7571]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S\OpCodesLdarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4.exe_7572]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4\OpCodesLdc_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_0.exe_7573]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0\OpCodesLdc_I4_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_1.exe_7574]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1\OpCodesLdc_I4_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_2.exe_7575]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2\OpCodesLdc_I4_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_3.exe_7576]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3\OpCodesLdc_I4_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_4.exe_7577]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4\OpCodesLdc_I4_4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_5.exe_7578]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5\OpCodesLdc_I4_5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_6.exe_7579]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6\OpCodesLdc_I4_6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_7.exe_7580]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7\OpCodesLdc_I4_7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_8.exe_7581]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8\OpCodesLdc_I4_8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_M1.exe_7582]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1\OpCodesLdc_I4_M1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I4_S.exe_7583]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S\OpCodesLdc_I4_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_I8.exe_7584]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8\OpCodesLdc_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_R4.exe_7585]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4\OpCodesLdc_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdc_R8.exe_7586]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8\OpCodesLdc_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem.exe_7587]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem\OpCodesLdelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelema.exe_7588]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema\OpCodesLdelema.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_I.exe_7589]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I\OpCodesLdelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_I1.exe_7590]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1\OpCodesLdelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_I2.exe_7591]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2\OpCodesLdelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_I4.exe_7592]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4\OpCodesLdelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_I8.exe_7593]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8\OpCodesLdelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_R4.exe_7594]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4\OpCodesLdelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_R8.exe_7595]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8\OpCodesLdelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_Ref.exe_7596]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref\OpCodesLdelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_U1.exe_7597]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1\OpCodesLdelem_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_U2.exe_7598]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2\OpCodesLdelem_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdelem_U4.exe_7599]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4\OpCodesLdelem_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdfld.exe_7600]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld\OpCodesLdfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdflda.exe_7601]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda\OpCodesLdflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdftn.exe_7602]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn\OpCodesLdftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_I.exe_7603]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I\OpCodesLdind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_I1.exe_7604]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1\OpCodesLdind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_I2.exe_7605]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2\OpCodesLdind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_I4.exe_7606]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4\OpCodesLdind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_I8.exe_7607]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8\OpCodesLdind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_R4.exe_7608]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4\OpCodesLdind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_R8.exe_7609]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8\OpCodesLdind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_Ref.exe_7610]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref\OpCodesLdind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_U1.exe_7611]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1\OpCodesLdind_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_U2.exe_7612]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2\OpCodesLdind_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdind_U4.exe_7613]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4\OpCodesLdind_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdlen.exe_7614]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen\OpCodesLdlen.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc.exe_7615]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc\OpCodesLdloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloca.exe_7616]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca\OpCodesLdloca.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloca_S.exe_7617]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S\OpCodesLdloca_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc_0.exe_7618]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0\OpCodesLdloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc_1.exe_7619]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1\OpCodesLdloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc_2.exe_7620]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2\OpCodesLdloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc_3.exe_7621]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3\OpCodesLdloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdloc_S.exe_7622]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S\OpCodesLdloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdnull.exe_7623]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull\OpCodesLdnull.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdobj.exe_7624]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj\OpCodesLdobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdsfld.exe_7625]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld\OpCodesLdsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdsflda.exe_7626]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda\OpCodesLdsflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdstr.exe_7627]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr\OpCodesLdstr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdtoken.exe_7628]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken\OpCodesLdtoken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLdvirtftn.exe_7629]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn\OpCodesLdvirtftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLeave.exe_7630]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave\OpCodesLeave.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLeave_S.exe_7631]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S\OpCodesLeave_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesLocalloc.exe_7632]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc\OpCodesLocalloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesMkrefany.exe_7633]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany\OpCodesMkrefany.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesMul.exe_7634]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul\OpCodesMul.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesMul_Ovf.exe_7635]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf\OpCodesMul_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesMul_Ovf_Un.exe_7636]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un\OpCodesMul_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesNeg.exe_7637]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg\OpCodesNeg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesNewarr.exe_7638]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr\OpCodesNewarr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesNewobj.exe_7639]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj\OpCodesNewobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesNop.exe_7640]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop\OpCodesNop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesNot.exe_7641]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot\OpCodesNot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesOr.exe_7642]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr\OpCodesOr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPop.exe_7643]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop\OpCodesPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix1.exe_7644]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1\OpCodesPrefix1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix2.exe_7645]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2\OpCodesPrefix2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix3.exe_7646]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3\OpCodesPrefix3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix4.exe_7647]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4\OpCodesPrefix4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix5.exe_7648]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5\OpCodesPrefix5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix6.exe_7649]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6\OpCodesPrefix6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefix7.exe_7650]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7\OpCodesPrefix7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesPrefixref.exe_7651]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref\OpCodesPrefixref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesReadonly.exe_7652]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly\OpCodesReadonly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRefanytype.exe_7653]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype\OpCodesRefanytype.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRefanyval.exe_7654]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval\OpCodesRefanyval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRem.exe_7655]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem\OpCodesRem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRem_Un.exe_7656]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un\OpCodesRem_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRet.exe_7657]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet\OpCodesRet.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesRethrow.exe_7658]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow\OpCodesRethrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesShl.exe_7659]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl\OpCodesShl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesShr.exe_7660]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr\OpCodesShr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesShr_Un.exe_7661]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un\OpCodesShr_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesSizeof.exe_7662]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof\OpCodesSizeof.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStarg.exe_7663]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg\OpCodesStarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStarg_S.exe_7664]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S\OpCodesStarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem.exe_7665]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem\OpCodesStelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_I.exe_7666]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I\OpCodesStelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_I1.exe_7667]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1\OpCodesStelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_I2.exe_7668]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2\OpCodesStelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_I4.exe_7669]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4\OpCodesStelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_I8.exe_7670]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8\OpCodesStelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_R4.exe_7671]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4\OpCodesStelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_R8.exe_7672]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8\OpCodesStelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStelem_Ref.exe_7673]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref\OpCodesStelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStfld.exe_7674]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld\OpCodesStfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_I.exe_7675]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I\OpCodesStind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_I1.exe_7676]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1\OpCodesStind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_I2.exe_7677]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2\OpCodesStind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_I4.exe_7678]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4\OpCodesStind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_I8.exe_7679]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8\OpCodesStind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_R4.exe_7680]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4\OpCodesStind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_R8.exe_7681]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8\OpCodesStind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStind_Ref.exe_7682]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref\OpCodesStind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc.exe_7683]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc\OpCodesStloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc_0.exe_7684]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0\OpCodesStloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc_1.exe_7685]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1\OpCodesStloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc_2.exe_7686]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2\OpCodesStloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc_3.exe_7687]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3\OpCodesStloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStloc_S.exe_7688]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S\OpCodesStloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStobj.exe_7689]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj\OpCodesStobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesStsfld.exe_7690]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld\OpCodesStsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesSub.exe_7691]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub\OpCodesSub.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesSub_Ovf.exe_7692]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf\OpCodesSub_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesSub_Ovf_Un.exe_7693]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un\OpCodesSub_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesSwitch.exe_7694]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch\OpCodesSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeStackBehaviourPop.exe_7695]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop\OpCodeStackBehaviourPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeStackBehaviourPush.exe_7696]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush\OpCodeStackBehaviourPush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesTailcall.exe_7697]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall\OpCodesTailcall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesTakesSingleByteArgument.exe_7698]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument\OpCodesTakesSingleByteArgument.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesThrow.exe_7699]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow\OpCodesThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesUnaligned.exe_7700]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned\OpCodesUnaligned.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesUnbox.exe_7701]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox\OpCodesUnbox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesUnbox_Any.exe_7702]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any\OpCodesUnbox_Any.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesVolatile.exe_7703]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile\OpCodesVolatile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodesXor.exe_7704]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor\OpCodesXor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeToString.exe_7705]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString\OpCodeToString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeValue.exe_7706]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue\OpCodeValue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeTypeMacro.exe_7707]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro\OpCodeTypeMacro.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeTypeNternal.exe_7708]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal\OpCodeTypeNternal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeTypeObjmodel.exe_7709]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel\OpCodeTypeObjmodel.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeTypePrefix.exe_7710]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix\OpCodeTypePrefix.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OpCodeTypePrimitive.exe_7711]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive\OpCodeTypePrimitive.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineBrTarget.exe_7712]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget\OperandTypeInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineField.exe_7713]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField\OperandTypeInlineField.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineI.exe_7714]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI\OperandTypeInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineI8.exe_7715]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8\OperandTypeInlineI8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineMethod.exe_7716]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod\OperandTypeInlineMethod.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineNone.exe_7717]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone\OperandTypeInlineNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineR.exe_7718]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR\OperandTypeInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineSig.exe_7719]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig\OperandTypeInlineSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineString.exe_7720]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString\OperandTypeInlineString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineSwitch.exe_7721]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch\OperandTypeInlineSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineTok.exe_7722]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok\OperandTypeInlineTok.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineType.exe_7723]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType\OperandTypeInlineType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeInlineVar.exe_7724]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar\OperandTypeInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeShortInlineBrTarget.exe_7725]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget\OperandTypeShortInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeShortInlineI.exe_7726]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI\OperandTypeShortInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeShortInlineR.exe_7727]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR\OperandTypeShortInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OperandTypeShortInlineVar.exe_7728]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar\OperandTypeShortInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSize16.exe_7729]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16\PackingSize16.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSize2.exe_7730]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2\PackingSize2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSize4.exe_7731]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4\PackingSize4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeSize1.exe_7732]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1\PackingSizeSize1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeSize128.exe_7733]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128\PackingSizeSize128.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeSize32.exe_7734]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32\PackingSizeSize32.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeSize64.exe_7735]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64\PackingSizeSize64.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeSize8.exe_7736]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8\PackingSizeSize8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PackingSizeUnspecified.exe_7737]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified\PackingSizeUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPop0.exe_7738]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0\StackBehaviourPop0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPop1.exe_7739]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1\StackBehaviourPop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPop1_pop1.exe_7740]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1\StackBehaviourPop1_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi.exe_7741]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi\StackBehaviourPopi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_pop1.exe_7742]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1\StackBehaviourPopi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_popi.exe_7743]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi\StackBehaviourPopi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_popi8.exe_7744]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8\StackBehaviourPopi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_popi_popi.exe_7745]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi\StackBehaviourPopi_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_popr4.exe_7746]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4\StackBehaviourPopi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopi_popr8.exe_7747]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8\StackBehaviourPopi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref.exe_7748]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref\StackBehaviourPopref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_pop1.exe_7749]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1\StackBehaviourPopref_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi.exe_7750]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi\StackBehaviourPopref_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_pop1.exe_7751]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1\StackBehaviourPopref_popi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_popi.exe_7752]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi\StackBehaviourPopref_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_popi8.exe_7753]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8\StackBehaviourPopref_popi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_popr4.exe_7754]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4\StackBehaviourPopref_popi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_popr8.exe_7755]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8\StackBehaviourPopref_popi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPopref_popi_popref.exe_7756]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref\StackBehaviourPopref_popi_popref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPush0.exe_7757]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0\StackBehaviourPush0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPush1.exe_7758]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1\StackBehaviourPush1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPush1_push1.exe_7759]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1\StackBehaviourPush1_push1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPushi.exe_7760]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi\StackBehaviourPushi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPushi8.exe_7761]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8\StackBehaviourPushi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPushr4.exe_7762]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4\StackBehaviourPushr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPushr8.exe_7763]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8\StackBehaviourPushr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourPushref.exe_7764]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref\StackBehaviourPushref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourVarpop.exe_7765]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop\StackBehaviourVarpop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StackBehaviourVarpush.exe_7766]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush\StackBehaviourVarpush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventAttributesNone.exe_7767]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone\EventAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventAttributesRTSpecialName.exe_7768]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName\EventAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EventAttributesSpecialName.exe_7769]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName\EventAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesAssembly.exe_7770]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly\FieldAttributesAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesFamANDAssem.exe_7771]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem\FieldAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesFamily.exe_7772]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily\FieldAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesFamORAssem.exe_7773]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem\FieldAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesFieldAccessMask.exe_7774]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask\FieldAttributesFieldAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesHasDefault.exe_7775]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault\FieldAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesHasFieldRVA.exe_7776]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA\FieldAttributesHasFieldRVA.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesInitOnly.exe_7777]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly\FieldAttributesInitOnly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesLiteral.exe_7778]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral\FieldAttributesLiteral.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesNotSerialized.exe_7779]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized\FieldAttributesNotSerialized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesPinvokeImpl.exe_7780]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl\FieldAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesPrivate.exe_7781]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate\FieldAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesPrivateScope.exe_7782]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope\FieldAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesPublic.exe_7783]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic\FieldAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesRTSpecialName.exe_7784]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName\FieldAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesSpecialName.exe_7785]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName\FieldAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldAttributesStatic.exe_7786]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic\FieldAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesAbstract.exe_7787]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract\MethodAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesFamANDAssem.exe_7788]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem\MethodAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesFamily.exe_7789]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily\MethodAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesFamORAssem.exe_7790]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem\MethodAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesFinal.exe_7791]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal\MethodAttributesFinal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesHasSecurity.exe_7792]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity\MethodAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesHideBySig.exe_7793]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig\MethodAttributesHideBySig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesMemberAccessMask.exe_7794]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask\MethodAttributesMemberAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesNewSlot.exe_7795]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot\MethodAttributesNewSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesPinvokeImpl.exe_7796]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl\MethodAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesPrivate.exe_7797]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate\MethodAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesPrivateScope.exe_7798]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope\MethodAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesPublic.exe_7799]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic\MethodAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesRequireSecObject.exe_7800]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject\MethodAttributesRequireSecObject.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesReuseSlot.exe_7801]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot\MethodAttributesReuseSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesRTSpecialName.exe_7802]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName\MethodAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesSpecialName.exe_7803]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName\MethodAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesStatic.exe_7804]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic\MethodAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesUnmanagedExport.exe_7805]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport\MethodAttributesUnmanagedExport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesVirtual.exe_7806]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual\MethodAttributesVirtual.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodAttributesVtableLayoutMask.exe_7807]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask\MethodAttributesVtableLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesCodeTypeMask.exe_7808]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask\MethodImplAttributesCodeTypeMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesForwardRef.exe_7809]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef\MethodImplAttributesForwardRef.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesIL.exe_7810]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL\MethodImplAttributesIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesInternalCall.exe_7811]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall\MethodImplAttributesInternalCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesManaged.exe_7812]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged\MethodImplAttributesManaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesManagedMask.exe_7813]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask\MethodImplAttributesManagedMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesNative.exe_7814]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative\MethodImplAttributesNative.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesNoInlining.exe_7815]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining\MethodImplAttributesNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesOPTIL.exe_7816]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL\MethodImplAttributesOPTIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesPreserveSig.exe_7817]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig\MethodImplAttributesPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesRuntime.exe_7818]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime\MethodImplAttributesRuntime.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesSynchronized.exe_7819]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized\MethodImplAttributesSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplAttributesUnmanaged.exe_7820]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged\MethodImplAttributesUnmanaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesHasDefault.exe_7821]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault\ParameterAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesIn.exe_7822]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn\ParameterAttributesIn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesNone.exe_7823]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone\ParameterAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesOptional.exe_7824]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional\ParameterAttributesOptional.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesOut.exe_7825]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut\ParameterAttributesOut.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ParameterAttributesRetval.exe_7826]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval\ParameterAttributesRetval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PropertyAttributesHasDefault.exe_7827]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault\PropertyAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PropertyAttributesNone.exe_7828]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone\PropertyAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PropertyAttributesRTSpecialName.exe_7829]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName\PropertyAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PropertyAttributesSpecialName.exe_7830]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName\PropertyAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TargetInvocationExceptionCtor1.exe_7831]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1\TargetInvocationExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TargetInvocationExceptionCtor2.exe_7832]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2\TargetInvocationExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TargetParameterCountExceptionCtor1.exe_7833]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1\TargetParameterCountExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TargetParameterCountExceptionCtor2.exe_7834]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2\TargetParameterCountExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TargetParameterCountExceptionCtor3.exe_7835]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3\TargetParameterCountExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesAbstract.exe_7836]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract\TypeAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesAnsiClass.exe_7837]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass\TypeAttributesAnsiClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesAutoClass.exe_7838]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass\TypeAttributesAutoClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesAutoLayout.exe_7839]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout\TypeAttributesAutoLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesBeforeFieldInit.exe_7840]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit\TypeAttributesBeforeFieldInit.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesClass.exe_7841]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass\TypeAttributesClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesClassSemanticsMask.exe_7842]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask\TypeAttributesClassSemanticsMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesExplicitLayout.exe_7843]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout\TypeAttributesExplicitLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesHasSecurity.exe_7844]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity\TypeAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesImport.exe_7845]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport\TypeAttributesImport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesInterface.exe_7846]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface\TypeAttributesInterface.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesLayoutMask.exe_7847]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask\TypeAttributesLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedAssembly.exe_7848]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly\TypeAttributesNestedAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedFamANDAssem.exe_7849]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem\TypeAttributesNestedFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedFamily.exe_7850]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily\TypeAttributesNestedFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedFamORAssem.exe_7851]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem\TypeAttributesNestedFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedPrivate.exe_7852]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate\TypeAttributesNestedPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesNestedPublic.exe_7853]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic\TypeAttributesNestedPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesPublic.exe_7854]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic\TypeAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesRTSpecialName.exe_7855]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName\TypeAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesSealed.exe_7856]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed\TypeAttributesSealed.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesSequentialLayout.exe_7857]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout\TypeAttributesSequentialLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesSerializable.exe_7858]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable\TypeAttributesSerializable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesSpecialName.exe_7859]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName\TypeAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesStringFormatMask.exe_7860]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask\TypeAttributesStringFormatMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesUnicodeClass.exe_7861]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass\TypeAttributesUnicodeClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttributesVisibilityMask.exe_7862]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask\TypeAttributesVisibilityMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeAttribytesNotPublic.exe_7863]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic\TypeAttribytesNotPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingManifestResourceExceptionCtor1.exe_7864]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1\MissingManifestResourceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingManifestResourceExceptionCtor2.exe_7865]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2\MissingManifestResourceExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MissingManifestResourceExceptionCtor3.exe_7866]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3\MissingManifestResourceExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CultureName.exe_7867]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName\CultureName.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NeutralResourcesLanguageAttributeCtor.exe_7868]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor\NeutralResourcesLanguageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeCtor.exe_7869]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor\AttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeVersion.exe_7870]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion\AttributeVersion.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ATPACtor.exe_7871]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor\ATPACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ATPAPropertyName.exe_7872]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName\ATPAPropertyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AttributeCtor1.exe_7873]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1\AttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CompilerGeneratedAttributeCtor.exe_7874]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor\CompilerGeneratedAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CustomConstantAttributector.exe_7875]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector\CustomConstantAttributector.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IndexerNameAttributeCtor.exe_7876]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor\IndexerNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IVTAAssemblyName.exe_7877]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName\IVTAAssemblyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[IVTACtor.exe_7878]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor\IVTACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplOptionsNoInlining.exe_7879]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining\MethodImplOptionsNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MethodImplOptionsPreserveSig.exe_7880]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig\MethodImplOptionsPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RCAttrWrapNEThrows.exe_7881]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows\RCAttrWrapNEThrows.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeCompatAttrCtor.exe_7882]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor\RuntimeCompatAttrCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GetHashCode.exe_7883]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalConstantAttributeCtor.exe_7884]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor\DecimalConstantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecimalConstantAttributeValue.exe_7885]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue\DecimalConstantAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FixedBufferAttributeCtor.exe_7886]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor\FixedBufferAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FixedBufferAttributeElementType.exe_7887]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType\FixedBufferAttributeElementType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FixedBufferAttributeLength.exe_7888]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength\FixedBufferAttributeLength.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CallingConventionWinapi.exe_7889]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi\CallingConventionWinapi.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CharSetUnicode.exe_7890]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode\CharSetUnicode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldOffsetAttributeCtor.exe_7891]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor\FieldOffsetAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[FieldOffsetAttributeValue.exe_7892]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue\FieldOffsetAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleAddrOfPinnedObject_PSC.exe_7893]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC\GCHandleAddrOfPinnedObject_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleAlloc1_PSC.exe_7894]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC\GCHandleAlloc1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleFree_PSC.exe_7895]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC\GCHandleFree_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleTarget_PSC.exe_7896]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC\GCHandleTarget_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleTypeNormal.exe_7897]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal\GCHandleTypeNormal.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleTypePinned.exe_7898]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned\GCHandleTypePinned.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleTypeWeak.exe_7899]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak\GCHandleTypeWeak.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[GCHandleTypeWeakTrackResurrection.exe_7900]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection\GCHandleTypeWeakTrackResurrection.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InAttributeCtor.exe_7901]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor\InAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[LayoutKindAuto.exe_7902]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto\LayoutKindAuto.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[LayoutKindSequential.exe_7903]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential\LayoutKindSequential.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalSizeOf1_PSC.exe_7904]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC\MarshalSizeOf1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalSizeOf2_PSC.exe_7905]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC\MarshalSizeOf2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeArraySubType.exe_7906]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType\MarshalAsAttributeArraySubType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeCtor1.exe_7907]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1\MarshalAsAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeCtor2.exe_7908]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2\MarshalAsAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeMarshalCookie.exe_7909]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie\MarshalAsAttributeMarshalCookie.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeMarshalType.exe_7910]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType\MarshalAsAttributeMarshalType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeMarshalTypeRef.exe_7911]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef\MarshalAsAttributeMarshalTypeRef.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeSizeConst.exe_7912]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst\MarshalAsAttributeSizeConst.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeSizeParamIndex.exe_7913]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex\MarshalAsAttributeSizeParamIndex.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[MarshalAsAttributeValue.exe_7914]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue\MarshalAsAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[OutAttributeCtor.exe_7915]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor\OutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[PreserveSigAttributeCtor.exe_7916]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor\PreserveSigAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleCtor_cti_PSC.exe_7917]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC\SafeHandleCtor_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleDangerousAddRef_PSC.exe_7918]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC\SafeHandleDangerousAddRef_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleDangerousGetHandle_PSC.exe_7919]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC\SafeHandleDangerousGetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleDangerousRelease_PSC.exe_7920]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC\SafeHandleDangerousRelease_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleDispose1_PSC.exe_7921]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC\SafeHandleDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleDispose2_PSC.exe_7922]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC\SafeHandleDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleHandle_PSC.exe_7923]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC\SafeHandleHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleIsClosed_PSC.exe_7924]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC\SafeHandleIsClosed_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleIsInvalid_PSC.exe_7925]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC\SafeHandleIsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleSetHandleAsInvalid_PSC.exe_7926]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC\SafeHandleSetHandleAsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SafeHandleSetHandle_PSC.exe_7927]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC\SafeHandleSetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StructLayoutAttributeCharSet.exe_7928]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet\StructLayoutAttributeCharSet.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StructLayoutAttributeCtor.exe_7929]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor\StructLayoutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StructLayoutAttributePack.exe_7930]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack\StructLayoutAttributePack.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StructLayoutAttributeSize.exe_7931]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize\StructLayoutAttributeSize.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StructLayoutAttributeValue.exe_7932]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue\StructLayoutAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnmanagedType.exe_7933]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType\UnmanagedType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeFieldHandleEquals.exe_7934]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals\RuntimeFieldHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeFieldHandleGetHashCode.exe_7935]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode\RuntimeFieldHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeMethodHandleEquals.exe_7936]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals\RuntimeMethodHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeMethodHanldeGetHashCode.exe_7937]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode\RuntimeMethodHanldeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeTypeHandleEquals.exe_7938]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals\RuntimeTypeHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[RuntimeTypeHandleGetHashCode.exe_7939]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode\RuntimeTypeHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteCompareTo2.exe_7940]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteCompareTo2\SByteCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteEquals1.exe_7941]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals1\SByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteEquals2.exe_7942]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals2\SByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteGetHashCode.exe_7943]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteGetHashCode\SByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToBoolean.exe_7944]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean\SByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToByte.exe_7945]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte\SByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToChar.exe_7946]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar\SByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToDecimal.exe_7947]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal\SByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToDouble.exe_7948]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble\SByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToInt16.exe_7949]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16\SByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToInt32.exe_7950]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32\SByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToInt64.exe_7951]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64\SByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToUInt16.exe_7952]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16\SByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToUInt32.exe_7953]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32\SByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteIConvertibleToUInt64.exe_7954]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64\SByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteMaxValue.exe_7955]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMaxValue\SByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteMinValue.exe_7956]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMinValue\SByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteParse1.exe_7957]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse1\SByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteParse2.exe_7958]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse2\SByteParse2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteParse3.exe_7959]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse3\SByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SByteTryParse.exe_7960]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteTryParse\SByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SecurityExceptionCtor1.exe_7961]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1\SecurityExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SecurityExceptionCtor2.exe_7962]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2\SecurityExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SecurityExceptionCtor3.exe_7963]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3\SecurityExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SecurityExceptionToString.exe_7964]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString\SecurityExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleEpsilon.exe_7965]
+RelativePath=CoreMangLib\cti\system\single\SingleEpsilon\SingleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleEpsilon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleGetHashCode.exe_7966]
+RelativePath=CoreMangLib\cti\system\single\SingleGetHashCode\SingleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleIsInfinity.exe_7967]
+RelativePath=CoreMangLib\cti\system\single\SingleIsInfinity\SingleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleIsNaN.exe_7968]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNaN\SingleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleIsNegativeInfinity.exe_7969]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNegativeInfinity\SingleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleIsPositiveInfinity.exe_7970]
+RelativePath=CoreMangLib\cti\system\single\SingleIsPositiveInfinity\SingleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsPositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleMaxValue.exe_7971]
+RelativePath=CoreMangLib\cti\system\single\SingleMaxValue\SingleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleMinValue.exe_7972]
+RelativePath=CoreMangLib\cti\system\single\SingleMinValue\SingleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleNaN.exe_7973]
+RelativePath=CoreMangLib\cti\system\single\SingleNaN\SingleNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleParse1.exe_7974]
+RelativePath=CoreMangLib\cti\system\single\SingleParse1\SingleParse1.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleParse2.exe_7975]
+RelativePath=CoreMangLib\cti\system\single\SingleParse2\SingleParse2.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToBoolean.exe_7976]
+RelativePath=CoreMangLib\cti\system\single\SingleToBoolean\SingleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToByte.exe_7977]
+RelativePath=CoreMangLib\cti\system\single\SingleToByte\SingleToByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToChar.exe_7978]
+RelativePath=CoreMangLib\cti\system\single\SingleToChar\SingleToChar.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToDateTime.exe_7979]
+RelativePath=CoreMangLib\cti\system\single\SingleToDateTime\SingleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToDecimal.exe_7980]
+RelativePath=CoreMangLib\cti\system\single\SingleToDecimal\SingleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToDouble.exe_7981]
+RelativePath=CoreMangLib\cti\system\single\SingleToDouble\SingleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToInt16.exe_7982]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt16\SingleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToInt32.exe_7983]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt32\SingleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToInt64.exe_7984]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt64\SingleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToSByte.exe_7985]
+RelativePath=CoreMangLib\cti\system\single\SingleToSByte\SingleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToSingle.exe_7986]
+RelativePath=CoreMangLib\cti\system\single\SingleToSingle\SingleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToUInt16.exe_7987]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt16\SingleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToUInt32.exe_7988]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt32\SingleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleToUInt64.exe_7989]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt64\SingleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SingleTryParse.exe_7990]
+RelativePath=CoreMangLib\cti\system\single\SingleTryParse\SingleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringChars.exe_7991]
+RelativePath=CoreMangLib\cti\system\string\StringChars\StringChars.exe
+WorkingDir=CoreMangLib\cti\system\string\StringChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompare1.exe_7992]
+RelativePath=CoreMangLib\cti\system\string\StringCompare1\StringCompare1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompare15.exe_7993]
+RelativePath=CoreMangLib\cti\system\string\StringCompare15\StringCompare15.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompare2.exe_7994]
+RelativePath=CoreMangLib\cti\system\string\StringCompare2\StringCompare2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompare9.exe_7995]
+RelativePath=CoreMangLib\cti\system\string\StringCompare9\StringCompare9.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompareOrdinal1.exe_7996]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal1\StringCompareOrdinal1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCompareOrdinal2.exe_7997]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal2\StringCompareOrdinal2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat1.exe_7998]
+RelativePath=CoreMangLib\cti\system\string\StringConcat1\StringConcat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat2.exe_7999]
+RelativePath=CoreMangLib\cti\system\string\StringConcat2\StringConcat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat3.exe_8000]
+RelativePath=CoreMangLib\cti\system\string\StringConcat3\StringConcat3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat4.exe_8001]
+RelativePath=CoreMangLib\cti\system\string\StringConcat4\StringConcat4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING;REL_PASS
+HostStyle=Any
+[StringConcat5.exe_8002]
+RelativePath=CoreMangLib\cti\system\string\StringConcat5\StringConcat5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat6.exe_8003]
+RelativePath=CoreMangLib\cti\system\string\StringConcat6\StringConcat6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat7.exe_8004]
+RelativePath=CoreMangLib\cti\system\string\StringConcat7\StringConcat7.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringConcat8.exe_8005]
+RelativePath=CoreMangLib\cti\system\string\StringConcat8\StringConcat8.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING;REL_PASS
+HostStyle=Any
+[StringCopyTo.exe_8006]
+RelativePath=CoreMangLib\cti\system\string\StringCopyTo\StringCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCtor5.exe_8007]
+RelativePath=CoreMangLib\cti\system\string\StringCtor5\StringCtor5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringCtorChar.exe_8008]
+RelativePath=CoreMangLib\cti\system\string\StringCtorChar\StringCtorChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtorChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringEmpty.exe_8009]
+RelativePath=CoreMangLib\cti\system\string\StringEmpty\StringEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringEquals1.exe_8010]
+RelativePath=CoreMangLib\cti\system\string\StringEquals1\StringEquals1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringEquals2.exe_8011]
+RelativePath=CoreMangLib\cti\system\string\StringEquals2\StringEquals2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringEquals3.exe_8012]
+RelativePath=CoreMangLib\cti\system\string\StringEquals3\StringEquals3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringEquals6.exe_8013]
+RelativePath=CoreMangLib\cti\system\string\StringEquals6\StringEquals6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringFormat1.exe_8014]
+RelativePath=CoreMangLib\cti\system\string\StringFormat1\StringFormat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringFormat2.exe_8015]
+RelativePath=CoreMangLib\cti\system\string\StringFormat2\StringFormat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringGetEnumerator.exe_8016]
+RelativePath=CoreMangLib\cti\system\string\StringGetEnumerator\StringGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringGetHashCode.exe_8017]
+RelativePath=CoreMangLib\cti\system\string\StringGetHashCode\StringGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToBoolean.exe_8018]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToBoolean\StringIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToByte.exe_8019]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToByte\StringIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToChar.exe_8020]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToChar\StringIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToInt16.exe_8021]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt16\StringIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToInt32.exe_8022]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt32\StringIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToInt64.exe_8023]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt64\StringIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToSByte.exe_8024]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToSByte\StringIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToUInt16.exe_8025]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt16\StringIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToUInt32.exe_8026]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt32\StringIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIConvertibleToUInt64.exe_8027]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt64\StringIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIEnumerableGetEnumerator.exe_8028]
+RelativePath=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator\StringIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIndexOf10.exe_8029]
+RelativePath=CoreMangLib\cti\system\string\StringIndexOf10\StringIndexOf10.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIndexOf10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringInsert.exe_8030]
+RelativePath=CoreMangLib\cti\system\string\StringInsert\StringInsert.exe
+WorkingDir=CoreMangLib\cti\system\string\StringInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringIsNullOrEmpty.exe_8031]
+RelativePath=CoreMangLib\cti\system\string\StringIsNullOrEmpty\StringIsNullOrEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIsNullOrEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringJoin.exe_8032]
+RelativePath=CoreMangLib\cti\system\string\StringJoin\StringJoin.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringJoin1.exe_8033]
+RelativePath=CoreMangLib\cti\system\string\StringJoin1\StringJoin1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringJoin2.exe_8034]
+RelativePath=CoreMangLib\cti\system\string\StringJoin2\StringJoin2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringLength.exe_8035]
+RelativePath=CoreMangLib\cti\system\string\StringLength\StringLength.exe
+WorkingDir=CoreMangLib\cti\system\string\StringLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadLeft.exe_8036]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft\StringPadLeft.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadLeft1.exe_8037]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft1\StringPadLeft1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadLeft2.exe_8038]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft2\StringPadLeft2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadRight.exe_8039]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight\StringPadRight.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadRight1.exe_8040]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight1\StringPadRight1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringPadRight2.exe_8041]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight2\StringPadRight2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringRemove1.exe_8042]
+RelativePath=CoreMangLib\cti\system\string\StringRemove1\StringRemove1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringRemove2.exe_8043]
+RelativePath=CoreMangLib\cti\system\string\StringRemove2\StringRemove2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringReplace1.exe_8044]
+RelativePath=CoreMangLib\cti\system\string\StringReplace1\StringReplace1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringReplace2.exe_8045]
+RelativePath=CoreMangLib\cti\system\string\StringReplace2\StringReplace2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringSplit1.exe_8046]
+RelativePath=CoreMangLib\cti\system\string\StringSplit1\StringSplit1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSplit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringSubString1.exe_8047]
+RelativePath=CoreMangLib\cti\system\string\StringSubString1\StringSubString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringSubString2.exe_8048]
+RelativePath=CoreMangLib\cti\system\string\StringSubString2\StringSubString2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringToCharArray.exe_8049]
+RelativePath=CoreMangLib\cti\system\string\StringToCharArray\StringToCharArray.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToCharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringToString1.exe_8050]
+RelativePath=CoreMangLib\cti\system\string\StringToString1\StringToString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringTrim1.exe_8051]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1\StringTrim1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringTrim1b.exe_8052]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1b\StringTrim1b.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringTrim2.exe_8053]
+RelativePath=CoreMangLib\cti\system\string\StringTrim2\StringTrim2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringTrim3.exe_8054]
+RelativePath=CoreMangLib\cti\system\string\StringTrim3\StringTrim3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringTrim4.exe_8055]
+RelativePath=CoreMangLib\cti\system\string\StringTrim4\StringTrim4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparerCtor.exe_8056]
+RelativePath=CoreMangLib\cti\system\stringcompare\StringComparerCtor\StringComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\stringcompare\StringComparerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparerCompare2.exe_8057]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2\StringComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparerEquals1.exe_8058]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1\StringComparerEquals1.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparerEquals3.exe_8059]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3\StringComparerEquals3.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparerGetType.exe_8060]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerGetType\StringComparerGetType.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerGetType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparisonCurrentCulture.exe_8061]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture\StringComparisonCurrentCulture.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparisonCurrentCultureIgnoreCase.exe_8062]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase\StringComparisonCurrentCultureIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparisonOrdinal.exe_8063]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal\StringComparisonOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringComparisonOrdinalIgnoreCase.exe_8064]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase\StringComparisonOrdinalIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[SZArrayHelperSetItem.exe_8065]
+RelativePath=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem\SZArrayHelperSetItem.exe
+WorkingDir=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecoderCtor.exe_8066]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderCtor\DecoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DecoderReset.exe_8067]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderReset\DecoderReset.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncoderCtor.exe_8068]
+RelativePath=CoreMangLib\cti\system\text\encoder\EncoderCtor\EncoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\encoder\EncoderCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingBigEndianUnicode.exe_8069]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode\EncodingBigEndianUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingClone.exe_8070]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingClone\EncodingClone.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingConvert1.exe_8071]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert1\EncodingConvert1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingConvert2.exe_8072]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert2\EncodingConvert2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingCtor1.exe_8073]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingCtor1\EncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingEquals.exe_8074]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingEquals\EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetByteCount.exe_8075]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount\EncodingGetByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetByteCount1.exe_8076]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1\EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetByteCount2.exe_8077]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2\EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetByteCount3.exe_8078]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3\EncodingGetByteCount3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetBytes1.exe_8079]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1\EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetBytes2.exe_8080]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2\EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetBytes3.exe_8081]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3\EncodingGetBytes3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetBytes4.exe_8082]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4\EncodingGetBytes4.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetBytes5.exe_8083]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5\EncodingGetBytes5.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetCharCount.exe_8084]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount\EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetCharCount1.exe_8085]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1\EncodingGetCharCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetCharCount2.exe_8086]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2\EncodingGetCharCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetChars1.exe_8087]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars1\EncodingGetChars1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetChars2.exe_8088]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars2\EncodingGetChars2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetChars3.exe_8089]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars3\EncodingGetChars3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetDecoder.exe_8090]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder\EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetEncoder.exe_8091]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder\EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetEncoding2.exe_8092]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2\EncodingGetEncoding2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetMaxByteCount.exe_8093]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount\EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetMaxCharCount.exe_8094]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount\EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetPreamble.exe_8095]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble\EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingGetString.exe_8096]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetString\EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingUnicode.exe_8097]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUnicode\EncodingUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingUTF8.exe_8098]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUTF8\EncodingUTF8.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUTF8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EncodingWebName.exe_8099]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingWebName\EncodingWebName.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingWebName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend.exe_8100]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend\StringBuilderAppend.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend1.exe_8101]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1\StringBuilderAppend1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend10.exe_8102]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10\StringBuilderAppend10.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend11.exe_8103]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11\StringBuilderAppend11.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend12.exe_8104]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12\StringBuilderAppend12.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend13.exe_8105]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13\StringBuilderAppend13.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend14.exe_8106]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14\StringBuilderAppend14.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend15.exe_8107]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15\StringBuilderAppend15.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend16.exe_8108]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16\StringBuilderAppend16.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend17.exe_8109]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17\StringBuilderAppend17.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend18.exe_8110]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18\StringBuilderAppend18.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend19.exe_8111]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19\StringBuilderAppend19.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend2.exe_8112]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2\StringBuilderAppend2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend3.exe_8113]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3\StringBuilderAppend3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend4.exe_8114]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4\StringBuilderAppend4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend5.exe_8115]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5\StringBuilderAppend5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend6.exe_8116]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6\StringBuilderAppend6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend7.exe_8117]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7\StringBuilderAppend7.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend8.exe_8118]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8\StringBuilderAppend8.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderAppend9.exe_8119]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9\StringBuilderAppend9.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderCapacity.exe_8120]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity\StringBuilderCapacity.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderCapacity_cti.exe_8121]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti\StringBuilderCapacity_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderChars.exe_8122]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars\StringBuilderChars.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor1.exe_8123]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1\StringBuilderctor1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor2.exe_8124]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2\StringBuilderctor2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor3.exe_8125]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3\StringBuilderctor3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor4.exe_8126]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4\StringBuilderctor4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor5.exe_8127]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5\StringBuilderctor5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderctor6.exe_8128]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6\StringBuilderctor6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderInsert.exe_8129]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert\StringBuilderInsert.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderInsert3.exe_8130]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3\StringBuilderInsert3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderInsert4.exe_8131]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4\StringBuilderInsert4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderLength.exe_8132]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength\StringBuilderLength.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderLength_cti.exe_8133]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti\StringBuilderLength_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderRemove.exe_8134]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove\StringBuilderRemove.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderReplace1.exe_8135]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1\StringBuilderReplace1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderReplace2.exe_8136]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2\StringBuilderReplace2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderReplace3.exe_8137]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3\StringBuilderReplace3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderReplace4.exe_8138]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4\StringBuilderReplace4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderToString1.exe_8139]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1\StringBuilderToString1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StringBuilderToString2.exe_8140]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2\StringBuilderToString2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingCtor1.exe_8141]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1\UnicodeEncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingEquals.exe_8142]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals\UnicodeEncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetByteCount1.exe_8143]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1\UnicodeEncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetByteCount2.exe_8144]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2\UnicodeEncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetBytes2.exe_8145]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2\UnicodeEncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetCharCount.exe_8146]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount\UnicodeEncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetChars.exe_8147]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars\UnicodeEncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetDecoder.exe_8148]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder\UnicodeEncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetEncoder.exe_8149]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder\UnicodeEncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetHashCode.exe_8150]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode\UnicodeEncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetMaxByteCount.exe_8151]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount\UnicodeEncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetMaxCharCount.exe_8152]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount\UnicodeEncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetPreamble.exe_8153]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble\UnicodeEncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UnicodeEncodingGetString.exe_8154]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString\UnicodeEncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingCtor.exe_8155]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor\UTF8EncodingCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingCtor2.exe_8156]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2\UTF8EncodingCtor2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingCtor3.exe_8157]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3\UTF8EncodingCtor3.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingEquals.exe_8158]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals\UTF8EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetByteCount1.exe_8159]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1\UTF8EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetByteCount2.exe_8160]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2\UTF8EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetBytes1.exe_8161]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1\UTF8EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetBytes2.exe_8162]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2\UTF8EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetCharCount.exe_8163]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount\UTF8EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetChars.exe_8164]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars\UTF8EncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetDecoder.exe_8165]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder\UTF8EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetEncoder.exe_8166]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder\UTF8EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetHashCode.exe_8167]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode\UTF8EncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetMaxByteCount.exe_8168]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount\UTF8EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetMaxCharCount.exe_8169]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount\UTF8EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetPreamble.exe_8170]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble\UTF8EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UTF8EncodingGetString.exe_8171]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString\UTF8EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AutoResetEventCtor.exe_8172]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor\AutoResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AutoResetEventReSet.exe_8173]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet\AutoResetEventReSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AutoResetEventSet.exe_8174]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet\AutoResetEventSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedAdd1.exe_8175]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1\InterlockedAdd1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[InterlockedAdd2.exe_8176]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2\InterlockedAdd2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedCompareExchange1.exe_8177]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1\InterlockedCompareExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedCompareExchange5.exe_8178]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5\InterlockedCompareExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedCompareExchange6.exe_8179]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6\InterlockedCompareExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedCompareExchange7.exe_8180]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7\InterlockedCompareExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedDecrement1.exe_8181]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1\InterlockedDecrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[InterlockedDecrement2.exe_8182]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2\InterlockedDecrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedExchange1.exe_8183]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1\InterlockedExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedExchange5.exe_8184]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5\InterlockedExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedExchange6.exe_8185]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6\InterlockedExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedExchange7.exe_8186]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7\InterlockedExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockedIncrement1.exe_8187]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1\InterlockedIncrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_2823
+HostStyle=Any
+[InterlockedIncrement2.exe_8188]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2\InterlockedIncrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ManualResetEventCtor.exe_8189]
+RelativePath=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor\ManualResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeOutInfinite.exe_8190]
+RelativePath=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite\TimeOutInfinite.exe
+WorkingDir=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WaitHandleCtor.exe_8191]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor\WaitHandleCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WaitHandleDispose1.exe_8192]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1\WaitHandleDispose1.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WaitHandleDispose3.exe_8193]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3\WaitHandleDispose3.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeoutExceptionCtor1.exe_8194]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1\TimeoutExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeoutExceptionCtor2.exe_8195]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2\TimeoutExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeoutExceptionCtor3.exe_8196]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3\TimeoutExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanAdd.exe_8197]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanAdd\TimeSpanAdd.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCompare1.exe_8198]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompare1\TimeSpanCompare1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCompareTo2.exe_8199]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2\TimeSpanCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCtor1.exe_8200]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor1\TimeSpanCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCtor2.exe_8201]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor2\TimeSpanCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCtor3.exe_8202]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor3\TimeSpanCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanCtor4.exe_8203]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor4\TimeSpanCtor4.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanDuration.exe_8204]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanDuration\TimeSpanDuration.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanDuration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanEquals1.exe_8205]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals1\TimeSpanEquals1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanEquals2.exe_8206]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals2\TimeSpanEquals2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanEquals3.exe_8207]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals3\TimeSpanEquals3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanFromTicks.exe_8208]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanFromTicks\TimeSpanFromTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanFromTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanGetHashCode.exe_8209]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode\TimeSpanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanMaxValue.exe_8210]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMaxValue\TimeSpanMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanMinValue.exe_8211]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMinValue\TimeSpanMinValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanNegate.exe_8212]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanNegate\TimeSpanNegate.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanNegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTicks.exe_8213]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicks\TimeSpanTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTicksPerDay.exe_8214]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay\TimeSpanTicksPerDay.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTicksPerHour.exe_8215]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour\TimeSpanTicksPerHour.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTicksPerMinute.exe_8216]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute\TimeSpanTicksPerMinute.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTicksPerSecond.exe_8217]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond\TimeSpanTicksPerSecond.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanToString_str.exe_8218]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanToString_str\TimeSpanToString_str.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanToString_str
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTotalDays.exe_8219]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalDays\TimeSpanTotalDays.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalDays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTotalHours.exe_8220]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalHours\TimeSpanTotalHours.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalHours
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTotalMilliseconds.exe_8221]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds\TimeSpanTotalMilliseconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTotalMinutes.exe_8222]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes\TimeSpanTotalMinutes.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanTotalSeconds.exe_8223]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds\TimeSpanTotalSeconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TimeSpanZero.exe_8224]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanZero\TimeSpanZero.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeEquals1.exe_8225]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals1\TypeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeEquals2.exe_8226]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals2\TypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetArrayRank.exe_8227]
+RelativePath=CoreMangLib\cti\system\type\TypeGetArrayRank\TypeGetArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetArrayRank
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetElementType.exe_8228]
+RelativePath=CoreMangLib\cti\system\type\TypeGetElementType\TypeGetElementType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetElementType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetGenericTypeDefinition.exe_8229]
+RelativePath=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition\TypeGetGenericTypeDefinition.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetHashCode.exe_8230]
+RelativePath=CoreMangLib\cti\system\type\TypeGetHashCode\TypeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetType1.exe_8231]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType1\TypeGetType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetType2.exe_8232]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType2\TypeGetType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeGetTypeFromHandle.exe_8233]
+RelativePath=CoreMangLib\cti\system\type\TypeGetTypeFromHandle\TypeGetTypeFromHandle.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetTypeFromHandle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeHasElementTypeImpl.exe_8234]
+RelativePath=CoreMangLib\cti\system\type\TypeHasElementTypeImpl\TypeHasElementTypeImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeHasElementTypeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeIsByRefImpl.exe_8235]
+RelativePath=CoreMangLib\cti\system\type\TypeIsByRefImpl\TypeIsByRefImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsByRefImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeIsPointerImpl.exe_8236]
+RelativePath=CoreMangLib\cti\system\type\TypeIsPointerImpl\TypeIsPointerImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsPointerImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeMakeArrayType1.exe_8237]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType1\TypeMakeArrayType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeMakeArrayType2.exe_8238]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType2\TypeMakeArrayType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeMakeByRefType.exe_8239]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeByRefType\TypeMakeByRefType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeByRefType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeMakePointerType.exe_8240]
+RelativePath=CoreMangLib\cti\system\type\TypeMakePointerType\TypeMakePointerType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakePointerType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeToString.exe_8241]
+RelativePath=CoreMangLib\cti\system\type\TypeToString\TypeToString.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeBoolean.exe_8242]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeBoolean\TypeCodeBoolean.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeByte.exe_8243]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeByte\TypeCodeByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeChar.exe_8244]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeChar\TypeCodeChar.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeDateTime.exe_8245]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDateTime\TypeCodeDateTime.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeDecimal.exe_8246]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDecimal\TypeCodeDecimal.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeDouble.exe_8247]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDouble\TypeCodeDouble.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeEmpty.exe_8248]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeEmpty\TypeCodeEmpty.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeInt16.exe_8249]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt16\TypeCodeInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeInt32.exe_8250]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt32\TypeCodeInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeInt64.exe_8251]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt64\TypeCodeInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeObject.exe_8252]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeObject\TypeCodeObject.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeSByte.exe_8253]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSByte\TypeCodeSByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeSingle.exe_8254]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSingle\TypeCodeSingle.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeString.exe_8255]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeString\TypeCodeString.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeUInt16.exe_8256]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt16\TypeCodeUInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeUInt32.exe_8257]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt32\TypeCodeUInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeCodeUInt64.exe_8258]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt64\TypeCodeUInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeLoadExceptionCtor1.exe_8259]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1\TypeLoadExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeLoadExceptionCtor2.exe_8260]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2\TypeLoadExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeLoadExceptionCtor3.exe_8261]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3\TypeLoadExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[TypeLoadExceptionMessage.exe_8262]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage\TypeLoadExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16CompareTo1.exe_8263]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16CompareTo1\UInt16CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16Equals1.exe_8264]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals1\UInt16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16Equals2.exe_8265]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals2\UInt16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToBoolean.exe_8266]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean\UInt16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToByte.exe_8267]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte\UInt16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToChar.exe_8268]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar\UInt16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToDateTime.exe_8269]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime\UInt16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToDecimal.exe_8270]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal\UInt16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToDouble.exe_8271]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble\UInt16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToInt16.exe_8272]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16\UInt16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToInt32.exe_8273]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32\UInt16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToInt64.exe_8274]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64\UInt16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToSByte.exe_8275]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte\UInt16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToSingle.exe_8276]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle\UInt16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToType.exe_8277]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType\UInt16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToUInt16.exe_8278]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16\UInt16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToUInt32.exe_8279]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32\UInt16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16IConvertibleToUInt64.exe_8280]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64\UInt16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16Parse1.exe_8281]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse1\UInt16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16Parse2.exe_8282]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse2\UInt16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16Parse3.exe_8283]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse3\UInt16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16ToString3.exe_8284]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString3\UInt16ToString3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16ToString4.exe_8285]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString4\UInt16ToString4.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt16TryParse.exe_8286]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16TryParse\UInt16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32CompareTo2.exe_8287]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32CompareTo2\UInt32CompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32CompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32Equals1.exe_8288]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals1\UInt32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32Equals2.exe_8289]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals2\UInt32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32GetHashCode.exe_8290]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32GetHashCode\UInt32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToBoolean.exe_8291]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean\UInt32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToByte.exe_8292]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte\UInt32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToChar.exe_8293]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar\UInt32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToDecimal.exe_8294]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal\UInt32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToDouble.exe_8295]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble\UInt32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToInt16.exe_8296]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16\UInt32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToInt32.exe_8297]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32\UInt32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToInt64.exe_8298]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64\UInt32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToSByte.exe_8299]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte\UInt32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToSingle.exe_8300]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle\UInt32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToType.exe_8301]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType\UInt32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToUInt16.exe_8302]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16\UInt32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToUInt32.exe_8303]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32\UInt32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32IConvertibleToUInt64.exe_8304]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64\UInt32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32MaxValue.exe_8305]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MaxValue\UInt32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32MinValue.exe_8306]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MinValue\UInt32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32Parse1.exe_8307]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse1\UInt32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32Parse2.exe_8308]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse2\UInt32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32Parse3.exe_8309]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse3\UInt32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32ToString2.exe_8310]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString2\UInt32ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt32TryParse.exe_8311]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32TryParse\UInt32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64GetHashCode.exe_8312]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64GetHashCode\UInt64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;ISSUE_3263
+HostStyle=Any
+[UInt64IConvertibleToBoolean.exe_8313]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean\UInt64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToByte.exe_8314]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte\UInt64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToChar.exe_8315]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar\UInt64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToDateTime.exe_8316]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime\UInt64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToDecimal.exe_8317]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal\UInt64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToDouble.exe_8318]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble\UInt64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToInt16.exe_8319]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16\UInt64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToInt32.exe_8320]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32\UInt64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToInt64.exe_8321]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64\UInt64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToSByte.exe_8322]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte\UInt64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToSingle.exe_8323]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle\UInt64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToType.exe_8324]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType\UInt64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToUInt16.exe_8325]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16\UInt64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToUInt32.exe_8326]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32\UInt64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64IConvertibleToUInt64.exe_8327]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64\UInt64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64MaxValue.exe_8328]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MaxValue\UInt64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64MinValue.exe_8329]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MinValue\UInt64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64Parse1.exe_8330]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse1\UInt64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64Parse2.exe_8331]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse2\UInt64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64Parse3.exe_8332]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse3\UInt64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64ToString2.exe_8333]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64ToString2\UInt64ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64ToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UInt64TryParse.exe_8334]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64TryParse\UInt64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrCtor_UInt32.exe_8335]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32\UIntPtrCtor_UInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrCtor_UInt64.exe_8336]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64\UIntPtrCtor_UInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrCtor_VoidPtr.exe_8337]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr\UIntPtrCtor_VoidPtr.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrEquals.exe_8338]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrEquals\UIntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrGetHashCode.exe_8339]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode\UIntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;ISSUE_3511
+HostStyle=Any
+[UIntPtrSize.exe_8340]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrSize\UIntPtrSize.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrToPointer.exe_8341]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToPointer\UIntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToPointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrToString.exe_8342]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToString\UIntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrToUInt32.exe_8343]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32\UIntPtrToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrToUInt64.exe_8344]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64\UIntPtrToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[UIntPtrZero.exe_8345]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrZero\UIntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueTypeEquals.exe_8346]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals\ValueTypeEquals.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ValueTypeEquals2.exe_8347]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals2\ValueTypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionBuild.exe_8348]
+RelativePath=CoreMangLib\cti\system\version\VersionBuild\VersionBuild.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionBuild
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionCompareTo2.exe_8349]
+RelativePath=CoreMangLib\cti\system\version\VersionCompareTo2\VersionCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionCtor4.exe_8350]
+RelativePath=CoreMangLib\cti\system\version\VersionCtor4\VersionCtor4.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionEquals1.exe_8351]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals1\VersionEquals1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionEquals2.exe_8352]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals2\VersionEquals2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionGetHashCode.exe_8353]
+RelativePath=CoreMangLib\cti\system\version\VersionGetHashCode\VersionGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionMajor.exe_8354]
+RelativePath=CoreMangLib\cti\system\version\VersionMajor\VersionMajor.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionMajor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionRevision.exe_8355]
+RelativePath=CoreMangLib\cti\system\version\VersionRevision\VersionRevision.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionRevision
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionToString1.exe_8356]
+RelativePath=CoreMangLib\cti\system\version\VersionToString1\VersionToString1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[VersionToString2.exe_8357]
+RelativePath=CoreMangLib\cti\system\version\VersionToString2\VersionToString2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceCtor1_PSC.exe_8358]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC\WeakReferenceCtor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceCtor2b_PSC.exe_8359]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC\WeakReferenceCtor2b_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceCtor2_PSC.exe_8360]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC\WeakReferenceCtor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceIsAliveb_PSC.exe_8361]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC\WeakReferenceIsAliveb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceIsAlive_PSC.exe_8362]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC\WeakReferenceIsAlive_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceTargetb_PSC.exe_8363]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC\WeakReferenceTargetb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[WeakReferenceTrackResurrection_cti_PSC.exe_8364]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC\WeakReferenceTrackResurrection_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[ASURT_99893.exe_8365]
+RelativePath=CoreMangLib\system\buffer\ASURT_99893\ASURT_99893.exe
+WorkingDir=CoreMangLib\system\buffer\ASURT_99893
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Regression_Dev10_609271.exe_8366]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271\Regression_Dev10_609271.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Regression_Dev10_624201.exe_8367]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201\Regression_Dev10_624201.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co7510ParseExact_formatarray.exe_8368]
+RelativePath=CoreMangLib\system\datetime\Co7510ParseExact_formatarray\Co7510ParseExact_formatarray.exe
+WorkingDir=CoreMangLib\system\datetime\Co7510ParseExact_formatarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NegativeGenerics.exe_8369]
+RelativePath=CoreMangLib\system\delegate\generics\NegativeGenerics\NegativeGenerics.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NegativeGenerics
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[NG_Standard.exe_8370]
+RelativePath=CoreMangLib\system\delegate\generics\NG_Standard\NG_Standard.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NG_Standard
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co6010DelegateEqualsTwo.exe_8371]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo\Co6010DelegateEqualsTwo.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co6031GetHashCode.exe_8372]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode\Co6031GetHashCode.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DDB113347.exe_8373]
+RelativePath=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347\DDB113347.exe
+WorkingDir=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Guid_Parsing.exe_8374]
+RelativePath=CoreMangLib\system\guid\Guid_Parsing\Guid_Parsing.exe
+WorkingDir=CoreMangLib\system\guid\Guid_Parsing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[LazyTTF.exe_8375]
+RelativePath=CoreMangLib\system\lazyt\LazyTTF\LazyTTF.exe
+WorkingDir=CoreMangLib\system\lazyt\LazyTTF
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Shift_Jis.exe_8376]
+RelativePath=CoreMangLib\system\text\encoding\Shift_Jis\Shift_Jis.exe
+WorkingDir=CoreMangLib\system\text\encoding\Shift_Jis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Version_Parsing.exe_8377]
+RelativePath=CoreMangLib\system\version\Version_Parsing\Version_Parsing.exe
+WorkingDir=CoreMangLib\system\version\Version_Parsing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[csgen.1.exe_8378]
+RelativePath=hosting\stress\testset1\csgen.1\csgen.1.exe
+WorkingDir=hosting\stress\testset1\csgen.1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[csgen.2.exe_8379]
+RelativePath=hosting\stress\testset1\csgen.2\csgen.2.exe
+WorkingDir=hosting\stress\testset1\csgen.2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DevDiv_374539.exe_8380]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539\DevDiv_374539.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;NEW
+HostStyle=Any
+[repro177066.exe_8381]
+RelativePath=Loader\binding\assemblies\assemblybugs\177066w\repro177066\repro177066.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\177066w\repro177066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[client.exe_8382]
+RelativePath=Loader\binding\assemblies\assemblybugs\203962w\client\client.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\203962w\client
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[EmbedStringVersions.exe_8383]
+RelativePath=Loader\binding\assemblies\assemblyversion\EmbedStringVersions\EmbedStringVersions.exe
+WorkingDir=Loader\binding\assemblies\assemblyversion\EmbedStringVersions
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS;UNWIND
+HostStyle=Any
+[properties.exe_8384]
+RelativePath=Loader\binding\assemblies\basicapi\assemblynamector\properties\properties.exe
+WorkingDir=Loader\binding\assemblies\basicapi\assemblynamector\properties
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[exceptions.exe_8385]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\exceptions\exceptions.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\exceptions
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[methods.exe_8386]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\methods\methods.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\methods
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[derivedExplicitClass.exe_8387]
+RelativePath=Loader\classloader\explicitlayout\misc\derivedExplicitClass\derivedExplicitClass.exe
+WorkingDir=Loader\classloader\explicitlayout\misc\derivedExplicitClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case1.exe_8388]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1\case1.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case11.exe_8389]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11\case11.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case12.exe_8390]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12\case12.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case14.exe_8391]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14\case14.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case15.exe_8392]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15\case15.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case2.exe_8393]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2\case2.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case3.exe_8394]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3\case3.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case4.exe_8395]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4\case4.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case5.exe_8396]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5\case5.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case6.exe_8397]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6\case6.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case7.exe_8398]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7\case7.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case8.exe_8399]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8\case8.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[case9.exe_8400]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9\case9.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[repro237932.exe_8401]
+RelativePath=Loader\classloader\generics\regressions\vsw237932\repro237932\repro237932.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw237932\repro237932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw514968.exe_8402]
+RelativePath=Loader\classloader\generics\regressions\vsw514968\vsw514968\vsw514968.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw514968\vsw514968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[StaticsProblem5.exe_8403]
+RelativePath=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5\StaticsProblem5.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[exploit.exe_8404]
+RelativePath=Loader\classloader\methodoverriding\regressions\549411\exploit\exploit.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\549411\exploit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw577403.exe_8405]
+RelativePath=Loader\classloader\methodoverriding\regressions\577403\vsw577403\vsw577403.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\577403\vsw577403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw593884.exe_8406]
+RelativePath=Loader\classloader\methodoverriding\regressions\593884\vsw593884\vsw593884.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\593884\vsw593884
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[testint.exe_8407]
+RelativePath=Loader\classloader\regressions\123413\testint\testint.exe
+WorkingDir=Loader\classloader\regressions\123413\testint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw144257.exe_8408]
+RelativePath=Loader\classloader\regressions\144257\vsw144257\vsw144257.exe
+WorkingDir=Loader\classloader\regressions\144257\vsw144257
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nullenum1000.exe_8409]
+RelativePath=Loader\classloader\regressions\245191\nullenum1000\nullenum1000.exe
+WorkingDir=Loader\classloader\regressions\245191\nullenum1000
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[test359519.exe_8410]
+RelativePath=Loader\classloader\regressions\359519\test359519\test359519.exe
+WorkingDir=Loader\classloader\regressions\359519\test359519
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[vsw405223.exe_8411]
+RelativePath=Loader\classloader\regressions\405223\vsw405223\vsw405223.exe
+WorkingDir=Loader\classloader\regressions\405223\vsw405223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[b434481_GenericRecurInit.exe_8412]
+RelativePath=Loader\classloader\regressions\434481\b434481_GenericRecurInit\b434481_GenericRecurInit.exe
+WorkingDir=Loader\classloader\regressions\434481\b434481_GenericRecurInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[dev10_851479.exe_8413]
+RelativePath=Loader\classloader\regressions\dev10_851479\dev10_851479\dev10_851479.exe
+WorkingDir=Loader\classloader\regressions\dev10_851479\dev10_851479
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[dev10_889822.exe_8414]
+RelativePath=Loader\classloader\regressions\dev10_889822\dev10_889822\dev10_889822.exe
+WorkingDir=Loader\classloader\regressions\dev10_889822\dev10_889822
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Exception.exe_8415]
+RelativePath=Loader\lowlevel\regress\105736\Exception\Exception.exe
+WorkingDir=Loader\lowlevel\regress\105736\Exception
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[DontUseNetmodule.exe_8416]
+RelativePath=Loader\multimodule\DontUseNetmodule\DontUseNetmodule.exe
+WorkingDir=Loader\multimodule\DontUseNetmodule
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[AssemblyAttrs.exe_8417]
+RelativePath=Loader\versioning\coverage\AssemblyAttrs\AssemblyAttrs.exe
+WorkingDir=Loader\versioning\coverage\AssemblyAttrs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_629953.exe_8418]
+RelativePath=reflection\regression\dev10bugs\Dev10_629953\Dev10_629953.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_629953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Dev10_630880.exe_8419]
+RelativePath=reflection\regression\dev10bugs\Dev10_630880\Dev10_630880.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_630880
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[thread08-simplified.exe_8420]
+RelativePath=Regressions\coreclr\0028\thread08-simplified\thread08-simplified.exe
+WorkingDir=Regressions\coreclr\0028\thread08-simplified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[expl_double_1.exe_8421]
+RelativePath=Regressions\coreclr\0041\expl_double_1\expl_double_1.exe
+WorkingDir=Regressions\coreclr\0041\expl_double_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[nullable.exe_8422]
+RelativePath=Regressions\coreclr\0044\nullable\nullable.exe
+WorkingDir=Regressions\coreclr\0044\nullable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[istype.exe_8423]
+RelativePath=Regressions\coreclr\0046\istype\istype.exe
+WorkingDir=Regressions\coreclr\0046\istype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[LargeArrayTest.exe_8424]
+RelativePath=Regressions\coreclr\0075\LargeArrayTest\LargeArrayTest.exe
+WorkingDir=Regressions\coreclr\0075\LargeArrayTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[delete_next_card_table.exe_8425]
+RelativePath=Regressions\coreclr\0080\delete_next_card_table\delete_next_card_table.exe
+WorkingDir=Regressions\coreclr\0080\delete_next_card_table
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;ISSUE_3104;NEED_TRIAGE
+HostStyle=Any
+[genrecur.exe_8426]
+RelativePath=Regressions\coreclr\0211\genrecur\genrecur.exe
+WorkingDir=Regressions\coreclr\0211\genrecur
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[unsafe.exe_8427]
+RelativePath=Regressions\coreclr\0342\unsafe\unsafe.exe
+WorkingDir=Regressions\coreclr\0342\unsafe
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[hello.exe_8428]
+RelativePath=Regressions\coreclr\0416\hello\hello.exe
+WorkingDir=Regressions\coreclr\0416\hello
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test570.exe_8429]
+RelativePath=Regressions\coreclr\0570\Test570\Test570.exe
+WorkingDir=Regressions\coreclr\0570\Test570
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test0576.exe_8430]
+RelativePath=Regressions\coreclr\0576\Test0576\Test0576.exe
+WorkingDir=Regressions\coreclr\0576\Test0576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[csgen.1.exe_8431]
+RelativePath=Regressions\coreclr\0582\csgen.1\csgen.1.exe
+WorkingDir=Regressions\coreclr\0582\csgen.1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test583.exe_8432]
+RelativePath=Regressions\coreclr\0583\Test583\Test583.exe
+WorkingDir=Regressions\coreclr\0583\Test583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[Test584.exe_8433]
+RelativePath=Regressions\coreclr\0584\Test584\Test584.exe
+WorkingDir=Regressions\coreclr\0584\Test584
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test0792.exe_8434]
+RelativePath=Regressions\coreclr\0792\Test0792\Test0792.exe
+WorkingDir=Regressions\coreclr\0792\Test0792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test0828.exe_8435]
+RelativePath=Regressions\coreclr\0828\Test0828\Test0828.exe
+WorkingDir=Regressions\coreclr\0828\Test0828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test0829.exe_8436]
+RelativePath=Regressions\coreclr\0829\Test0829\Test0829.exe
+WorkingDir=Regressions\coreclr\0829\Test0829
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[override.exe_8437]
+RelativePath=Regressions\coreclr\0857\override\override.exe
+WorkingDir=Regressions\coreclr\0857\override
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[test0939.exe_8438]
+RelativePath=Regressions\coreclr\0939\test0939\test0939.exe
+WorkingDir=Regressions\coreclr\0939\test0939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test968.exe_8439]
+RelativePath=Regressions\coreclr\0968\Test968\Test968.exe
+WorkingDir=Regressions\coreclr\0968\Test968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_FAIL;NEED_TRIAGE
+HostStyle=Any
+[Test1337.exe_8440]
+RelativePath=Regressions\coreclr\1337\Test1337\Test1337.exe
+WorkingDir=Regressions\coreclr\1337\Test1337
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Co1727ctor_OO.exe_8441]
+RelativePath=Regressions\coreclr\1386\Co1727ctor_OO\Co1727ctor_OO.exe
+WorkingDir=Regressions\coreclr\1386\Co1727ctor_OO
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test1402.exe_8442]
+RelativePath=Regressions\coreclr\1402\Test1402\Test1402.exe
+WorkingDir=Regressions\coreclr\1402\Test1402
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[InterlockExchange.exe_8443]
+RelativePath=Regressions\coreclr\1514\InterlockExchange\InterlockExchange.exe
+WorkingDir=Regressions\coreclr\1514\InterlockExchange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;UNSTABLE;ISSUE_3515
+HostStyle=Any
+[Test1534.exe_8444]
+RelativePath=Regressions\coreclr\1534\Test1534\Test1534.exe
+WorkingDir=Regressions\coreclr\1534\Test1534
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test1535.exe_8445]
+RelativePath=Regressions\coreclr\1535\Test1535\Test1535.exe
+WorkingDir=Regressions\coreclr\1535\Test1535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test1549.exe_8446]
+RelativePath=Regressions\coreclr\1549\Test1549\Test1549.exe
+WorkingDir=Regressions\coreclr\1549\Test1549
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[Test72162.exe_8447]
+RelativePath=Regressions\coreclr\72162\Test72162\Test72162.exe
+WorkingDir=Regressions\coreclr\72162\Test72162
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1;RT;EXPECTED_PASS
+HostStyle=Any
+[CheckAddInt_1.exe_8447]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_1\CheckAddInt_1.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[CheckAddInt_2.exe_8448]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_2\CheckAddInt_2.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[CompareExchangeLong_1.exe_8449]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1\CompareExchangeLong_1.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[CompareExchangeLong_2.exe_8450]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2\CompareExchangeLong_2.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[CompareExchangeLong_3.exe_8451]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3\CompareExchangeLong_3.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[CompareExchangeLong_4.exe_8452]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4\CompareExchangeLong_4.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartBool_1.exe_8453]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_1\ThreadStartBool_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartBool_2.exe_8454]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_2\ThreadStartBool_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDecimal_1.exe_8455]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_1\ThreadStartDecimal_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDecimal_2.exe_8456]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_2\ThreadStartDecimal_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDecimal_3.exe_8457]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_3\ThreadStartDecimal_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDouble_1.exe_8458]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_1\ThreadStartDouble_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDouble_2.exe_8459]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_2\ThreadStartDouble_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartDouble_3.exe_8460]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_3\ThreadStartDouble_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartObject_1.exe_8461]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_1\ThreadStartObject_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartObject_2.exe_8462]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_2\ThreadStartObject_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartSByte_1.exe_8463]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_1\ThreadStartSByte_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartSByte_2.exe_8464]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_2\ThreadStartSByte_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartSByte_3.exe_8465]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_3\ThreadStartSByte_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartString_1.exe_8466]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_1\ThreadStartString_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartString_2.exe_8467]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_2\ThreadStartString_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartString_3.exe_8468]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_3\ThreadStartString_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartString_4.exe_8469]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_4\ThreadStartString_4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartULong_1.exe_8470]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_1\ThreadStartULong_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartULong_2.exe_8471]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_2\ThreadStartULong_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
+[ThreadStartULong_3.exe_8472]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_3\ThreadStartULong_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2;RT;MISSING_EXE
+HostStyle=Any
diff --git a/tests/scripts/test/TestsOld.lst b/tests/scripts/test/TestsOld.lst
new file mode 100644
index 0000000000..3c31886813
--- /dev/null
+++ b/tests/scripts/test/TestsOld.lst
@@ -0,0 +1,41125 @@
+[gckeepalive.exe_1105]
+RelativePath=CoreMangLib\cti\system\gc\GCKeepAlive\GCKeepAlive.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCKeepAlive
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt1_cs_d.exe_3161]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_d\vt1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberformatinfogetformat.exe_1177]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat\NumberFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess3_cs_r.exe_3084]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_r\straccess3_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraydim.exe_4025]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim\arrayDim.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charunicodeinfogetnumericvalue1.exe_1113]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1\CharUnicodeInfoGetNumericValue1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[co9604get_isrunning.exe_252]
+RelativePath=CoreMangLib\components\stopwatch\Co9604get_IsRunning\Co9604get_IsRunning.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9604get_IsRunning
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cnsbool.exe_2614]
+RelativePath=JIT\CodeGenBringUpTests\CnsBool\CnsBool.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsBool
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[catch1_r.exe_2941]
+RelativePath=JIT\Directed\leave\catch1_r\catch1_r.exe
+WorkingDir=JIT\Directed\leave\catch1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgvtret.exe_4602]
+RelativePath=JIT\Methodical\VT\callconv\_dbgvtret\_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileshareread.exe_1431]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareRead\FileShareRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareRead
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reli_flood.exe_3896]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood\_il_reli_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[co6010delegateequalstwo.exe_2569]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo\Co6010DelegateEqualsTwo.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress1_r.exe_3458]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_r\CgStress1_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+[floatovftoint2_do.exe_4517]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_do\FloatOvfToInt2_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[b15244.exe_4866]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244\b15244.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop1_cs_d.exe_3106]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_d\loop1_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsevent.exe_356]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent\AttributeTargetsEvent.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal11.exe_749]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal11\ConvertToDecimal11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionclear.exe_589]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear\ICollectionClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodingunicode.exe_2289]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUnicode\EncodingUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUnicode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relii4.exe_4280]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii4\_il_relii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanadd.exe_2389]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanAdd\TimeSpanAdd.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relii2.exe_4279]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii2\_il_relii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar13.exe_736]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar13\ConvertToChar13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relmuldiv.exe_4184]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relmuldiv\_speed_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend13.exe_2297]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13\StringBuilderAppend13.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesenum.exe_1407]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum\FileAttributesEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timeoutexceptionctor1.exe_2386]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1\TimeoutExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring6.exe_868]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString6\ConvertToString6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi_qsort2.exe_3873]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2\_il_dbgi_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaac_ro.exe_3447]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro\CGRecurseAAC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathsign6.exe_1525]
+RelativePath=CoreMangLib\cti\system\math\MathSign6\MathSign6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64_do.exe_3063]
+RelativePath=JIT\Directed\shift\uint64_do\uint64_do.exe
+WorkingDir=JIT\Directed\shift\uint64_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16198.exe_5707]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198\b16198.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof3.exe_306]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3\ArrayIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend2.exe_2304]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2\StringBuilderAppend2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletodecimal.exe_404]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal\ByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b77707.exe_5415]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707\b77707.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletobyte.exe_1351]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToByte\Int64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param3a_cs_ro.exe_4200]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_ro\25param3a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_816617_do.exe_5620]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do\DevDiv_816617_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[neutralresourceslanguageattributector.exe_2052]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor\NeutralResourcesLanguageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_xor_op_cs_do.exe_2785]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_do\Double_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobyte2.exe_726]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte2\ConvertToByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cpblk.exe_2997]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\cpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relldc_mulovf.exe_4155]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mulovf\_il_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread19.exe_134]
+RelativePath=baseservices\threading\generics\threadstart\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread19
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[struct01.exe_3246]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_equalnull_struct01.exe_3257]
+RelativePath=JIT\Generics\Locals\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[staticsproblem5.exe_5784]
+RelativePath=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5\StaticsProblem5.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteparse1.exe_417]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse1\ByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relcall.exe_4625]
+RelativePath=JIT\Methodical\VT\callconv\_relcall\_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b58358.exe_5299]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358\b58358.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14396.exe_4802]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396\b14396.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareexchangelong_2.exe_159]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2\CompareExchangeLong_2.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[struct5_5.exe_3386]
+RelativePath=JIT\jit64\gc\misc\struct5_5\struct5_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relhan3_ctor.exe_4649]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ctor\_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletoint32.exe_2172]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt32\SingleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28806.exe_4948]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806\b28806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[missingmemberexceptionctor2.exe_1543]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2\MissingMemberExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b148815.exe_5475]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815\b148815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b78392.exe_5419]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392\b78392.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relldc_mul.exe_4162]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mul\_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4div_cs_d.exe_3813]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_d\r4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param1c_il_r.exe_4192]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_r\25param1c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14070.exe_4846]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070\b14070.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread02.exe_117]
+RelativePath=baseservices\threading\generics\threadstart\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttobyte6.exe_729]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte6\ConvertToByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b32801.exe_4980]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801\b32801.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objectgethashcode.exe_1577]
+RelativePath=CoreMangLib\cti\system\object\ObjectGetHashCode\ObjectGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ddb113347.exe_2571]
+RelativePath=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347\DDB113347.exe
+WorkingDir=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_d.exe_4432]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble15.exe_768]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble15\ConvertToDouble15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relfr8.exe_4274]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr8\_il_relfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfogettextelementenumerator1.exe_1211]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1\StringInfoGetTextElementEnumerator1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtrueltint1.exe_2695]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtInt1\JTrueLtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletodatetime.exe_2513]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime\UInt64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[args4.exe_2605]
+RelativePath=JIT\CodeGenBringUpTests\Args4\Args4.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[negativegenerics.exe_2567]
+RelativePath=CoreMangLib\system\delegate\generics\NegativeGenerics\NegativeGenerics.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NegativeGenerics
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[absgeneric.exe_5738]
+RelativePath=JIT\SIMD\AbsGeneric\AbsGeneric.exe
+WorkingDir=JIT\SIMD\AbsGeneric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[enumiconvertibletouint16.exe_1079]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16\EnumIConvertibleToUint16.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartshort_1.exe_225]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort_1\ThreadStartShort_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[dblavg6.exe_2621]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg6\DblAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_u4.exe_1734]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4\OpCodesConv_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfoenglishname.exe_1136]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName\CultureInfoEnglishName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[invalidprogramexceptionctor2.exe_1391]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2\InvalidProgramExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring18.exe_849]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString18\ConvertToString18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[idictionarycontains.exe_696]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains\IDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[flowcontrolmeta.exe_1649]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta\FlowControlMeta.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[binaryrmw.exe_2612]
+RelativePath=JIT\CodeGenBringUpTests\BinaryRMW\BinaryRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\BinaryRMW
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesand.exe_1662]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd\OpCodesAnd.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28927.exe_4950]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927\b28927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletodatetime.exe_1326]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime\Int16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeutcnow.exe_965]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeUtcNow\DateTimeUtcNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeUtcNow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16tostring4.exe_2479]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString4\UInt16ToString4.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimehour.exe_938]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeHour\DateTimeHour.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeHour
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[targetinvocationexceptionctor1.exe_2015]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1\TargetInvocationExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b152292.exe_5556]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292\b152292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletochar.exe_1352]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToChar\Int64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b55197.exe_5282]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197\b55197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[exploit.exe_5785]
+RelativePath=Loader\classloader\methodoverriding\regressions\549411\exploit\exploit.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\549411\exploit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_normalizestack.exe_4747]
+RelativePath=JIT\opt\Inline\Inline_NormalizeStack\Inline_NormalizeStack.exe
+WorkingDir=JIT\opt\Inline\Inline_NormalizeStack
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class2_cs_d.exe_3157]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_d\class2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariscontrol1.exe_443]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl1\CharIsControl1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_r.exe_4338]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[parameterattributesin.exe_2006]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn\ParameterAttributesIn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test1337.exe_5864]
+RelativePath=Regressions\coreclr\1337\Test1337\Test1337.exe
+WorkingDir=Regressions\coreclr\1337\Test1337
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dayofweekwednesday.exe_975]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday\DayOfWeekWednesday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_18.exe_812]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_18\ConvertToInt64_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cse1_cs_ro.exe_2853]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_ro\cse1_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1535.exe_5869]
+RelativePath=Regressions\coreclr\1535\Test1535\Test1535.exe
+WorkingDir=Regressions\coreclr\1535\Test1535
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringconcat6.exe_2195]
+RelativePath=CoreMangLib\cti\system\string\StringConcat6\StringConcat6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltruncate.exe_1023]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTruncate\DecimalTruncate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTruncate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16gethashcode.exe_1322]
+RelativePath=CoreMangLib\cti\system\int16\Int16GetHashCode\Int16GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringformat2.exe_2207]
+RelativePath=CoreMangLib\cti\system\string\StringFormat2\StringFormat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u4div_cs_ro.exe_3824]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_ro\u4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badimageformatexceptiontostring.exe_372]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString\BadImageFormatExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rels_ldsfld_mulovf.exe_4129]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf\_speed_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbglcs_long.exe_4054]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_long\_il_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[b34952.exe_5207]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952\b34952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31493.exe_5186]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493\b31493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr4d_il_d.exe_4042]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_d\convr4d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uintptrctor_uint32.exe_2533]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32\UIntPtrCtor_UInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8div_cs_do.exe_3818]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_do\r8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[_il_relgcval_sideeffect.exe_4581]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_sideeffect\_il_relgcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_sideeffect
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldobj_i8.exe_4694]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8\_il_dbgldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32tryparse.exe_2508]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32TryParse\UInt32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rels_ldc_mulovf.exe_4107]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mulovf\_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryspacingcombiningmark.exe_1253]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark\UnicodeCategorySpacingCombiningMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodetypenternal.exe_1892]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal\OpCodeTypeNternal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relftn_t.exe_4246]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relftn_t\_il_relftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletouint32.exe_441]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt32\CharIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcatchfinally_ind.exe_4292]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind\_il_dbgcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgldc_mul.exe_4170]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul\_speed_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartulong_2.exe_236]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_2\ThreadStartULong_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[byteequals1.exe_397]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals1\ByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05617.exe_5001]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617\b05617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[flowgraph.exe_4033]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph\flowgraph.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relselfref.exe_3625]
+RelativePath=JIT\Methodical\Arrays\misc\_relselfref\_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli_qsort2.exe_3900]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2\_il_reli_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend10.exe_2294]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10\StringBuilderAppend10.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar12.exe_735]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar12\ConvertToChar12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringiconvertibletoint32.exe_2214]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt32\StringIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch1b.exe_265]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1b\ArrayBinarySearch1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryienumerablegetenumerator.exe_530]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator\DictionaryIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[seekoriginbegin.exe_1460]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin\SeekOriginBegin.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[overlddiv_cs_do.exe_3810]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_do\overlddiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27873.exe_5037]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873\b27873.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletosingle.exe_2494]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle\UInt32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret2_1.exe_3415]
+RelativePath=JIT\jit64\gc\misc\structret2_1\structret2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesrem.exe_1839]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem\OpCodesRem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b36332.exe_5050]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332\b36332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nativeint_il_d.exe_3042]
+RelativePath=JIT\Directed\shift\nativeint_il_d\nativeint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop4_cs_ro.exe_3115]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_ro\loop4_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldfldstatic1_il_r.exe_2832]
+RelativePath=JIT\Directed\coverage\importer\ldfldstatic1_il_r\ldfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldstatic1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8_cs_ro.exe_3662]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_ro\r8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26323.exe_4786]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323\b26323.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+[b14770.exe_4861]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770\b14770.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04250.exe_4988]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250\b04250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add1.exe_2601]
+RelativePath=JIT\CodeGenBringUpTests\Add1\Add1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Add1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimploptionspreservesig.exe_2064]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig\MethodImplOptionsPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case11.exe_5770]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11\case11.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16_d.exe_3050]
+RelativePath=JIT\Directed\shift\uint16_d\uint16_d.exe
+WorkingDir=JIT\Directed\shift\uint16_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[comparisonbegininvoke.exe_706]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke\ComparisonBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b04083.exe_4987]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083\b04083.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclflddiv_cs_r.exe_2866]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_r\lclflddiv_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct7_1.exe_3391]
+RelativePath=JIT\jit64\gc\misc\struct7_1\struct7_1.exe
+WorkingDir=JIT\jit64\gc\misc\struct7_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test2.exe_3574]
+RelativePath=JIT\jit64\regress\vsw\575343\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_reltest1.exe_4216]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_reltest1\_speed_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_reltest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intrinsictest_overflow.exe_2923]
+RelativePath=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow\IntrinsicTest_Overflow.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2823
+[equalitycomparerequals.exe_585]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals\EqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanctor2.exe_2393]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor2\TimeSpanCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[co6031gethashcode.exe_2570]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode\Co6031GetHashCode.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectioncopyto.exe_556]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo\DictionaryValueCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49717.exe_5173]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717\b49717.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcompat_obj.exe_4571]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_obj\_il_relcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_obj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b63552.exe_5337]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552\b63552.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartfloat_3.exe_202]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat_3\ThreadStartFloat_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[short_cs_r.exe_4382]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_r\short_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charsetunicode.exe_2074]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode\CharSetUnicode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_do.exe_4429]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_and_op_cs_d.exe_2756]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_d\Bool_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcastclass_catch.exe_3751]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch\_il_dbgcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4nandiv_cs_d.exe_4464]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_d\r4NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_r8_i.exe_3316]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i\ldc_conv_ovf_r8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4nanadd_cs_d.exe_4460]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_d\r4NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b113286.exe_5638]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286\b113286.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrecurse_tail_call.exe_4240]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call\_il_dbgrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbgt_un_s.exe_1673]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S\OpCodesBgt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgvcall.exe_4678]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgvcall\_speed_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgvcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b61185.exe_5328]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185\b61185.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[randomnext2.exe_1604]
+RelativePath=CoreMangLib\cti\system\random\RandomNext2\RandomNext2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relptr_types.exe_4318]
+RelativePath=JIT\Methodical\ldtoken\_il_relptr_types\_il_relptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relptr_types
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeformatinfogetmonthname.exe_1156]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName\DateTimeFormatInfoGetMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryinitialquotepunctuation.exe_1236]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation\UnicodeCategoryInitialQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nansub_cs_d.exe_4496]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_d\r8NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32.exe_791]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32\ConvertToInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lifetime1.exe_2958]
+RelativePath=JIT\Directed\lifetime\lifetime1\lifetime1.exe
+WorkingDir=JIT\Directed\lifetime\lifetime1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[expl_funcptr_gc_d.exe_3959]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d\expl_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldadd_cs_do.exe_2861]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_do\lclfldadd_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[25param3b_il_d.exe_4201]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_d\25param3b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathispathrooted.exe_1455]
+RelativePath=CoreMangLib\cti\system\io\path\PathIsPathRooted\PathIsPathRooted.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathIsPathRooted
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyte_cs_do.exe_4377]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do\sbyte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesreuseslot.exe_1985]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot\MethodAttributesReuseSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleaniconvertibletochar.exe_380]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar\BooleanIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b10665.exe_4823]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665\b10665.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegetelementtype.exe_2420]
+RelativePath=CoreMangLib\cti\system\type\TypeGetElementType\TypeGetElementType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetElementType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgfr4.exe_4262]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr4\_il_dbgfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sealedcastvariance.exe_4029]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance\sealedCastVariance.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b54566.exe_5278]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566\b54566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_relexplicit1.exe_3985]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit1\_opt_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested-try-catch10.exe_22]
+RelativePath=baseservices\exceptions\generics\nested-try-catch10\nested-try-catch10.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_muldiv.exe_4094]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_muldiv\_il_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_i.exe_1773]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I\OpCodesLdelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourvarpop.exe_1949]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop\StackBehaviourVarpop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listicollectioncopyto.exe_632]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo\ListICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b45541.exe_5138]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541\b45541.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gentonongen02.exe_3198]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen02\gentonongen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b63183.exe_5336]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183\b63183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimector1.exe_931]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor1\DateTimeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_add_ovf_i8.exe_3304]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8\ldc_add_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespannegate.exe_2404]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanNegate\TimeSpanNegate.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanNegate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b04583.exe_4995]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583\b04583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise1b_cs_d.exe_3770]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_d\precise1b_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-struct09.exe_37]
+RelativePath=baseservices\exceptions\generics\try-catch-struct09\try-catch-struct09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct09
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringjoin1.exe_2225]
+RelativePath=CoreMangLib\cti\system\string\StringJoin1\StringJoin1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test2.exe_3432]
+RelativePath=JIT\jit64\gc\misc\test2\test2.exe
+WorkingDir=JIT\jit64\gc\misc\test2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40089.exe_4781]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089\b40089.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathe.exe_1486]
+RelativePath=CoreMangLib\cti\system\math\MathE\MathE.exe
+WorkingDir=CoreMangLib\cti\system\math\MathE
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring28.exe_860]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString28\ConvertToString28.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString28
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param3a_cs_r.exe_4199]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_r\25param3a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread25.exe_140]
+RelativePath=baseservices\threading\generics\threadstart\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread25
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[overflowexceptionctor3.exe_1593]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3\OverflowExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gentogen03.exe_3196]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen03\gentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14640.exe_4808]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640\b14640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalgetlastwin32error_psc.exe_2088]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalGetLastWin32Error_PSC\MarshalGetLastWin32Error_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalGetLastWin32Error_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectionisreadonly2.exe_506]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2\DictionaryICollectionIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6414.exe_916]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6414\ConvertToUInt6414.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6414
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedaddint_2.exe_151]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_2\InterlockedAddInt_2.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[cond32_il_d.exe_4456]
+RelativePath=JIT\Methodical\NaN\cond32_il_d\cond32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[operandtypeinlinetype.exe_1907]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType\OperandTypeInlineType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryentryvalue.exe_483]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue\DictionaryEntryValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedaddint_1.exe_150]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_1\InterlockedAddInt_1.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[charminvalue.exe_468]
+RelativePath=CoreMangLib\cti\system\char\CharMinValue\CharMinValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05622.exe_5004]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622\b05622.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16895.exe_4887]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895\b16895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgisinst_call.exe_3695]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_call\_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbytetostring2.exe_2147]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteToString2\SByteToString2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41470.exe_5091]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470\b41470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberformatinfocurrencygroupseparator.exe_1176]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator\NumberFormatInfoCurrencyGroupSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetcharcount.exe_2355]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount\UTF8EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_passing_class01.exe_3231]
+RelativePath=JIT\Generics\Fields\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadculture.exe_5826]
+RelativePath=Regressions\common\ThreadCulture\ThreadCulture.exe
+WorkingDir=Regressions\common\ThreadCulture
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exchangetstring_1.exe_168]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString_1\ExchangeTString_1.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[try-catch-struct08.exe_36]
+RelativePath=baseservices\exceptions\generics\try-catch-struct08\try-catch-struct08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedcompareexchange7.exe_2372]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7\InterlockedCompareExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpushi.exe_1944]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi\StackBehaviourPushi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b10802.exe_5685]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802\b10802.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltosbyte.exe_1014]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSByte\DecimalToSByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_hndindex_10_reordered.exe_5589]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered\Test_HndIndex_10_Reordered.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_r8_i4.exe_3317]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4\ldc_conv_ovf_r8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28597.exe_4943]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597\b28597.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b489329.exe_5551]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329\b489329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gcwaitforpendingfinalizers.exe_1109]
+RelativePath=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers\GCWaitForPendingFinalizers.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgdeep2.exe_4227]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep2\_il_dbgdeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcsbas.exe_3583]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbas\_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbas
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[_speed_rels_addsub.exe_4122]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_addsub\_speed_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b323557-dbg.exe_5537]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg\b323557-dbg.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompare6.exe_2185]
+RelativePath=CoreMangLib\cti\system\string\StringCompare6\StringCompare6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tailcall.exe_4506]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall\tailcall.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[params-value.exe_5479]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value\params-value.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested-try-catch09.exe_21]
+RelativePath=baseservices\exceptions\generics\nested-try-catch09\nested-try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch09
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lazyttf.exe_2573]
+RelativePath=CoreMangLib\system\lazyt\LazyTTF\LazyTTF.exe
+WorkingDir=CoreMangLib\system\lazyt\LazyTTF
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relexplicit2.exe_3994]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit2\_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b35348.exe_5211]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348\b35348.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[tailcallcases.exe_4726]
+RelativePath=JIT\opt\ETW\TailCallCases\TailCallCases.exe
+WorkingDir=JIT\opt\ETW\TailCallCases
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[nested-try-catch02.exe_14]
+RelativePath=baseservices\exceptions\generics\nested-try-catch02\nested-try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgobj.exe_4285]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_dbgobj\_speed_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_dbgobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletouint64.exe_1308]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64\Int32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareinfoissuffix.exe_1122]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIsSuffix\CompareInfoIsSuffix.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIsSuffix
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relcastclass_newobj.exe_3736]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj\_speed_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32gethashcode.exe_2484]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32GetHashCode\UInt32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relisinst_call.exe_3712]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_call\_il_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcompat_i4_i1.exe_4568]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_i1\_il_relcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ver_fg_13.exe_3579]
+RelativePath=JIT\jit64\verif\sniff\fg\ver_fg_13\ver_fg_13.exe
+WorkingDir=JIT\jit64\verif\sniff\fg\ver_fg_13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletoint32.exe_1057]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32\DoubleIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[minopts_convu1.exe_2821]
+RelativePath=JIT\Directed\Convert\minopts_convu1\minopts_convu1.exe
+WorkingDir=JIT\Directed\Convert\minopts_convu1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof4.exe_308]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4\ArrayIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cpblk3_il_d.exe_4689]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_d\cpblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvirtftn_t.exe_4245]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t\_il_dbgvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[minmax.exe_5754]
+RelativePath=JIT\SIMD\MinMax\MinMax.exe
+WorkingDir=JIT\SIMD\MinMax
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[version_parsing.exe_2575]
+RelativePath=CoreMangLib\system\version\Version_Parsing\Version_Parsing.exe
+WorkingDir=CoreMangLib\system\version\Version_Parsing
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletouint16.exe_2496]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16\UInt32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring8.exe_870]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString8\ConvertToString8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_i4_i1.exe_3311]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1\ldc_conv_ovf_i4_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt4_cs_do.exe_3180]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_do\vt4_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_r8.exe_1779]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8\OpCodesLdelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relvolatile.exe_4674]
+RelativePath=JIT\Methodical\VT\identity\_il_relvolatile\_il_relvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relvolatile
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filemodecreate.exe_1417]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreate\FileModeCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[149926.exe_2587]
+RelativePath=GC\Regressions\v2.0-beta1\149926\149926\149926.exe
+WorkingDir=GC\Regressions\v2.0-beta1\149926\149926
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104;LONG_RUNNING
+[versionequals2.exe_2550]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals2\VersionEquals2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedincrement1.exe_2379]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1\InterlockedIncrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[int32parse3.exe_1313]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse3\Int32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[comparerdefault.exe_487]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault\ComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct4_2.exe_3380]
+RelativePath=JIT\jit64\gc\misc\struct4_2\struct4_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldloca.exe_2992]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\ldloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b611219.exe_5571]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219\b611219.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[testclass.exe_5824]
+RelativePath=Regressions\common\testClass\testClass.exe
+WorkingDir=Regressions\common\testClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[overflowexceptionctor1.exe_1591]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1\OverflowExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetbytecount3.exe_2270]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3\EncodingGetByteCount3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcastclass_ldloc.exe_3711]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc\_il_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64_ro.exe_3065]
+RelativePath=JIT\Directed\shift\uint64_ro\uint64_ro.exe
+WorkingDir=JIT\Directed\shift\uint64_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59948.exe_5318]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948\b59948.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[not-int32.exe_2600]
+RelativePath=JIT\BBT\Scenario4\Not-Int32\Not-Int32.exe
+WorkingDir=JIT\BBT\Scenario4\Not-Int32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletoint16.exe_406]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16\ByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblyattrs.exe_5807]
+RelativePath=Loader\versioning\coverage\AssemblyAttrs\AssemblyAttrs.exe
+WorkingDir=Loader\versioning\coverage\AssemblyAttrs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4rem_cs_r.exe_3847]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_r\r4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b602004.exe_5564]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004\b602004.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringtrim1.exe_2243]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1\StringTrim1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread04.exe_119]
+RelativePath=baseservices\threading\generics\threadstart\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[mathieeeremainder.exe_1489]
+RelativePath=CoreMangLib\cti\system\math\MathIEEERemainder\MathIEEERemainder.exe
+WorkingDir=CoreMangLib\cti\system\math\MathIEEERemainder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;DBG_PASS;NEED_TRIAGE
+[listienumerablegetenumerator.exe_636]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator\ListIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringconcat5.exe_2194]
+RelativePath=CoreMangLib\cti\system\string\StringConcat5\StringConcat5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectionremove.exe_509]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove\DictionaryICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i_un.exe_1717]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un\OpCodesConv_Ovf_I_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring25.exe_857]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString25\ConvertToString25.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString25
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[flowcontrolreturn.exe_1651]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn\FlowControlReturn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lifetime2.exe_2959]
+RelativePath=JIT\Directed\lifetime\lifetime2\lifetime2.exe
+WorkingDir=JIT\Directed\lifetime\lifetime2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[compareexchangelong_3.exe_160]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3\CompareExchangeLong_3.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[arrgetlen_il_r.exe_2848]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_r\arrgetlen_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[runtimemethodhandleequals.exe_2122]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals\RuntimeMethodHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_o.exe_3948]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_o\_il_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbggcval_nested.exe_4555]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_nested\_il_dbggcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_nested
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringpadleft2.exe_2230]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft2\StringPadLeft2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret4_3.exe_3423]
+RelativePath=JIT\jit64\gc\misc\structret4_3\structret4_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble14.exe_767]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble14\ConvertToDouble14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryconnectorpunctuation.exe_1229]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation\UnicodeCategoryConnectorPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35635.exe_5216]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635\b35635.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_5.exe_801]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_5\ConvertToInt32_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[baseclass04.exe_3236]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass04\baseclass04.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u8rem_cs_ro.exe_3860]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_ro\u8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_1.exe_777]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_1\ConvertToInt16_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_mul_ovf_i1.exe_3330]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1\ldc_mul_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletouint16.exe_2138]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16\SByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44018.exe_4783]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018\b44018.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltouint64.exe_1022]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt64\DecimalToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartfloat_2.exe_201]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat_2\ThreadStartFloat_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[struct03.exe_3295]
+RelativePath=JIT\Generics\Typeof\struct03\struct03.exe
+WorkingDir=JIT\Generics\Typeof\struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b70267.exe_5367]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267\b70267.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgldsfld_mulovf.exe_4175]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf\_speed_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesinitonly.exe_1961]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly\FieldAttributesInitOnly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[caninline_r.exe_3506]
+RelativePath=JIT\jit64\opt\inl\caninline_r\caninline_r.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nandiv_cs_d.exe_4484]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_d\r8NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_18.exe_797]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_18\ConvertToInt32_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesstatic.exe_1988]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic\MethodAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbglcsvalbox.exe_3588]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsvalbox\_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsvalbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesnestedfamily.exe_2034]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily\TypeAttributesNestedFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinliner.exe_1902]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR\OperandTypeInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[init_int64.exe_3119]
+RelativePath=JIT\Directed\zeroinit\init_int64\init_int64.exe
+WorkingDir=JIT\Directed\zeroinit\init_int64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblynamegetpublickey.exe_1627]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey\AssemblyNameGetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[argumentoutofrangeexceptionctor.exe_260]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor\ArgumentOutOfRangeExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[generic_test_csharp_base_4.exe_2741]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4\Generic_Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01_instance.exe_3135]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance\Struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp2_1.exe_3401]
+RelativePath=JIT\jit64\gc\misc\structfp2_1\structfp2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartint_2.exe_207]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt_2\ThreadStartInt_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b45270.exe_5134]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270\b45270.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret3_3.exe_3420]
+RelativePath=JIT\jit64\gc\misc\structret3_3\structret3_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test_noalloca.exe_3434]
+RelativePath=JIT\jit64\gc\misc\test_noalloca\test_noalloca.exe
+WorkingDir=JIT\jit64\gc\misc\test_noalloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[args3.exe_4729]
+RelativePath=JIT\opt\Inline\args3\args3.exe
+WorkingDir=JIT\opt\Inline\args3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bbcnt1.exe_4767]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[format.exe_4522]
+RelativePath=JIT\Methodical\refany\format\format.exe
+WorkingDir=JIT\Methodical\refany\format
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgdeep_gc.exe_4550]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_gc\_il_dbgdeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_gc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_or_op_cs_r.exe_2782]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_r\Double_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodaccessexceptionctor2.exe_1536]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2\MethodAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relctor_recurse.exe_4646]
+RelativePath=JIT\Methodical\VT\etc\_relctor_recurse\_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_relctor_recurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_17.exe_796]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_17\ConvertToInt32_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgisinst_call.exe_3703]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_call\_il_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dayofweekmonday.exe_970]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday\DayOfWeekMonday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow1.exe_2931]
+RelativePath=JIT\Directed\intrinsic\pow\pow1\pow1.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[_il_relbinop.exe_4069]
+RelativePath=JIT\Methodical\int64\misc\_il_relbinop\_il_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanequals3.exe_2399]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals3\TimeSpanEquals3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw610378.exe_3578]
+RelativePath=JIT\jit64\regress\vsw\610378\vsw610378\vsw610378.exe
+WorkingDir=JIT\jit64\regress\vsw\610378\vsw610378
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[testint.exe_5791]
+RelativePath=Loader\classloader\regressions\123413\testint\testint.exe
+WorkingDir=Loader\classloader\regressions\123413\testint
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dbladdconst.exe_2617]
+RelativePath=JIT\CodeGenBringUpTests\DblAddConst\DblAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAddConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[seekorigincurrent.exe_1461]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent\SeekOriginCurrent.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpop0.exe_1922]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0\StackBehaviourPop0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_0.exe_1757]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0\OpCodesLdc_I4_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesprefix6.exe_1833]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6\OpCodesPrefix6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_ro.exe_4431]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedcompareexchange5.exe_2370]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5\InterlockedCompareExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletodouble.exe_1299]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDouble\Int32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bytetryparse.exe_423]
+RelativePath=CoreMangLib\cti\system\byte\ByteTryParse\ByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbggcval_sideeffect.exe_4556]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_sideeffect\_il_dbggcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_sideeffect
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalone.exe_997]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalOne\DecimalOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalOne
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[factorialrec.exe_2640]
+RelativePath=JIT\CodeGenBringUpTests\FactorialRec\FactorialRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FactorialRec
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint64.exe_910]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt64\ConvertToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relldc_mulovf.exe_4179]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf\_speed_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesprefix4.exe_1831]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4\OpCodesPrefix4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinei.exe_1898]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI\OperandTypeInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102763.exe_5700]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763\b102763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nanmul_cs_ro.exe_4491]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_ro\r8NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b34423.exe_4981]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423\b34423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relarray.exe_3666]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relarray\_il_relarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relarray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalconstantattributevalue.exe_2069]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue\DecimalConstantAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct9_2.exe_3394]
+RelativePath=JIT\jit64\gc\misc\struct9_2\struct9_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct9_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgisinst_call.exe_3729]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_call\_speed_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25459.exe_4900]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459\b25459.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodetypeprimitive.exe_1895]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive\OpCodeTypePrimitive.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16_ro.exe_3053]
+RelativePath=JIT\Directed\shift\uint16_ro\uint16_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byte_cs_r.exe_4350]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_r\byte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysetvalue2b.exe_327]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2b\ArraySetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_r.exe_4326]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[_il_reldeep_array_nz.exe_4574]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array_nz\_il_reldeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array_nz
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relldfld_mulovf.exe_4157]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf\_il_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_equalnull_class01.exe_3229]
+RelativePath=JIT\Generics\Fields\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keyvaluepairtostring.exe_612]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString\KeyValuePairToString.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singlereleasewriteddbug71632.exe_241]
+RelativePath=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632\SingleReleaseWriteDDBug71632.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[fpmath.exe_2661]
+RelativePath=JIT\CodeGenBringUpTests\FPMath\FPMath.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMath
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstind_i.exe_1859]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I\OpCodesStind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesnumber.exe_1196]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber\NumberStylesNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringgethashcode.exe_2209]
+RelativePath=CoreMangLib\cti\system\string\StringGetHashCode\StringGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b89546.exe_5449]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546\b89546.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsordinal.exe_1130]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal\CompareOptionsOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_reljumps.exe_4627]
+RelativePath=JIT\Methodical\VT\callconv\_reljumps\_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumps
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_i2.exe_3921]
+RelativePath=JIT\Methodical\explicit\basic\refarg_i2\refarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sp1c.exe_3092]
+RelativePath=JIT\Directed\StructPromote\SP1c\SP1c.exe
+WorkingDir=JIT\Directed\StructPromote\SP1c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[char_cs_r.exe_4354]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_r\char_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ulong_cs_r.exe_4390]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_r\ulong_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b15797.exe_4815]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797\b15797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_qsort2.exe_3913]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2\_il_relu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47080.exe_5154]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080\b47080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[verify01_dynamic.exe_4319]
+RelativePath=JIT\Methodical\localloc\verify\verify01_dynamic\verify01_dynamic.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_dynamic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint8_cs_d.exe_3066]
+RelativePath=JIT\Directed\shift\uint8_cs_d\uint8_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[missingmethodexceptionctor3.exe_1548]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3\MissingMethodExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case8.exe_5780]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8\case8.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise1b_cs_r.exe_3772]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_r\precise1b_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof1b.exe_303]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1b\ArrayIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50033.exe_5245]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033\b50033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43160.exe_5109]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160\b43160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletoint64.exe_1058]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64\DoubleIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inlinethrow.exe_4740]
+RelativePath=JIT\opt\Inline\InlineThrow\InlineThrow.exe
+WorkingDir=JIT\opt\Inline\InlineThrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_equalnull_struct01.exe_3283]
+RelativePath=JIT\Generics\Parameters\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesjmp.exe_1747]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp\OpCodesJmp.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class_static01.exe_3267]
+RelativePath=JIT\Generics\MemberAccess\class_static01\class_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetstring.exe_2288]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetString\EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbghan3_ctor.exe_4642]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ctor\_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartsbyte_2.exe_223]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_2\ThreadStartSByte_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[i4div_cs_ro.exe_3803]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_ro\i4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionarycount.exe_493]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount\DictionaryCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefloc_i1.exe_3951]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i1\_il_relrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jittailcall2.exe_2920]
+RelativePath=JIT\Directed\IL\Tailcall\JitTailcall2\JitTailcall2.exe
+WorkingDir=JIT\Directed\IL\Tailcall\JitTailcall2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring23.exe_855]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString23\ConvertToString23.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString23
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimetolocaltime.exe_961]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToLocalTime\DateTimeToLocalTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToLocalTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar7.exe_742]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar7\ConvertToChar7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess3_cs_ro.exe_3085]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_ro\straccess3_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loopvt.exe_5584]
+RelativePath=JIT\Regression\Dev11\dev10_94677\loopvt\loopvt.exe
+WorkingDir=JIT\Regression\Dev11\dev10_94677\loopvt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespantickspersecond.exe_2409]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond\TimeSpanTicksPerSecond.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25parammixed_il_r.exe_4206]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_r\25paramMixed_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[circleinconvex.exe_5744]
+RelativePath=JIT\SIMD\CircleInConvex\CircleInConvex.exe
+WorkingDir=JIT\SIMD\CircleInConvex
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versiontostring1.exe_2554]
+RelativePath=CoreMangLib\cti\system\version\VersionToString1\VersionToString1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b75890.exe_5410]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890\b75890.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pinnedmany.exe_2584]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMany\PinnedMany.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMany
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b26496.exe_5716]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496\b26496.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[unicodeencodinggetbytes2.exe_2337]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2\UnicodeEncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbglcsval.exe_3605]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsval\_speed_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102887.exe_5678]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887\b102887.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[caninline_do.exe_3505]
+RelativePath=JIT\jit64\opt\inl\caninline_do\caninline_do.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listlastindexof2.exe_651]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2\ListLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartgenerics_3.exe_205]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics_3\ThreadStartGenerics_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[ldc_sub_ovf_u1.exe_3351]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1\ldc_sub_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeinlinei8.exe_1899]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8\OperandTypeInlineI8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b40721.exe_5079]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721\b40721.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+[stringlength.exe_2227]
+RelativePath=CoreMangLib\cti\system\string\StringLength\StringLength.exe
+WorkingDir=CoreMangLib\cti\system\string\StringLength
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[notsupportedexceptionctor3.exe_1560]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3\NotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[packingsizesize128.exe_1917]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128\PackingSizeSize128.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_opt_relexplicit4.exe_3988]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit4\_opt_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rels_ldsfld_mul.exe_4110]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mul\_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instrcnt1.exe_4723]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exceptionctor1.exe_1095]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor1\ExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b46847.exe_4788]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847\b46847.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_i1.exe_1704]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1\OpCodesConv_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletosingle.exe_2468]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle\UInt16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[propertyattributesspecialname.exe_2014]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName\PropertyAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nested-try-catch08.exe_20]
+RelativePath=baseservices\exceptions\generics\nested-try-catch08\nested-try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gt1.exe_2673]
+RelativePath=JIT\CodeGenBringUpTests\Gt1\Gt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102962b.exe_5523]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b\b102962b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingctor1.exe_2265]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingCtor1\EncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletodatetime.exe_1353]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime\Int64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw491577_2.exe_5789]
+RelativePath=Loader\classloader\nesting\coreclr\VSW491577_2\VSW491577_2.exe
+WorkingDir=Loader\classloader\nesting\coreclr\VSW491577_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[arithm64_ro.exe_4451]
+RelativePath=JIT\Methodical\NaN\arithm64_ro\arithm64_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[queuecontains.exe_660]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueContains\QueueContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convertfrombase64string.exe_713]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64String\ConvertFromBase64String.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64String
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgtest_switch.exe_4564]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_switch\_il_dbgtest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_switch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubletostring1.exe_1071]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString1\DoubleToString1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint641.exe_911]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt641\ConvertToUInt641.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt641
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[idisposabledispose.exe_1285]
+RelativePath=CoreMangLib\cti\system\idisposable\IDisposableDispose\IDisposableDispose.exe
+WorkingDir=CoreMangLib\cti\system\idisposable\IDisposableDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_5.exe_816]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_5\ConvertToInt64_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[handles.exe_2580]
+RelativePath=GC\Features\HeapExpansion\Handles\Handles.exe
+WorkingDir=GC\Features\HeapExpansion\Handles
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;NEEDS_TRIAGE
+[enumeratorcurrent.exe_671]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent\EnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rethrowandfinally.exe_79]
+RelativePath=baseservices\exceptions\unittests\RethrowAndFinally\RethrowAndFinally.exe
+WorkingDir=baseservices\exceptions\unittests\RethrowAndFinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-struct05.exe_33]
+RelativePath=baseservices\exceptions\generics\try-catch-struct05\try-catch-struct05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstelem_i8.exe_1854]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8\OpCodesStelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldarg_0.exe_1751]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0\OpCodesLdarg_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltoboolean.exe_1004]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToBoolean\DecimalToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gchandletarget_psc.exe_2080]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC\GCHandleTarget_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgaddsub.exe_4169]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgaddsub\_speed_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgaddsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gchandletypenormal.exe_2081]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal\GCHandleTypeNormal.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b63732.exe_5341]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732\b63732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1.exe_3570]
+RelativePath=JIT\jit64\regress\vsw\541067\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\541067\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_relexplicit8.exe_3992]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit8\_opt_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b63730.exe_5340]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730\b63730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i8rem_cs_ro.exe_3840]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_ro\i8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyte_cs_ro.exe_4379]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro\sbyte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relcast_throw.exe_3765]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relcast_throw\_speed_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relcast_throw
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm32_cs_do.exe_4437]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_do\arithm32_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cpropoverflow.exe_4720]
+RelativePath=JIT\opt\AssertionPropagation\CPropOverflow\CPropOverflow.exe
+WorkingDir=JIT\opt\AssertionPropagation\CPropOverflow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[staticfieldexpr1_r.exe_3500]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r\staticFieldExpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr4a_cs_ro.exe_4041]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_ro\convr4a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4rem_cs_ro.exe_3848]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_ro\r4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-finally-struct03.exe_25]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct03\try-catch-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort11.exe_330]
+RelativePath=CoreMangLib\cti\system\array\ArraySort11\ArraySort11.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[matrixmul_o.exe_3538]
+RelativePath=JIT\jit64\opt\rngchk\MatrixMul_o\MatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\MatrixMul_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathtoolongexceptionctor1.exe_1458]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1\PathTooLongExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gchandletypepinned.exe_2082]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned\GCHandleTypePinned.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublearr_cs_ro.exe_4419]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandleisclosed_psc.exe_2110]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC\SafeHandleIsClosed_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b45535.exe_5137]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535\b45535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsstringsort.exe_1132]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort\CompareOptionsStringSort.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[badimageformatexceptionctor2.exe_369]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2\BadImageFormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort2b.exe_336]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2b\ArraySort2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgs_ldc_div.exe_4078]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_div\_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b51515.exe_5255]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515\b51515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt3_cs_d.exe_3173]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_d\vt3_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal15.exe_753]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal15\ConvertToDecimal15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_cs_d.exe_4344]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_d\bool_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble16.exe_769]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble16\ConvertToDouble16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lvrefcnt1.exe_4775]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structarr_cs_ro.exe_4435]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcs.exe_4681]
+RelativePath=JIT\Methodical\VT\port\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[arraysort14.exe_333]
+RelativePath=CoreMangLib\cti\system\array\ArraySort14\ArraySort14.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;REQ_LARGE_GEN0
+[607586.exe_3577]
+RelativePath=JIT\jit64\regress\vsw\607586\607586\607586.exe
+WorkingDir=JIT\jit64\regress\vsw\607586\607586
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble5.exe_771]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble5\ConvertToDouble5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodestakessinglebyteargument.exe_1882]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument\OpCodesTakesSingleByteArgument.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal5.exe_758]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal5\ConvertToDecimal5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b69512.exe_5364]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512\b69512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsproperty.exe_363]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty\AttributeTargetsProperty.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodingctor1.exe_2333]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1\UnicodeEncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint328.exe_908]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt328\ConvertToUInt328.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt328
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfoisneutralculture.exe_1141]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture\CultureInfoIsNeutralCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[parameterattributesout.exe_2009]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut\ParameterAttributesOut.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress2_d.exe_3460]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_d\CgStress2_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[general_class_static01.exe_3210]
+RelativePath=JIT\Generics\Exceptions\general_class_static01\general_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorymathsymbol.exe_1240]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol\UnicodeCategoryMathSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cse2_cs_r.exe_2856]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_r\cse2_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring13.exe_844]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString13\ConvertToString13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesendfinally.exe_1742]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally\OpCodesEndfinally.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b72828.exe_5395]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828\b72828.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraylastindexof2.exe_313]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2\ArrayLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgrecurseaca_do.exe_3449]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do\CGRecurseACA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp2_3.exe_3403]
+RelativePath=JIT\jit64\gc\misc\structfp2_3\structfp2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794115_ro.exe_5610]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro\DevDiv_794115_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relconvovf_i8_i.exe_3890]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i\_il_relconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldc_div.exe_4096]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_div\_il_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[checkaddint_1.exe_146]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_1\CheckAddInt_1.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[opcodesldind_ref.exe_1794]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref\OpCodesLdind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[trycatch.exe_4765]
+RelativePath=JIT\opt\Inline\trycatch\trycatch.exe
+WorkingDir=JIT\opt\Inline\trycatch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b52838.exe_5263]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838\b52838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dontusenetmodule.exe_5802]
+RelativePath=Loader\multimodule\DontUseNetmodule\DontUseNetmodule.exe
+WorkingDir=Loader\multimodule\DontUseNetmodule
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8flat_cs_ro.exe_3642]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_ro\i8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise2_cs_ro.exe_3781]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_ro\precise2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keycollectionctor.exe_548]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor\KeyCollectionCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44984.exe_5130]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984\b44984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparisonordinal.exe_2255]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal\StringComparisonOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_cs_d.exe_4368]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_d\int_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstobj.exe_1873]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj\OpCodesStobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionaryisfixedsize.exe_515]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize\DictionaryIDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletodouble.exe_405]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble\ByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalzero.exe_1025]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalZero\DecimalZero.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalZero
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gc_ctor_il_r.exe_4595]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_r\gc_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+[delegstaticftn.exe_4735]
+RelativePath=JIT\opt\Inline\DelegStaticFtn\DelegStaticFtn.exe
+WorkingDir=JIT\opt\Inline\DelegStaticFtn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listilistindexof.exe_640]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf\ListIListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble6.exe_772]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble6\ConvertToDouble6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartneg3.exe_213]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg3\ThreadStartNeg3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret2_2.exe_3416]
+RelativePath=JIT\jit64\gc\misc\structret2_2\structret2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_i4.exe_1776]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4\OpCodesLdelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldobj_r8.exe_4702]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8\_il_relldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcsbas.exe_3593]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbas\_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbas
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[dev10_889822.exe_5798]
+RelativePath=Loader\classloader\regressions\dev10_889822\dev10_889822\dev10_889822.exe
+WorkingDir=Loader\classloader\regressions\dev10_889822\dev10_889822
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32parse1.exe_2501]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse1\UInt32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filesharewrite.exe_1433]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareWrite\FileShareWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareWrite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tailcall_r.exe_4508]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_r\tailcall_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread17.exe_132]
+RelativePath=baseservices\threading\generics\threadstart\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[rethrow.exe_3103]
+RelativePath=JIT\Directed\throwbox\rethrow\rethrow.exe
+WorkingDir=JIT\Directed\throwbox\rethrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relaccum.exe_4679]
+RelativePath=JIT\Methodical\VT\identity\_speed_relaccum\_speed_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listremoverange.exe_654]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange\ListRemoveRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectionsyncroot.exe_510]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot\DictionaryICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_d.exe_4340]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[_speed_dbgval_ctor.exe_4223]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor\_speed_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletoboolean.exe_2165]
+RelativePath=CoreMangLib\cti\system\single\SingleToBoolean\SingleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgrecurseacc_r.exe_3454]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r\CGRecurseACC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_do.exe_4413]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysetvalue1.exe_324]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1\ArraySetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullableequals.exe_1563]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals\NullableEquals.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_peer_1.exe_2752]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1\Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relconst.exe_4712]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relconst\_il_relconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relconst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorycontrol.exe_1230]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl\UnicodeCategoryControl.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringtostring1.exe_2242]
+RelativePath=CoreMangLib\cti\system\string\StringToString1\StringToString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrecurse_tail_calli.exe_4253]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli\_il_relrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[callingconventionshasthis.exe_1639]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis\CallingConventionsHasThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint321.exe_892]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt321\ConvertToUInt321.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt321
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtrueeqdbl.exe_2681]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqDbl\JTrueEqDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_peer_4.exe_2746]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4\Generic_Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14329.exe_4855]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329\b14329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpushref.exe_1948]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref\StackBehaviourPushref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[args1.exe_4727]
+RelativePath=JIT\opt\Inline\args1\args1.exe
+WorkingDir=JIT\opt\Inline\args1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b83690.exe_5431]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690\b83690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[predicatebegininvoke.exe_1598]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateBeginInvoke\PredicateBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateBeginInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8_cs_ro.exe_3646]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_ro\i8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b598034.exe_5562]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034\b598034.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[volatilelocal1.exe_4035]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1\volatileLocal1.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_7.exe_788]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_7\ConvertToInt16_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcastclass_ldarg.exe_3701]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg\_il_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaladd.exe_977]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalAdd\DecimalAdd.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgtest1.exe_4207]
+RelativePath=JIT\Methodical\Invoke\callvirt\_dbgtest1\_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_dbgtest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[seq_funcptr_val_r.exe_3966]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r\seq_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[weakreferenceisalive_psc.exe_2560]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC\WeakReferenceIsAlive_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16_2.exe_783]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_2\ConvertToInt16_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[securityexceptionctor2.exe_2151]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2\SecurityExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingfieldexceptionctor1.exe_1538]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1\MissingFieldExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arglist.exe_2994]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\arglist\arglist.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\arglist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
+[b223932.exe_5501]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932\b223932.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodingequals.exe_2334]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals\UnicodeEncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuildercapacity_cti.exe_2313]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti\StringBuilderCapacity_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringcompare1.exe_2181]
+RelativePath=CoreMangLib\cti\system\string\StringCompare1\StringCompare1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartdelegate_3.exe_196]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate_3\ThreadStartDelegate_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b610562.exe_5568]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562\b610562.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b00722.exe_5503]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722\b00722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletochar.exe_1325]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToChar\Int16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convr4d_il_r.exe_4043]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_r\convr4d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespangethashcode.exe_2401]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode\TimeSpanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32_ro.exe_3035]
+RelativePath=JIT\Directed\shift\int32_ro\int32_ro.exe
+WorkingDir=JIT\Directed\shift\int32_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04384.exe_4992]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384\b04384.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[caninline_ro.exe_3507]
+RelativePath=JIT\jit64\opt\inl\caninline_ro\caninline_ro.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblfillarray.exe_2627]
+RelativePath=JIT\CodeGenBringUpTests\DblFillArray\DblFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblFillArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletoint16.exe_384]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16\BooleanIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[safehandledangerousrelease_psc.exe_2106]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC\SafeHandleDangerousRelease_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrtoint32.exe_1379]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt32\IntPtrToInt32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter001.exe_53]
+RelativePath=baseservices\exceptions\generics\TypeParameter001\TypeParameter001.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter001
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_815940_ro.exe_5618]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro\DevDiv_815940_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeobject.exe_2444]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeObject\TypeCodeObject.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeObject
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[targetparametercountexceptionctor3.exe_2019]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3\TargetParameterCountExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[complex1.exe_2734]
+RelativePath=JIT\Directed\Arrays\Complex1\Complex1.exe
+WorkingDir=JIT\Directed\Arrays\Complex1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread28.exe_143]
+RelativePath=baseservices\threading\generics\threadstart\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread28
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[b518440.exe_3794]
+RelativePath=JIT\Methodical\Coverage\b518440\b518440.exe
+WorkingDir=JIT\Methodical\Coverage\b518440
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobase64chararray.exe_714]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64CharArray\ConvertToBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64CharArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimestyleallowinnerwhite.exe_1163]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite\DateTimeStyleAllowInnerWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b309539.exe_5727]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539\b309539.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[encodinggetbytecount2.exe_2269]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2\EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[expl_double.exe_5872]
+RelativePath=Regressions\expl_double\expl_double\expl_double.exe
+WorkingDir=Regressions\expl_double\expl_double
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b38403.exe_5058]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403\b38403.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40141.exe_5068]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141\b40141.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27819.exe_4931]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819\b27819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal17.exe_755]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal17\ConvertToDecimal17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionarycomparer.exe_490]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer\DictionaryComparer.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class1_cs_ro.exe_3156]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_ro\class1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesvisibilitymask.exe_2046]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask\TypeAttributesVisibilityMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartsbyte_1.exe_222]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_1\ThreadStartSByte_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[ldc_neg_i8.exe_3339]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8\ldc_neg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compex.exe_5817]
+RelativePath=Regressions\common\CompEx\CompEx.exe
+WorkingDir=Regressions\common\CompEx
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesallowcurrencysymbol.exe_1180]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol\NumberStylesAllowCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structinclass.exe_4762]
+RelativePath=JIT\opt\Inline\StructInClass\StructInClass.exe
+WorkingDir=JIT\opt\Inline\StructInClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow0_cs_r.exe_2929]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_r\pow0_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress2_r.exe_3462]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_r\CgStress2_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32303.exe_4974]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303\b32303.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30868.exe_5179]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868\b30868.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgselfref.exe_3620]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgselfref\_il_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ssa_tuisaddr.exe_4023]
+RelativePath=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr\ssa_tuIsAddr.exe
+WorkingDir=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[clscompliantattributeiscompliant.exe_480]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant\CLSCompliantAttributeIsCompliant.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespantostring_str.exe_2410]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanToString_str\TimeSpanToString_str.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanToString_str
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespantotalhours.exe_2412]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalHours\TimeSpanTotalHours.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalHours
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b473131_struct.exe_5597]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_struct\b473131_struct.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_struct
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesprefix3.exe_1830]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3\OpCodesPrefix3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14616.exe_4806]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616\b14616.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegetarrayrank.exe_2419]
+RelativePath=CoreMangLib\cti\system\type\TypeGetArrayRank\TypeGetArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetArrayRank
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28042.exe_4937]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042\b28042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64parse2.exe_1368]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse2\Int64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[testclass.exe_5862]
+RelativePath=Regressions\coreclr\1333\testClass\testClass.exe
+WorkingDir=Regressions\coreclr\1333\testClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84836.exe_5432]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836\b84836.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_no_op_cs_ro.exe_2811]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_ro\Int_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_816617_r.exe_5621]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r\DevDiv_816617_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1.exe_3557]
+RelativePath=JIT\jit64\regress\vsw\333007\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\333007\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend.exe_2292]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend\StringBuilderAppend.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test1.exe_3558]
+RelativePath=JIT\jit64\regress\vsw\336666\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\336666\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listtoarray.exe_657]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListToArray\ListToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListToArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletobyte.exe_2486]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte\UInt32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint_cs_r.exe_4386]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_r\uint_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b52578.exe_5260]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578\b52578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbghanoi.exe_4658]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghanoi\_speed_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghanoi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[case7.exe_5779]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7\case7.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b82247.exe_5427]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247\b82247.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltobyte1.exe_1006]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte1\DecimalToByte1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareoptionsignoresymbols.exe_1127]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols\CompareOptionsIgnoreSymbols.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread08.exe_93]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[b85566.exe_5672]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566\b85566.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[33objref_cs_do.exe_2844]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_do\33objref_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[uint16equals1.exe_2456]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals1\UInt16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[debuggingmodesdisableoptimizations.exe_1036]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations\DebuggingModesDisableOptimizations.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldind_i.exe_1787]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I\OpCodesLdind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldobj_r4.exe_4701]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4\_il_relldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_or_op_cs_do.exe_2765]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_do\Bool_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompareordinal1.exe_2187]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal1\StringCompareOrdinal1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi_flood.exe_3869]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood\_il_dbgi_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singleisnan.exe_2157]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNaN\SingleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNaN
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgnative.exe_4530]
+RelativePath=JIT\Methodical\refany\_il_dbgnative\_il_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgnative
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch02.exe_39]
+RelativePath=baseservices\exceptions\generics\try-catch02\try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16498.exe_4878]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498\b16498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefarg_box_val.exe_3975]
+RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val\_il_dbgrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgselfref.exe_3627]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgselfref\_speed_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ddb125472_gethashcode.exe_348]
+RelativePath=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode\DDB125472_GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesspecialname.exe_2043]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName\TypeAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case2.exe_5774]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2\case2.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint_cs_do.exe_4385]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_do\uint_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt3_il_d.exe_3177]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_d\vt3_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43040.exe_5105]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040\b43040.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingbigendianunicode.exe_2261]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode\EncodingBigEndianUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nandiv_cs_do.exe_4485]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_do\r8NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint161.exe_873]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt161\ConvertToUInt161.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt161
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singletobyte.exe_2166]
+RelativePath=CoreMangLib\cti\system\single\SingleToByte\SingleToByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleaniconvertibletouint16.exe_390]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16\BooleanIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt2_cs_ro.exe_3170]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_ro\vt2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodetypemacro.exe_1891]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro\OpCodeTypeMacro.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtruegeint1.exe_2686]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeInt1\JTrueGeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcs.exe_4685]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[largeobjectalloc.exe_2577]
+RelativePath=GC\Coverage\LargeObjectAlloc\LargeObjectAlloc.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;ISSUE_3104
+[textelementenumeratorgettextelement.exe_1218]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement\TextElementEnumeratorGetTextElement.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b81938.exe_5425]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938\b81938.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring14.exe_845]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString14\ConvertToString14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b119026b.exe_5643]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b\b119026b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeloadexceptionctor1.exe_2451]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1\TypeLoadExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[innerfinally.exe_78]
+RelativePath=baseservices\exceptions\unittests\InnerFinally\InnerFinally.exe
+WorkingDir=baseservices\exceptions\unittests\InnerFinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u8div_cs_r.exe_3827]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_r\u8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vsw577403.exe_5786]
+RelativePath=Loader\classloader\methodoverriding\regressions\577403\vsw577403\vsw577403.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\577403\vsw577403
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanadd_cs_ro.exe_4463]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_ro\r4NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04612.exe_4996]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612\b04612.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45046.exe_4784]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046\b45046.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringisnullorempty.exe_2223]
+RelativePath=CoreMangLib\cti\system\string\StringIsNullOrEmpty\StringIsNullOrEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIsNullOrEmpty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionadd.exe_588]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd\ICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct01.exe_3146]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32093.exe_4973]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093\b32093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldrem_cs_ro.exe_2875]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro\lclfldrem_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[converttouint168.exe_889]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt168\ConvertToUInt168.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt168
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareoptionsordinaligorecase.exe_1131]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase\CompareOptionsOrdinalIgoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct03.exe_3253]
+RelativePath=JIT\Generics\Instantiation\Structs\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4div_cs_do.exe_3801]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_do\i4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev10_863995.exe_3116]
+RelativePath=JIT\Directed\zeroinit\Dev10_863995\Dev10_863995.exe
+WorkingDir=JIT\Directed\zeroinit\Dev10_863995
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rels_ldsfld_mulovf.exe_4111]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf\_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint167.exe_888]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt167\ConvertToUInt167.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt167
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14431.exe_4857]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431\b14431.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initobj.exe_3002]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\initobj\initobj.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\initobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16parse3.exe_1342]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse3\Int16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b66226.exe_5348]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226\b66226.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14067a.exe_4843]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a\b14067a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaldiv_cs_r.exe_3798]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_r\decimaldiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b80043.exe_5422]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043\b80043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4div_cs_r.exe_3802]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_r\i4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanctor3.exe_2394]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor3\TimeSpanCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint329.exe_909]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt329\ConvertToUInt329.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt329
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletoint16.exe_2490]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16\UInt32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16_11.exe_779]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_11\ConvertToInt16_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldfld.exe_5751]
+RelativePath=JIT\SIMD\Ldfld\Ldfld.exe
+WorkingDir=JIT\SIMD\Ldfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbne_un_s.exe_1683]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S\OpCodesBne_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal2.exe_757]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal2\ConvertToDecimal2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_equalnull_class01.exe_3256]
+RelativePath=JIT\Generics\Locals\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcastclass_ldloc.exe_3702]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc\_il_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct04.exe_3139]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04\struct04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relhanoi.exe_4665]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhanoi\_speed_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhanoi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstind_i1.exe_1860]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1\OpCodesStind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesblt_un_s.exe_1681]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S\OpCodesBlt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pinnedcollect.exe_2581]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedCollect\PinnedCollect.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedCollect
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsclass.exe_352]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass\AttributeTargetsClass.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nested-try-catch06.exe_18]
+RelativePath=baseservices\exceptions\generics\nested-try-catch06\nested-try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar9.exe_744]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar9\ConvertToChar9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_popi_popi.exe_1936]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi\StackBehaviourPopref_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singleepsilon.exe_2154]
+RelativePath=CoreMangLib\cti\system\single\SingleEpsilon\SingleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleEpsilon
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_ro.exe_4327]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filter2_d.exe_2948]
+RelativePath=JIT\Directed\leave\filter2_d\filter2_d.exe
+WorkingDir=JIT\Directed\leave\filter2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32tostring3.exe_2506]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString3\UInt32ToString3.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinfogetdayname.exe_1153]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetDayName\DateTimeFormatInfoGetDayName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetDayName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletoint16.exe_434]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt16\CharIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14428.exe_4804]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428\b14428.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nativecallabletest.exe_2598]
+RelativePath=Interop\NativeCallable\NativeCallableTest\NativeCallableTest.exe
+WorkingDir=Interop\NativeCallable\NativeCallableTest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+[invalidoperationexceptionctor1.exe_1387]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1\InvalidOperationExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91203.exe_5455]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203\b91203.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gccollect.exe_1103]
+RelativePath=CoreMangLib\cti\system\gc\GCCollect\GCCollect.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCCollect
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesrequiresecobject.exe_1984]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject\MethodAttributesRequireSecObject.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_passing_class01.exe_3278]
+RelativePath=JIT\Generics\Parameters\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbgt_s.exe_1671]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S\OpCodesBgt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalctor4.exe_982]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor4\DecimalCtor4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgjumper2.exe_4608]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper2\_il_dbgjumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37238.exe_5224]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238\b37238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refanyval.exe_4705]
+RelativePath=JIT\Methodical\xxobj\operand\refanyval\refanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\refanyval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartobject_2.exe_218]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_2\ThreadStartObject_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[int16_cs_r.exe_3022]
+RelativePath=JIT\Directed\shift\int16_cs_r\int16_cs_r.exe
+WorkingDir=JIT\Directed\shift\int16_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_equalnull_class01.exe_3262]
+RelativePath=JIT\Generics\Locals\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[notsupportedexceptionctor2.exe_1559]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2\NotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldtokena.exe_4317]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtokena\_il_relldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtokena
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[conv_opt.exe_3518]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32compareto1.exe_1290]
+RelativePath=CoreMangLib\cti\system\int\Int32CompareTo1\Int32CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32CompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32_do.exe_3033]
+RelativePath=JIT\Directed\shift\int32_do\int32_do.exe
+WorkingDir=JIT\Directed\shift\int32_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4_cs_do.exe_3636]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_do\i4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct5_4.exe_3385]
+RelativePath=JIT\jit64\gc\misc\struct5_4\struct5_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nanadd_cs_ro.exe_4483]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_ro\r8NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[long_cs_r.exe_4374]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_r\long_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objectreferenceequals.exe_1579]
+RelativePath=CoreMangLib\cti\system\object\ObjectReferenceEquals\ObjectReferenceEquals.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectReferenceEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byrefsubbyref1.exe_2828]
+RelativePath=JIT\Directed\coverage\importer\byrefsubbyref1\byrefsubbyref1.exe
+WorkingDir=JIT\Directed\coverage\importer\byrefsubbyref1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[call_static01.exe_3188]
+RelativePath=JIT\Generics\Constraints\call_static01\call_static01.exe
+WorkingDir=JIT\Generics\Constraints\call_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[subbyref_il_r.exe_2895]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_r\subbyref_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct6_5.exe_3390]
+RelativePath=JIT\jit64\gc\misc\struct6_5\struct6_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryothersymbol.exe_1249]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol\UnicodeCategoryOtherSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_or_op_cs_r.exe_2798]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_r\Float_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuetypeboxing.exe_3296]
+RelativePath=JIT\Generics\Typeof\valueTypeBoxing\valueTypeBoxing.exe
+WorkingDir=JIT\Generics\Typeof\valueTypeBoxing
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listctor2.exe_627]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor2\ListCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b39946.exe_5066]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946\b39946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_10.exe_778]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_10\ConvertToInt16_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint649.exe_928]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt649\ConvertToUInt649.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt649
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesinternalcall.exe_1995]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall\MethodImplAttributesInternalCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_d.exe_4324]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[converttoint16_18.exe_782]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_18\ConvertToInt16_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cond64_il_d.exe_4458]
+RelativePath=JIT\Methodical\NaN\cond64_il_d\cond64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[_reltailjump_cs.exe_3683]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_cs\_reltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuecollgenericicollclear.exe_567]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear\ValueCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structfpseh5_1.exe_3409]
+RelativePath=JIT\jit64\gc\misc\structfpseh5_1\structfpseh5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh5_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[singlegethashcode.exe_2155]
+RelativePath=CoreMangLib\cti\system\single\SingleGetHashCode\SingleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_recursivemethod.exe_4749]
+RelativePath=JIT\opt\Inline\Inline_RecursiveMethod\Inline_RecursiveMethod.exe
+WorkingDir=JIT\opt\Inline\Inline_RecursiveMethod
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_qsort1.exe_3912]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1\_il_relu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27883.exe_4934]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883\b27883.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i8_cs_d.exe_3643]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_d\i8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structabi.exe_3087]
+RelativePath=JIT\Directed\StructABI\StructABI\StructABI.exe
+WorkingDir=JIT\Directed\StructABI\StructABI
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;ISSUE_2988;NEED_TRIAGE
+[leave1.exe_2915]
+RelativePath=JIT\Directed\IL\leave\leave1\leave1.exe
+WorkingDir=JIT\Directed\IL\leave\leave1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keycollectionenumeratorienumeratorreset.exe_577]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset\KeyCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05639.exe_5006]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639\b05639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[guidctor3.exe_1262]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3\GuidCtor3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b71318.exe_5384]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318\b71318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldfldunboxedvt.exe_2833]
+RelativePath=JIT\Directed\coverage\importer\ldfldunboxedvt\ldfldunboxedvt.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldunboxedvt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparerctor.exe_2248]
+RelativePath=CoreMangLib\cti\system\stringcompare\StringComparerCtor\StringComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\stringcompare\StringComparerCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_reladdsub.exe_4177]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_reladdsub\_speed_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_reladdsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[array_tests.exe_2972]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\array_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b114628.exe_5639]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628\b114628.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_dbgexplicit1.exe_3977]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit1\_opt_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedexchange1.exe_2375]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1\InterlockedExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_no_op_cs_d.exe_2776]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_d\Double_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedcompareexchange1.exe_2369]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1\InterlockedCompareExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefarg_i2.exe_3929]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2\_il_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[staticfieldexprunchecked1_r.exe_3501]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r\staticFieldExprUnchecked1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[b14369.exe_5706]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369\b14369.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret4_1.exe_3421]
+RelativePath=JIT\jit64\gc\misc\structret4_1\structret4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_u1.exe_1732]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1\OpCodesConv_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case3.exe_5775]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3\case3.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b610750.exe_5569]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750\b610750.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[icomparable_genericcompareto.exe_1275]
+RelativePath=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo\IComparable_GenericCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesnotcontentindexed.exe_1410]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed\FileAttributesNotContentIndexed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relisinst_newobj.exe_3724]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_newobj\_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[floatinfinitiestoint_r.exe_4514]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_r\FloatInfinitiesToInt_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inline_starg.exe_4752]
+RelativePath=JIT\opt\Inline\Inline_STARG\Inline_STARG.exe
+WorkingDir=JIT\opt\Inline\Inline_STARG
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathsign3.exe_1522]
+RelativePath=CoreMangLib\cti\system\math\MathSign3\MathSign3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91021.exe_5453]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021\b91021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objectboxing.exe_3291]
+RelativePath=JIT\Generics\Typeof\objectBoxing\objectBoxing.exe
+WorkingDir=JIT\Generics\Typeof\objectBoxing
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25813.exe_4909]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813\b25813.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryitem2.exe_520]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2\DictionaryIDictionaryItem2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldind_r8.exe_1793]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8\OpCodesLdind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend4.exe_2306]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4\StringBuilderAppend4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b80738.exe_5652]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738\b80738.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegethashcode.exe_2422]
+RelativePath=CoreMangLib\cti\system\type\TypeGetHashCode\TypeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratorcurrent.exe_580]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[codesize0.exe_4768]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize0\CodeSize0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgbox.exe_4068]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbox\_il_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[deadlock_il_r.exe_3768]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_r\deadlock_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesrem_un.exe_1840]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un\OpCodesRem_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrotarg_double.exe_4005]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double\_il_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtruegtdbl.exe_2687]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtDbl\JTrueGtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_sub_ovf_u8.exe_3354]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8\ldc_sub_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress3_ro.exe_3467]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_ro\CgStress3_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[argumentnullexceptionctor2.exe_259]
+RelativePath=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor2\ArgumentNullExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05477.exe_5000]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477\b05477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread12.exe_127]
+RelativePath=baseservices\threading\generics\threadstart\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[b10828.exe_5703]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828\b10828.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconstrained.exe_1702]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained\OpCodesConstrained.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt4_cs_ro.exe_3182]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_ro\vt4_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcs2.exe_3582]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs2\_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_3005]
+RelativePath=JIT\Directed\PREFIX\volatile\1\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u2_un.exe_1722]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un\OpCodesConv_Ovf_U2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrtouint32.exe_2541]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32\UIntPtrToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relhan3_ctor.exe_4663]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ctor\_speed_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b65407.exe_5347]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407\b65407.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relbinop.exe_4075]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbinop\_speed_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionarykeys4.exe_524]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4\DictionaryIDictionaryKeys4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosbyte1.exe_822]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte1\ConvertToSByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[simple1.exe_2596]
+RelativePath=hosting\stress\testset1\simple1\simple1.exe
+WorkingDir=hosting\stress\testset1\simple1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nansub_cs_ro.exe_4499]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_ro\r8NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[zeroinit01_small.exe_4323]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroinit01_small\zeroinit01_small.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroinit01_small
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcatchfault_tail.exe_4298]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail\_il_relcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread30.exe_145]
+RelativePath=baseservices\threading\generics\threadstart\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread30
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[ldc_c_nop.exe_3327]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop\ldc_c_nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandledispose1_psc.exe_2107]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC\SafeHandleDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeisdaylightsavingtime.exe_939]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeIsDaylightSavingTime\DateTimeIsDaylightSavingTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeIsDaylightSavingTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b62892.exe_5335]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892\b62892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_r.exe_4334]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[_il_dbgcatchfault_jmp.exe_4290]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp\_il_dbgcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ilistitem.exe_606]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relptr.exe_3904]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr\_il_relptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37646.exe_5227]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646\b37646.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_speed_dbgisinst_ldloc.exe_3731]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc\_speed_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40174.exe_5069]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174\b40174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[zeroinit01_large.exe_4322]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroInit01_large\zeroInit01_large.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroInit01_large
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b93027.exe_5468]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027\b93027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint327.exe_907]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt327\ConvertToUInt327.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt327
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread02.exe_87]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[stringbuilderappend14.exe_2298]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14\StringBuilderAppend14.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyteiconvertibletobyte.exe_2131]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte\SByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefarg_f4.exe_3926]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4\_il_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32560.exe_4979]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560\b32560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b109878.exe_5635]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878\b109878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop3_il_d.exe_3110]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_d\loop3_il_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_prop.exe_3884]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop\_il_dbgu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[array1.exe_4520]
+RelativePath=JIT\Methodical\refany\array1\array1.exe
+WorkingDir=JIT\Methodical\refany\array1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nullableequals2.exe_1564]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals2\NullableEquals2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[staticfieldexpr1_1.exe_3499]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_1\staticFieldExpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-finally-struct01.exe_23]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct01\try-catch-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b86139.exe_5440]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139\b86139.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldmul_cs_ro.exe_2871]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro\lclfldmul_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[unicodeencodinggetpreamble.exe_2345]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble\UnicodeEncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldarg_2.exe_1753]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2\OpCodesLdarg_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[localloc3_cs_r.exe_2962]
+RelativePath=JIT\Directed\localloc\localloc3_cs_r\localloc3_cs_r.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodinggetcharcount.exe_2338]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount\UnicodeEncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b72996.exe_5396]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996\b72996.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31762.exe_5190]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762\b31762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b55875.exe_5284]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875\b55875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pinnedmultiple.exe_2585]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMultiple\PinnedMultiple.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMultiple
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodescpblk.exe_1736]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk\OpCodesCpblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_f8.exe_3944]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f8\_il_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgarrays.exe_3685]
+RelativePath=JIT\Methodical\casts\array\_il_dbgarrays\_il_dbgarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgarrays
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04574.exe_4994]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574\b04574.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimetofiletime.exe_959]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTime\DateTimeToFileTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayilistget_item.exe_296]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListget_item\ArrayIListget_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListget_item
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try2_r.exe_2955]
+RelativePath=JIT\Directed\leave\try2_r\try2_r.exe
+WorkingDir=JIT\Directed\leave\try2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[argumentoutofrangeexceptionctor2.exe_261]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor2\ArgumentOutOfRangeExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param3b_il_r.exe_4202]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_r\25param3b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relenum_cs.exe_3680]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_cs\_relenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b20913.exe_4895]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913\b20913.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[specific_class_instance01.exe_3213]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance01\specific_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletodouble.exe_2134]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble\SByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8rem_cs_do.exe_3838]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_do\i8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[packingsize2.exe_1914]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2\PackingSize2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[seekoriginenum.exe_1463]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum\SeekOriginEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartgenerics_1.exe_203]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics_1\ThreadStartGenerics_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[r8nanrem_cs_do.exe_4493]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_do\r8NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class2_cs_do.exe_3158]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_do\class2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relisinst_call.exe_3737]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_call\_speed_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_2982]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b321799.exe_5536]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799\b321799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgcatchfinally_tail.exe_4288]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail\_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletouint64.exe_442]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt64\CharIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59949.exe_5319]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949\b59949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[weakreferencector2b_psc.exe_2557]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC\WeakReferenceCtor2b_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[localloc3_cs_do.exe_2961]
+RelativePath=JIT\Directed\localloc\localloc3_cs_do\localloc3_cs_do.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charislower1.exe_451]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower1\CharIsLower1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[simple1.exe_3365]
+RelativePath=JIT\jit64\gc\misc\simple1\simple1.exe
+WorkingDir=JIT\jit64\gc\misc\simple1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[or1.exe_2717]
+RelativePath=JIT\CodeGenBringUpTests\Or1\Or1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Or1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b15526.exe_4812]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526\b15526.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgsizeof.exe_3879]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof\_il_dbgsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_vfld.exe_3889]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld\_il_dbgu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[multicastdelegategethashcode.exe_1553]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode\MulticastDelegateGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_equalnull_class01.exe_3276]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1549.exe_5870]
+RelativePath=Regressions\coreclr\1549\Test1549\Test1549.exe
+WorkingDir=Regressions\coreclr\1549\Test1549
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblyconfigurationattributeconfiguration.exe_1615]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration\AssemblyConfigurationAttributeConfiguration.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b54971.exe_5281]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971\b54971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46867.exe_5150]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867\b46867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;ISSUE_2989
+[opcodename.exe_1657]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName\OpCodeName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b10790.exe_5684]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790\b10790.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_4.exe_3398]
+RelativePath=JIT\jit64\gc\misc\structfp1_4\structfp1_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b163200.exe_5576]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200\b163200.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relisinst_calli.exe_3713]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_calli\_il_relisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgcastclass_ldarg.exe_3692]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg\_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[switchdefaultonly3_il_d.exe_2900]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d\switchdefaultonly3_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbghan3_ref.exe_4643]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ref\_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u4div_cs_do.exe_3822]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_do\u4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathpi.exe_1514]
+RelativePath=CoreMangLib\cti\system\math\MathPI\MathPI.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPI
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesoptil.exe_2000]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL\MethodImplAttributesOPTIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstatic05.exe_249]
+RelativePath=baseservices\threading\threadstatic\ThreadStatic05\ThreadStatic05.exe
+WorkingDir=baseservices\threading\threadstatic\ThreadStatic05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringctorchar.exe_2200]
+RelativePath=CoreMangLib\cti\system\string\StringCtorChar\StringCtorChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtorChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltoint32.exe_1012]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt32\DecimalToInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread06.exe_91]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[float_no_op_cs_r.exe_2794]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_r\Float_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64parse3.exe_2529]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse3\UInt64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dllnotfoundexceptionctor2.exe_1044]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2\DllNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow2_cs_d.exe_2932]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_d\pow2_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102962a.exe_5522]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a\b102962a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletouint64.exe_392]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64\BooleanIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[expl_funcptr_gc_r.exe_3960]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r\expl_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartcast_3.exe_186]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_3\ThreadStartCast_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[uint64parse1.exe_2527]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse1\UInt64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanrem_cs_d.exe_4472]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_d\r4NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingequals.exe_2266]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingEquals\EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletobyte.exe_429]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToByte\CharIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[qmarkcolon.exe_4037]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon\qMarkColon.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbge_un_s.exe_1669]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S\OpCodesBge_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4flat_cs_r.exe_3633]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_r\i4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44861.exe_5126]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861\b44861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[eventhandlerendinvoke.exe_1093]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke\EventHandlerEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess1_cs_do.exe_3075]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_do\straccess1_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletodatetime.exe_2168]
+RelativePath=CoreMangLib\cti\system\single\SingleToDateTime\SingleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i1_un.exe_1710]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un\OpCodesConv_Ovf_I1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b18852.exe_4891]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852\b18852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_passing_class01.exe_3258]
+RelativePath=JIT\Generics\Locals\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_base_3.exe_2740]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3\Generic_Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcommonbase.exe_3747]
+RelativePath=JIT\Methodical\casts\ilseq\_il_relCommonBase\_il_relCommonBase.exe
+WorkingDir=JIT\Methodical\casts\ilseq\_il_relCommonBase
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relbox.exe_4072]
+RelativePath=JIT\Methodical\int64\misc\_relbox\_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint8_do.exe_3071]
+RelativePath=JIT\Directed\shift\uint8_do\uint8_do.exe
+WorkingDir=JIT\Directed\shift\uint8_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b589202.exe_5561]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202\b589202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[guidtostring1.exe_1273]
+RelativePath=CoreMangLib\cti\system\guid\GuidToString1\GuidToString1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratordispose.exe_581]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryctor4.exe_497]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4\DictionaryCtor4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b26560.exe_4919]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560\b26560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[szarrayhelpersetitem.exe_2257]
+RelativePath=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem\SZArrayHelperSetItem.exe
+WorkingDir=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_cs_do.exe_4345]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_do\bool_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalrem_cs_ro.exe_3832]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_ro\decimalrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31912.exe_4972]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912\b31912.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublegethashcode.exe_1050]
+RelativePath=CoreMangLib\cti\system\double\DoubleGetHashCode\DoubleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathhasextension.exe_1454]
+RelativePath=CoreMangLib\cti\system\io\path\PathHasExtension\PathHasExtension.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathHasExtension
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textinfoculturename.exe_1221]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName\TextInfoCultureName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48850.exe_5559]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850\b48850.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badimageformatexceptionmessage.exe_371]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage\BadImageFormatExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class1_cs_do.exe_3154]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_do\class1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof4b.exe_309]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4b\ArrayIndexOf4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49778.exe_5582]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778\b49778.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[gc_ctor_il_d.exe_4594]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_d\gc_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;DBG_FAIL;ISSUE_2925
+[interlockedaddlong_3.exe_157]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_3\InterlockedAddLong_3.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[arraycreateinstance1b.exe_281]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1b\ArrayCreateInstance1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u4rem_cs_r.exe_3855]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_r\u4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint162.exe_883]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt162\ConvertToUInt162.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt162
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcall.exe_4629]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgcall\_speed_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress3_do.exe_3465]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_do\CgStress3_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_or_op_cs_do.exe_2781]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_do\Double_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleepsilon.exe_1047]
+RelativePath=CoreMangLib\cti\system\double\DoubleEpsilon\DoubleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEpsilon
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesble_s.exe_1675]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S\OpCodesBle_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgthrow.exe_3750]
+RelativePath=JIT\Methodical\casts\SEH\_dbgthrow\_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgthrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[notimplementedexceptionctor1.exe_1555]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1\NotImplementedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_6.exe_1763]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6\OpCodesLdc_I4_6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typedreference.exe_3104]
+RelativePath=JIT\Directed\TypedReference\TypedReference\TypedReference.exe
+WorkingDir=JIT\Directed\TypedReference\TypedReference
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[predicateendinvoke.exe_1599]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateEndInvoke\PredicateEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateEndInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queueclear.exe_659]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueClear\QueueClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[haar-likefeaturesgeneric.exe_5750]
+RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric\Haar-likeFeaturesGeneric.exe
+WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relfilter.exe_3758]
+RelativePath=JIT\Methodical\casts\SEH\_il_relfilter\_il_relfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relfilter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_i2.exe_1789]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2\OpCodesLdind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumiconvertibletosingle.exe_1077]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle\EnumIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathsinh.exe_1528]
+RelativePath=CoreMangLib\cti\system\math\MathSinh\MathSinh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSinh
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3105
+[opcodesthrow.exe_1883]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow\OpCodesThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtrueeqint1.exe_2683]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqInt1\JTrueEqInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint169.exe_890]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt169\ConvertToUInt169.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt169
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_cs_ro.exe_4363]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_ro\double_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin3.exe_1507]
+RelativePath=CoreMangLib\cti\system\math\MathMin3\MathMin3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodescastclass.exe_1695]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass\OpCodesCastclass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblykeyfileattributekeyfile.exe_1624]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile\AssemblyKeyFileAttributeKeyFile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[comparercompare1.exe_484]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1\ComparerCompare1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblydefaultaliasattributector.exe_1617]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor\AssemblyDefaultAliasAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributespinvokeimpl.exe_1980]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl\MethodAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch3.exe_268]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3\ArrayBinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbghan2.exe_4654]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan2\_speed_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[multicastdelegateequals.exe_1552]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals\MulticastDelegateEquals.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread01.exe_116]
+RelativePath=baseservices\threading\generics\threadstart\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[notrmw.exe_2714]
+RelativePath=JIT\CodeGenBringUpTests\NotRMW\NotRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotRMW
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint64_8.exe_819]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_8\ConvertToInt64_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41278.exe_5089]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278\b41278.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrecurse_calli.exe_4249]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli\_il_relrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsgenericparameter.exe_358]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter\AttributeTargetsGenericParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b37215.exe_5223]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215\b37215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cse2_cs_d.exe_2854]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_d\cse2_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[zeroinit01_small.exe_3439]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroInit01_small\zeroInit01_small.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroInit01_small
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_i8.exe_1768]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8\OpCodesLdc_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31780.exe_5191]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780\b31780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcs_long.exe_4063]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_long\_speed_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[_speed_rellcs.exe_3607]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesclt.exe_1700]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt\OpCodesClt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textelementenumeratorcurrent.exe_1216]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent\TextElementEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstind_r8.exe_1865]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8\OpCodesStind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05784.exe_5011]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784\b05784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgval_ctor.exe_4217]
+RelativePath=JIT\Methodical\Invoke\ctor\_dbgval_ctor\_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_dbgval_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompare15.exe_2182]
+RelativePath=CoreMangLib\cti\system\string\StringCompare15\StringCompare15.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringtochararray.exe_2241]
+RelativePath=CoreMangLib\cti\system\string\StringToCharArray\StringToCharArray.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToCharArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b56780.exe_5293]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780\b56780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderinsert.exe_2321]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert\StringBuilderInsert.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[valuecollectionenumeratorienumeratorreset.exe_584]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reli_ref.exe_3901]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref\_il_reli_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lcliimpl_il_r.exe_2881]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_r\lcliimpl_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b81766.exe_5655]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766\b81766.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class03.exe_3243]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring30.exe_862]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString30\ConvertToString30.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString30
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class03.exe_3240]
+RelativePath=JIT\Generics\Instantiation\Classes\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overlddiv_cs_r.exe_3811]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_r\overlddiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesfamorassem.exe_1957]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem\FieldAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49322.exe_5172]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322\b49322.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b92713.exe_5673]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713\b92713.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueneint1.exe_2698]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeInt1\JTrueNeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uintptrzero.exe_2543]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrZero\UIntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrZero
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodetypeprefix.exe_1894]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix\OpCodeTypePrefix.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exceptionctor2.exe_1096]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor2\ExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodingctor3.exe_2349]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3\UTF8EncodingCtor3.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcastclass_call.exe_3699]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_call\_il_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionaryvalues.exe_599]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues\IDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetbytes2.exe_2272]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2\EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesor.exe_1826]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr\OpCodesOr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_or_op_cs_d.exe_2812]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_d\Int_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b50535.exe_5251]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535\b50535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10939.exe_4827]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939\b10939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringconcat8.exe_2197]
+RelativePath=CoreMangLib\cti\system\string\StringConcat8\StringConcat8.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING;REL_PASS
+[_dbgldc_mulovf.exe_4139]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mulovf\_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nullablecompare.exe_1561]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCompare\NullableCompare.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCompare
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuildertostring2.exe_2332]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2\StringBuilderToString2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodinggetbytecount1.exe_2335]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1\UnicodeEncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-struct07.exe_35]
+RelativePath=baseservices\exceptions\generics\try-catch-struct07\try-catch-struct07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeequals2.exe_2418]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals2\TypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax5.exe_1498]
+RelativePath=CoreMangLib\cti\system\math\MathMax5\MathMax5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayilistremoveat.exe_300]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemoveAt\ArrayIListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemoveAt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleaniconvertibletodecimal.exe_382]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal\BooleanIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b40521.exe_5078]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521\b40521.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeloadexceptionctor3.exe_2453]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3\TypeLoadExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbytetostring1.exe_2146]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteToString1\SByteToString1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint1612.exe_876]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1612\ConvertToUInt1612.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1612
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalctor2.exe_980]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor2\DecimalCtor2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[field_tests.exe_2988]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\field_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefloc_r4.exe_3956]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r4\_il_relrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericicollectionisreadonly.exe_559]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly\GenericICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathacos.exe_1480]
+RelativePath=CoreMangLib\cti\system\math\MathAcos\MathAcos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAcos
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35354.exe_5213]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354\b35354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareexchangetclass_1.exe_162]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_1\CompareExchangeTClass_1.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[i8flat_cs_do.exe_3640]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_do\i8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct2_5_2.exe_3374]
+RelativePath=JIT\jit64\gc\misc\struct2_5_2\struct2_5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparisoncurrentcultureignorecase.exe_2254]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase\StringComparisonCurrentCultureIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimetimeofday.exe_957]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay\DateTimeTimeOfDay.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[33objref_cs_r.exe_2845]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_r\33objref_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[subovfun1_il_r.exe_2840]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_r\subovfun1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class01.exe_3151]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm64_cs_r.exe_4446]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_r\arithm64_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test968.exe_5860]
+RelativePath=Regressions\coreclr\0968\Test968\Test968.exe
+WorkingDir=Regressions\coreclr\0968\Test968
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[threadstatic01.exe_5873]
+RelativePath=Threading\ThreadStatics\ThreadStatic01\ThreadStatic01.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionaryvalue4.exe_528]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4\DictionaryIDictionaryValue4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[finally.exe_3102]
+RelativePath=JIT\Directed\throwbox\finally\finally.exe
+WorkingDir=JIT\Directed\throwbox\finally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcs_gcref.exe_4686]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs_gcref\_speed_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs_gcref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[datetimegethashcode.exe_937]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeGetHashCode\DateTimeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[addref.exe_2602]
+RelativePath=JIT\CodeGenBringUpTests\addref\addref.exe
+WorkingDir=JIT\CodeGenBringUpTests\addref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b79852.exe_5647]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852\b79852.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u1_un.exe_1720]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un\OpCodesConv_Ovf_U1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sp2c.exe_3097]
+RelativePath=JIT\Directed\StructPromote\SP2c\SP2c.exe
+WorkingDir=JIT\Directed\StructPromote\SP2c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3151
+[attributector.exe_2053]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor\AttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar16.exe_739]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar16\ConvertToChar16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3263
+[converttodecimal16.exe_754]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal16\ConvertToDecimal16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct_opcodes.exe_4763]
+RelativePath=JIT\opt\Inline\Struct_Opcodes\Struct_Opcodes.exe
+WorkingDir=JIT\opt\Inline\Struct_Opcodes
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relunbox.exe_4716]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relunbox\_il_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcsmax.exe_3603]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax\_speed_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[dictionaryidictionaryisreadonly2.exe_518]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2\DictionaryIDictionaryIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsall.exe_350]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll\AttributeTargetsAll.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sub1.exe_2726]
+RelativePath=JIT\CodeGenBringUpTests\Sub1\Sub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Sub1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefarg_f8.exe_3927]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8\_il_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[targetparametercountexceptionctor1.exe_2017]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1\TargetParameterCountExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06436.exe_5014]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436\b06436.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetpreamble.exe_2287]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble\EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidequals1_cti.exe_1266]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1_cti\GuidEquals1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_i8.exe_1707]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8\OpCodesConv_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4rem_cs_r.exe_3835]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_r\i4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldobj_i.exe_4693]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I\_il_dbgldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relvtret2.exe_4624]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret2\_il_relvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[implicitconv.exe_2820]
+RelativePath=JIT\Directed\Convert\implicitConv\implicitConv.exe
+WorkingDir=JIT\Directed\Convert\implicitConv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesrefanyval.exe_1838]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval\OpCodesRefanyval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convert_static01.exe_3190]
+RelativePath=JIT\Generics\Constraints\convert_static01\convert_static01.exe
+WorkingDir=JIT\Generics\Constraints\convert_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iconvertibletochar.exe_1278]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToChar\IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[genericicollectionremove.exe_560]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref.exe_1932]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref\StackBehaviourPopref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesinteger.exe_1194]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger\NumberStylesInteger.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exceptionctor3.exe_1097]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor3\ExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[memberaccessexceptionctor2.exe_1533]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2\MemberAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartushort_3.exe_240]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort_3\ThreadStartUShort_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_dbgisinst_ldlen.exe_3687]
+RelativePath=JIT\Methodical\casts\array\_il_dbgisinst_ldlen\_il_dbgisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgisinst_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[callingconventionsany.exe_1637]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny\CallingConventionsAny.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[parameterattributeshasdefault.exe_2005]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault\ParameterAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinesig.exe_1903]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig\OperandTypeInlineSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_816617_d.exe_5619]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d\DevDiv_816617_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgisinst_calli.exe_3704]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_calli\_il_dbgisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_r.exe_4414]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relcatchfinally_tail.exe_4308]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail\_speed_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin4.exe_1508]
+RelativePath=CoreMangLib\cti\system\math\MathMin4\MathMin4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbglcsval.exe_3587]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsval\_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gchandleaddrofpinnedobject_psc.exe_2077]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC\GCHandleAddrOfPinnedObject_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoboolean6.exe_721]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean6\ConvertToBoolean6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumiconvertibletotype.exe_1078]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToType\EnumIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributessynchronized.exe_2003]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized\MethodImplAttributesSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gentogen02.exe_3195]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen02\gentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[comparerctor.exe_486]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor\ComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionissynchronized.exe_691]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b40347.exe_5231]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderctor5.exe_2319]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5\StringBuilderctor5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[field_tests.exe_3000]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\field_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_876169_do.exe_5604]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do\DevDiv_876169_do.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b13330.exe_5035]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330\b13330.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileaccessenum.exe_1398]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum\FileAccessEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_reldeep.exe_4232]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_reldeep\_speed_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_reldeep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandlector_cti_psc.exe_2103]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC\SafeHandleCtor_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint3216.exe_898]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3216\ConvertToUInt3216.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3216
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullchecksuppress.exe_2924]
+RelativePath=JIT\Directed\intrinsic\interlocked\nullchecksuppress\nullchecksuppress.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\nullchecksuppress
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2823
+[b28805.exe_4947]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805\b28805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletoint64.exe_1302]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt64\Int32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16tostring.exe_1343]
+RelativePath=CoreMangLib\cti\system\int16\Int16ToString\Int16ToString.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16ToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mul1_dbg.exe_3521]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg\mul1_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[xaddmuly_cs_r.exe_2824]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r\xaddmuly_cs_r.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[weakreferencector2_psc.exe_2558]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC\WeakReferenceCtor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_opt_dbgexplicit6.exe_3982]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit6\_opt_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b12487.exe_4836]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487\b12487.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegetgenerictypedefinition.exe_2421]
+RelativePath=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition\TypeGetGenericTypeDefinition.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgaa.exe_4603]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgaa\_il_dbgaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgaa
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4flat_cs_r.exe_3649]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_r\r4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[date.exe_5835]
+RelativePath=Regressions\coreclr\0069\date\date.exe
+WorkingDir=Regressions\coreclr\0069\date
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[atpactor.exe_2055]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor\ATPACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_no_op_cs_d.exe_2808]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_d\Int_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgldc_mul.exe_4138]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mul\_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldsfld.exe_1809]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld\OpCodesLdsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalasattributector2.exe_2094]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2\MarshalAsAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b02051.exe_4983]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051\b02051.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regression_dev10_609271.exe_2564]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271\Regression_Dev10_609271.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_i4_u4.exe_3313]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4\ldc_conv_ovf_i4_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rellivecall.exe_4673]
+RelativePath=JIT\Methodical\VT\identity\_il_rellivecall\_il_rellivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_rellivecall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8rem_cs_do.exe_3850]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_do\r8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[structlayoutattributevalue.exe_2118]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue\StructLayoutAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullablegetvalueordefault2.exe_1568]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2\NullableGetValueOrDefault2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textinfotoupper2.exe_1227]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2\TextInfoToUpper2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcastclass_ldarg.exe_3710]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg\_il_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relhan3.exe_4648]
+RelativePath=JIT\Methodical\VT\etc\_relhan3\_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop4_cs_do.exe_3113]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_do\loop4_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71231.exe_5383]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231\b71231.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[guidempty.exe_1264]
+RelativePath=CoreMangLib\cti\system\guid\GuidEmpty\GuidEmpty.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEmpty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributesfamily.exe_1956]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily\FieldAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort3b.exe_338]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3b\ArraySort3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b39397.exe_5063]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397\b39397.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdecimal_2.exe_192]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_2\ThreadStartDecimal_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[r4nandiv_cs_r.exe_4466]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_r\r4NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class05.exe_3245]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class05\class05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relhan3_ref.exe_4650]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ref\_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgvtret.exe_4632]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgvtret\_speed_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[params-object.exe_5478]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object\params-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesckfinite.exe_1699]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite\OpCodesCkfinite.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relseq.exe_4538]
+RelativePath=JIT\Methodical\refany\_il_relseq\_il_relseq.exe
+WorkingDir=JIT\Methodical\refany\_il_relseq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[charisletter1.exe_447]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter1\CharIsLetter1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[initblk.exe_2989]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\initblk\initblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\initblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[environmentprocessorcount_cti_psc.exe_1087]
+RelativePath=CoreMangLib\cti\system\environment\EnvironmentProcessorCount_cti_PSC\EnvironmentProcessorCount_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\environment\EnvironmentProcessorCount_cti_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltostring1.exe_1016]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString1\DecimalToString1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b75888.exe_5409]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888\b75888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b58689.exe_5301]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689\b58689.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgthrow.exe_3764]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgthrow\_speed_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgthrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcatchfault_tail.exe_4291]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail\_il_dbgcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simpleexpr4_r.exe_3498]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r\simpleexpr4_r.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reldeep_value.exe_4577]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_value\_il_reldeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_value
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit3_il_r.exe_3769]
+RelativePath=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r\prefldinit3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b67351.exe_5353]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351\b67351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[array_tests.exe_3007]
+RelativePath=JIT\Directed\PREFIX\volatile\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\array_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletoint16.exe_1356]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16\Int64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldc_mul.exe_4154]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mul\_il_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charequals1.exe_425]
+RelativePath=CoreMangLib\cti\system\char\CharEquals1\CharEquals1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcreregisterforfinalize.exe_1107]
+RelativePath=CoreMangLib\cti\system\gc\GCReRegisterForFinalize\GCReRegisterForFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCReRegisterForFinalize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributesprivate.exe_1965]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate\FieldAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_i1.exe_3945]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i1\_il_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stfldstatic1_il_r.exe_2838]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64gethashcode.exe_2509]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64GetHashCode\UInt64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3263
+[test.exe_5813]
+RelativePath=Regressions\assemblyref\test\test.exe
+WorkingDir=Regressions\assemblyref\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletouint32.exe_413]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32\ByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleanparse.exe_393]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanParse\BooleanParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_17.exe_811]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_17\ConvertToInt64_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param3c_il_d.exe_4203]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_d\25param3c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringpadright2.exe_2233]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight2\StringPadRight2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgs_addsub.exe_4113]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_addsub\_speed_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldexpr1_1.exe_3482]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1_1\fieldexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b19112b.exe_5697]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b\b19112b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldvirtftncalli_il_d.exe_2884]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d\ldvirtftncalli_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcsval.exe_3613]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsval\_speed_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesexplicitlayout.exe_2027]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout\TypeAttributesExplicitLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[badimageformatexceptionctor1.exe_368]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1\BadImageFormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_assignment_struct01.exe_3281]
+RelativePath=JIT\Generics\Parameters\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[argumentexceptionctor1.exe_256]
+RelativePath=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1\ArgumentExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pointerexpr1_1.exe_3493]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1_1\pointerexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b49984.exe_5174]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984\b49984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_or_op_cs_ro.exe_2767]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_ro\Bool_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcompat_i2_bool.exe_4542]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool\_il_dbgcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodescallvirt.exe_1694]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt\OpCodesCallvirt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[valuetype.exe_4509]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype\valuetype.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseacc_ro.exe_3455]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro\CGRecurseACC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b68361.exe_5359]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361\b68361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldexpr1.exe_3481]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1\fieldexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread04.exe_89]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_dbgcastclass_ldloc.exe_3693]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc\_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[longargsandreturn.exe_2704]
+RelativePath=JIT\CodeGenBringUpTests\LongArgsAndReturn\LongArgsAndReturn.exe
+WorkingDir=JIT\CodeGenBringUpTests\LongArgsAndReturn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listctor3.exe_628]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor3\ListCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ind1.exe_2674]
+RelativePath=JIT\CodeGenBringUpTests\Ind1\Ind1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ind1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileaccesswrite.exe_1401]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite\FileAccessWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeparseexact1.exe_949]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact1\DateTimeParseExact1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[datetimespecifykind.exe_953]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSpecifyKind\DateTimeSpecifyKind.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSpecifyKind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ushort_cs_do.exe_4393]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_do\ushort_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badtailcall.exe_2827]
+RelativePath=JIT\Directed\coverage\importer\badtailcall\badtailcall.exe
+WorkingDir=JIT\Directed\coverage\importer\badtailcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_xor_op_cs_r.exe_2802]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_r\Float_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgchain.exe_3664]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgchain\_il_dbgchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgchain
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28141.exe_5720]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141\b28141.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b220968.exe_5499]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968\b220968.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b124409.exe_5679]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409\b124409.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte11.exe_824]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte11\ConvertToSByte11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcompat_i4_u.exe_4569]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_u\_il_relcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_sub_ovf_u2.exe_3352]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2\ldc_sub_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fproots.exe_2666]
+RelativePath=JIT\CodeGenBringUpTests\FPRoots\FPRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRoots
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8_cs_r.exe_3661]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_r\r8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gc_nested.exe_4637]
+RelativePath=JIT\Methodical\VT\etc\gc_nested\gc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\gc_nested
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[formatexceptionctor2.exe_1101]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2\FormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidctor1_cti.exe_1260]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1_cti\GuidCtor1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delete_next_card_table.exe_5838]
+RelativePath=Regressions\coreclr\0080\delete_next_card_table\delete_next_card_table.exe
+WorkingDir=Regressions\coreclr\0080\delete_next_card_table
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;ISSUE_3104;NEED_TRIAGE
+[_speed_dbgjumps.exe_4631]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumps\_speed_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumps
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbglcs_ulong.exe_4055]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_ulong\_il_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[ldc_ret_r8.exe_3344]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8\ldc_ret_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldoffsetattributevalue.exe_2076]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue\FieldOffsetAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgisinst_ldarg.exe_3696]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldarg\_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayreserse2.exe_321]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse2\ArrayReserse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27538.exe_4926]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538\b27538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgisinst_catch.exe_3754]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch\_il_dbgisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44946.exe_5128]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946\b44946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesallowparentheses.exe_1186]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses\NumberStylesAllowParentheses.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reli_seq.exe_3902]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq\_il_reli_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b68045.exe_5358]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045\b68045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraytypemismatchexceptionctor3.exe_347]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3\ArrayTypeMismatchExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[initblk.exe_3001]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\initblk\initblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\initblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread29.exe_114]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread29
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[unicodecategorylowercaseletter.exe_1239]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter\UnicodeCategoryLowercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_ldsfld_mulovf.exe_4093]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf\_il_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartobject_1.exe_217]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_1\ThreadStartObject_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[302680.exe_74]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\302680\302680\302680.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\302680\302680
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48614.exe_5163]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614\b48614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[systemcollgenericicollcontains.exe_552]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains\SystemCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrecurse_jmp.exe_4250]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp\_il_relrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[securityexceptiontostring.exe_2153]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString\SecurityExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgu_seq.exe_3888]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq\_il_dbgu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesnone.exe_1195]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone\NumberStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6412.exe_914]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6412\ConvertToUInt6412.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6412
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[autoreseteventset.exe_2366]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet\AutoResetEventSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[loop4_cs_d.exe_3112]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_d\loop4_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuildercapacity.exe_2312]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity\StringBuilderCapacity.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcs_gcref.exe_4684]
+RelativePath=JIT\Methodical\VT\port\_rellcs_gcref\_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs_gcref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[arrayindexof2.exe_304]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2\ArrayIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanrem_cs_ro.exe_4475]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_ro\r4NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[127931.exe_3547]
+RelativePath=JIT\jit64\regress\ddb\127931\127931\127931.exe
+WorkingDir=JIT\jit64\regress\ddb\127931\127931
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14057.exe_4797]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057\b14057.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcatchfault.exe_4296]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault\_il_relcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32_d.exe_3032]
+RelativePath=JIT\Directed\shift\int32_d\int32_d.exe
+WorkingDir=JIT\Directed\shift\int32_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodetypeobjmodel.exe_1893]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel\OpCodeTypeObjmodel.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14059.exe_4798]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059\b14059.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_u1.exe_3334]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1\ldc_mul_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[newarr.exe_2967]
+RelativePath=JIT\Directed\newarr\newarr\newarr.exe
+WorkingDir=JIT\Directed\newarr\newarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[queueenqueue.exe_667]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue\QueueEnqueue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eventhandlerctor.exe_1092]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor\EventHandlerCtor.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31292.exe_5183]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292\b31292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[xorref.exe_2732]
+RelativePath=JIT\CodeGenBringUpTests\XorRef\XorRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\XorRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr4a_cs_r.exe_4040]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_r\convr4a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpopi_popr8.exe_1931]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8\StackBehaviourPopi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16tryparse.exe_1345]
+RelativePath=CoreMangLib\cti\system\int16\Int16TryParse\Int16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relobj.exe_4284]
+RelativePath=JIT\Methodical\Invoke\implicit\_relobj\_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_relobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[systemcollgenicollisreadonly.exe_554]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly\SystemCollGenICollIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relu_fld.exe_3908]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld\_il_relu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt3_cs_r.exe_3175]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_r\vt3_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b223924.exe_5500]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924\b223924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch06.exe_43]
+RelativePath=baseservices\exceptions\generics\try-catch06\try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint1610.exe_874]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1610\ConvertToUInt1610.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1610
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fixedbufferattributelength.exe_2072]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength\FixedBufferAttributeLength.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32_cs_d.exe_3028]
+RelativePath=JIT\Directed\shift\int32_cs_d\int32_cs_d.exe
+WorkingDir=JIT\Directed\shift\int32_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b54667.exe_5280]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667\b54667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[noenterobject.exe_177]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterObject\NoEnterObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterObject
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b74182.exe_5402]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182\b74182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46583.exe_5146]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583\b46583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesabstract.exe_2020]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract\TypeAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringinfolengthintextelements.exe_1213]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements\StringInfoLengthInTextElements.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int8_il_d.exe_3040]
+RelativePath=JIT\Directed\shift\int8_il_d\int8_il_d.exe
+WorkingDir=JIT\Directed\shift\int8_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcsvalbox.exe_3606]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox\_speed_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvalftn_t.exe_4243]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t\_il_dbgvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericicollectionremove.exe_542]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[zeroinit01_large.exe_3438]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroinit01_large\zeroinit01_large.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroinit01_large
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletochar.exe_2487]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar\UInt32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidctor1.exe_1259]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1\GuidCtor1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16928.exe_4890]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928\b16928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldexpr2.exe_3483]
+RelativePath=JIT\jit64\opt\cse\fieldexpr2\fieldexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayreserse1.exe_320]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse1\ArrayReserse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27978.exe_5717]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978\b27978.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelema.exe_1772]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema\OpCodesLdelema.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_i4.exe_1706]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4\OpCodesConv_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_delegatestruct.exe_4741]
+RelativePath=JIT\opt\Inline\Inline_DelegateStruct\Inline_DelegateStruct.exe
+WorkingDir=JIT\opt\Inline\Inline_DelegateStruct
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mul1.exe_2706]
+RelativePath=JIT\CodeGenBringUpTests\mul1\mul1.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14326.exe_4854]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326\b14326.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b48805.exe_5165]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805\b48805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparerequals3.exe_2251]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3\StringComparerEquals3.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringcopyto.exe_2198]
+RelativePath=CoreMangLib\cti\system\string\StringCopyTo\StringCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[activatorcreateinstance2.exe_255]
+RelativePath=CoreMangLib\cti\system\activator\ActivatorCreateInstance2\ActivatorCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\activator\ActivatorCreateInstance2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleminvalue.exe_1066]
+RelativePath=CoreMangLib\cti\system\double\DoubleMinValue\DoubleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typegettype2.exe_2424]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType2\TypeGetType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcsval.exe_3597]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsval\_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch03.exe_40]
+RelativePath=baseservices\exceptions\generics\try-catch03\try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[specific_class_static01.exe_3215]
+RelativePath=JIT\Generics\Exceptions\specific_class_static01\specific_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint1616.exe_880]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1616\ConvertToUInt1616.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1616
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timeoutexceptionctor3.exe_2388]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3\TimeoutExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test.exe_3560]
+RelativePath=JIT\jit64\regress\vsw\404708\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\404708\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3561]
+RelativePath=JIT\jit64\regress\vsw\460412\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\460412\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryvaluecollectionctor.exe_558]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor\DictionaryValueCollectionctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldobj.exe_1808]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj\OpCodesLdobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b57952.exe_5298]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952\b57952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filemodecreatenew.exe_1418]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreateNew\FileModeCreateNew.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreateNew
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13178.exe_4795]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178\b13178.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47906.exe_5158]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906\b47906.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structarr_cs_ro.exe_4343]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespancompare1.exe_2390]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompare1\TimeSpanCompare1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompare1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28901.exe_4949]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901\b28901.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_dbgctor_recurse.exe_4639]
+RelativePath=JIT\Methodical\VT\etc\_dbgctor_recurse\_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgctor_recurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletoint64.exe_408]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64\ByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59554.exe_5311]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554\b59554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefarg_i1.exe_3928]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1\_il_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[icollectioncopyto.exe_591]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59952.exe_5320]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952\b59952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinforeadonly.exe_1145]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly\CultureInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockexchange.exe_5867]
+RelativePath=Regressions\coreclr\1514\InterlockExchange\InterlockExchange.exe
+WorkingDir=Regressions\coreclr\1514\InterlockExchange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;ISSUE_3515
+[threadstartshort_2.exe_226]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort_2\ThreadStartShort_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[floatinfinitiestoint_ro.exe_4515]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro\FloatInfinitiesToInt_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40221.exe_5072]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221\b40221.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldarg.exe_1748]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg\OpCodesLdarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14294.exe_4852]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294\b14294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rellcs_ulong.exe_4058]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_ulong\_il_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[_relvcall.exe_4676]
+RelativePath=JIT\Methodical\VT\identity\_relvcall\_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_relvcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simple.exe_3549]
+RelativePath=JIT\jit64\regress\ndpw\160545\simple\simple.exe
+WorkingDir=JIT\jit64\regress\ndpw\160545\simple
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16294.exe_4817]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294\b16294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43121.exe_5108]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121\b43121.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4rem_cs_do.exe_3846]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_do\r4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletotype.exe_389]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType\BooleanIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[binarysearch1.exe_614]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch1\BinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectioncontains.exe_590]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains\ICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletotype.exe_1361]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToType\Int64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b34951.exe_5206]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951\b34951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84909.exe_5433]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909\b84909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filter3_d.exe_2950]
+RelativePath=JIT\Directed\leave\filter3_d\filter3_d.exe
+WorkingDir=JIT\Directed\leave\filter3_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relcastclass_ldloc.exe_3735]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc\_speed_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[debuggingmodesenableeditandcontinue.exe_1037]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue\DebuggingModesEnableEditAndContinue.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b61025.exe_5326]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025\b61025.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[flagsattributector.exe_1099]
+RelativePath=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor\FlagsAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[switchdefaultonly2_il_d.exe_2898]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d\switchdefaultonly2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[packingsizesize64.exe_1919]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64\PackingSizeSize64.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtrue1.exe_2680]
+RelativePath=JIT\CodeGenBringUpTests\JTrue1\JTrue1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrue1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32_ro.exe_3061]
+RelativePath=JIT\Directed\shift\uint32_ro\uint32_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16tostring2.exe_2477]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString2\UInt16ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleancompareto_boolean.exe_373]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean\BooleanCompareTo_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldsshrstsfld_il_d.exe_2882]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d\ldsshrstsfld_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringsplit1.exe_2238]
+RelativePath=CoreMangLib\cti\system\string\StringSplit1\StringSplit1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSplit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b04319.exe_5506]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319\b04319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b52760.exe_5262]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760\b52760.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32551a.exe_4977]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a\b32551a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59337.exe_5307]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337\b59337.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vsw307137.exe_5800]
+RelativePath=Loader\classloader\regressions\vsw307137\vsw307137\vsw307137.exe
+WorkingDir=Loader\classloader\regressions\vsw307137\vsw307137
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw307137.exe_5805]
+RelativePath=Loader\regressions\classloader\vsw307137\vsw307137.exe
+WorkingDir=Loader\regressions\classloader\vsw307137
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listcontains.exe_624]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListContains\ListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14673.exe_4809]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673\b14673.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested-try-catch03.exe_15]
+RelativePath=baseservices\exceptions\generics\nested-try-catch03\nested-try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttobyte.exe_724]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte\ConvertToByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_cs_d.exe_4364]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_d\float_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28790.exe_4946]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790\b28790.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[derivedexplicitclass.exe_5768]
+RelativePath=Loader\classloader\explicitlayout\misc\derivedExplicitClass\derivedExplicitClass.exe
+WorkingDir=Loader\classloader\explicitlayout\misc\derivedExplicitClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodeint16.exe_2441]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt16\TypeCodeInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletouint64.exe_2524]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64\UInt64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b70909.exe_5372]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909\b70909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcsvalbox.exe_3614]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox\_speed_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overldrem_cs_ro.exe_3844]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_ro\overldrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[hugefield2.exe_3489]
+RelativePath=JIT\jit64\opt\cse\HugeField2\HugeField2.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class03.exe_3289]
+RelativePath=JIT\Generics\Typeof\class03\class03.exe
+WorkingDir=JIT\Generics\Typeof\class03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b103838.exe_5629]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838\b103838.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gcd.exe_2671]
+RelativePath=JIT\CodeGenBringUpTests\Gcd\Gcd.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gcd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletosbyte.exe_1303]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSByte\Int32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b47975.exe_5236]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975\b47975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b08109.exe_5027]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109\b08109.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charissurrogatepair1.exe_460]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair1\CharIsSurrogatePair1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint323.exe_903]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt323\ConvertToUInt323.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt323
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b33759.exe_5041]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759\b33759.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodespop.exe_1827]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop\OpCodesPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstyleshexnumber.exe_1193]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber\NumberStylesHexNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_sideaffects.exe_4751]
+RelativePath=JIT\opt\Inline\Inline_SideAffects\Inline_SideAffects.exe
+WorkingDir=JIT\opt\Inline\Inline_SideAffects
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listreverse.exe_655]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse\ListReverse.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b409748.exe_5544]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748\b409748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[comparisonendinvoke.exe_707]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonEndInvoke\ComparisonEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonEndInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[waithandledispose3.exe_2385]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3\WaitHandleDispose3.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mixedexpr1_r.exe_3491]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r\mixedexpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b07947.exe_5513]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947\b07947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_or_op_cs_d.exe_2780]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_d\Double_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct1_4.exe_3368]
+RelativePath=JIT\jit64\gc\misc\struct1_4\struct1_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cond32_il_r.exe_4457]
+RelativePath=JIT\Methodical\NaN\cond32_il_r\cond32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[b85317.exe_5669]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317\b85317.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_relexplicit5.exe_3989]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit5\_opt_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletosbyte.exe_1359]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte\Int64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b47471.exe_5234]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471\b47471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_passing_struct01.exe_3226]
+RelativePath=JIT\Generics\Fields\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relval_ctor.exe_4224]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_relval_ctor\_speed_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_relval_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_conv.exe_3880]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv\_il_dbgu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b35784.exe_5047]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784\b35784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[stringinfoparsecombiningcharacters.exe_1214]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters\StringInfoParseCombiningCharacters.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16_8.exe_789]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_8\ConvertToInt16_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[args5.exe_2606]
+RelativePath=JIT\CodeGenBringUpTests\Args5\Args5.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletouint64.exe_1337]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64\Int16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b103846.exe_5630]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846\b103846.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[hugearray.exe_3485]
+RelativePath=JIT\jit64\opt\cse\HugeArray\HugeArray.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblydescriptionattributedescription.exe_1622]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription\AssemblyDescriptionAttributeDescription.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesallowtrailingsign.exe_1188]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign\NumberStylesAllowTrailingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgexplicit5.exe_3971]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit5\_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b67744.exe_5354]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744\b67744.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderinsert3.exe_2322]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3\StringBuilderInsert3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[transitive_static01.exe_3192]
+RelativePath=JIT\Generics\Constraints\transitive_static01\transitive_static01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[noentervaltype.exe_178]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterValType\NoEnterValType.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterValType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[testinterface.exe_5825]
+RelativePath=Regressions\common\testInterface\testInterface.exe
+WorkingDir=Regressions\common\testInterface
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgu_ref.exe_3887]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref\_il_dbgu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgbinop.exe_4073]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbinop\_speed_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_cs_r.exe_4362]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_r\double_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84957.exe_5662]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957\b84957.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b56068.exe_5287]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068\b56068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charcompateto1.exe_424]
+RelativePath=CoreMangLib\cti\system\char\CharCompateTo1\CharCompateTo1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharCompateTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05621.exe_5003]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621\b05621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[init_uint32.exe_3121]
+RelativePath=JIT\Directed\zeroinit\init_uint32\init_uint32.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgcastclass_call.exe_3691]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_call\_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[baseclass01.exe_3233]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass01\baseclass01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lim_002.exe_3510]
+RelativePath=JIT\jit64\opt\lim\lim_002\lim_002.exe
+WorkingDir=JIT\jit64\opt\lim\lim_002
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpsubconst.exe_2669]
+RelativePath=JIT\CodeGenBringUpTests\FPSubConst\FPSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSubConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objectdisposedexceptionmessage.exe_1581]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage\ObjectDisposedExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param1a_cs_d.exe_4185]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_d\25param1a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstelem_r4.exe_1855]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4\OpCodesStelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringinfoequals.exe_1208]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals\StringInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectioncontains.exe_502]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains\DictionaryICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletouint16.exe_412]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16\ByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28594.exe_4940]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594\b28594.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal10.exe_748]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal10\ConvertToDecimal10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reltest_mutual_rec.exe_4588]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_mutual_rec\_il_reltest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_mutual_rec
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[catch1_d.exe_2940]
+RelativePath=JIT\Directed\leave\catch1_d\catch1_d.exe
+WorkingDir=JIT\Directed\leave\catch1_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byrefconvert_il_d.exe_3017]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_d\byrefconvert_il_d.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_u2.exe_1733]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2\OpCodesConv_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[github_1296.exe_5623]
+RelativePath=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296\GitHub_1296.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_no_op_cs_r.exe_2778]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_r\Double_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u4div_cs_d.exe_3821]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_d\u4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[flowcontrolnext.exe_1650]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext\FlowControlNext.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relknight.exe_4666]
+RelativePath=JIT\Methodical\VT\etc\_speed_relknight\_speed_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relknight
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16039.exe_4869]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039\b16039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend1.exe_2293]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1\StringBuilderAppend1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfogethashcode.exe_1139]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode\CultureInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstloc_3.exe_1871]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3\OpCodesStloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcatchfinally.exe_4305]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally\_speed_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgval_ctor_newobj.exe_4219]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj\_il_dbgval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathfloor.exe_1488]
+RelativePath=CoreMangLib\cti\system\math\MathFloor\MathFloor.exe
+WorkingDir=CoreMangLib\cti\system\math\MathFloor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b37608.exe_5056]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608\b37608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraygetlength.exe_285]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLength\ArrayGetLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLength
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104
+[b05619.exe_5002]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619\b05619.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relrecurse.exe_4258]
+RelativePath=JIT\Methodical\Invoke\fptr\_relrecurse\_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_relrecurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64tostring3.exe_1372]
+RelativePath=CoreMangLib\cti\system\int64\Int64ToString3\Int64ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64ToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodedecimal.exe_2438]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDecimal\TypeCodeDecimal.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubletostring2.exe_1072]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString2\DoubleToString2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcompat_i4_u.exe_4544]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_u\_il_dbgcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b170362.exe_5578]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362\b170362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring33.exe_865]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString33\ConvertToString33.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString33
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nansub_cs_d.exe_4476]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_d\r4NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filenotfoundexceptiontostring.exe_1428]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString\FileNotFoundExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charisletterordigit2.exe_450]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit2\CharIsLetterOrDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lvnumcnt1.exe_4773]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar11.exe_734]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar11\ConvertToChar11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryparagraphseparator.exe_1250]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator\UnicodeCategoryParagraphSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b193264.exe_5558]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264\b193264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[twoendfinallys.exe_4021]
+RelativePath=JIT\Methodical\flowgraph\bug619534\twoEndFinallys\twoEndFinallys.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\twoEndFinallys
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbglocal.exe_3665]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocal\_il_dbglocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi_flow.exe_3870]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow\_il_dbgi_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72699.exe_5394]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699\b72699.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartsbyte_3.exe_224]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_3\ThreadStartSByte_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[queuector3.exe_665]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3\QueueCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textreadernull_psc.exe_1471]
+RelativePath=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC\TextReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ulong_cs_d.exe_4388]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_d\ulong_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_i1.exe_1788]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1\OpCodesLdind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b53878.exe_5267]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878\b53878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[494226.exe_2592]
+RelativePath=GC\Regressions\v2.0-rtm\494226\494226\494226.exe
+WorkingDir=GC\Regressions\v2.0-rtm\494226\494226
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;LONG_RUNNING
+[b12263.exe_5691]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263\b12263.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistcontains.exe_295]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListContains\ArrayIListContains.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcatchfinally_tail.exe_4306]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail\_speed_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespantotalseconds.exe_2415]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds\TimeSpanTotalSeconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_ldc_mul.exe_4088]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul\_il_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[baseclass.exe_77]
+RelativePath=baseservices\exceptions\unittests\BaseClass\BaseClass.exe
+WorkingDir=baseservices\exceptions\unittests\BaseClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rotarg_objref.exe_4003]
+RelativePath=JIT\Methodical\explicit\rotate\rotarg_objref\rotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\rotarg_objref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filenotfoundexceptionctor.exe_1423]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor\FileNotFoundExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesdup.exe_1740]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup\OpCodesDup.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpushr8.exe_1947]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8\StackBehaviourPushr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegateremoveimpl.exe_1032]
+RelativePath=CoreMangLib\cti\system\delegate\delegateRemoveImpl\delegateRemoveImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\delegateRemoveImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bne_dbg.exe_3515]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg\bne_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[polyrec.exe_5806]
+RelativePath=Loader\regressions\polyrec\Polyrec\Polyrec.exe
+WorkingDir=Loader\regressions\polyrec\Polyrec
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[_il_dbgii1.exe_4267]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii1\_il_dbgii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrotarg_valref.exe_4008]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref\_il_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[foo_dbg.exe_3531]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg\foo_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4flat_cs_do.exe_3648]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_do\r4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4div_cs_do.exe_3814]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_do\r4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[b48990b.exe_5169]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b\b48990b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgs_ldfld_mulovf.exe_4091]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf\_il_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cond64_il_r.exe_4459]
+RelativePath=JIT\Methodical\NaN\cond64_il_r\cond64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[seq_funcptr_gc_r.exe_3964]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r\seq_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_assignment_class01.exe_3280]
+RelativePath=JIT\Generics\Parameters\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistindexof.exe_297]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListIndexOF\ArrayIListIndexOF.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListIndexOF
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test1.exe_3431]
+RelativePath=JIT\jit64\gc\misc\test1\test1.exe
+WorkingDir=JIT\jit64\gc\misc\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[boxunbox.exe_5742]
+RelativePath=JIT\SIMD\BoxUnbox\BoxUnbox.exe
+WorkingDir=JIT\SIMD\BoxUnbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_odbgtailjump_cs.exe_3676]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgtailjump_cs\_odbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgtailjump_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_add_ovf_u8.exe_3308]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8\ldc_add_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletouint32.exe_391]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32\BooleanIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[trashreg_il_r.exe_2903]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_r\trashreg_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b141062.exe_5645]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062\b141062.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobase64string1.exe_715]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String1\ConvertToBase64String1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_passing_struct01.exe_3279]
+RelativePath=JIT\Generics\Parameters\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstelem.exe_1849]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem\OpCodesStelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesize.exe_1746]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize\OpCodeSize.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybound_o.exe_3533]
+RelativePath=JIT\jit64\opt\rngchk\ArrayBound_o\ArrayBound_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayBound_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45679.exe_4785]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679\b45679.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct6.exe_3387]
+RelativePath=JIT\jit64\gc\misc\struct6\struct6.exe
+WorkingDir=JIT\jit64\gc\misc\struct6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8flat_cs_r.exe_3657]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_r\r8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgaccum.exe_4677]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgaccum\_speed_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarray_o.exe_3537]
+RelativePath=JIT\jit64\opt\rngchk\JaggedArray_o\JaggedArray_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\JaggedArray_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keycollectioncount.exe_547]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount\KeyCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charisletterordigit1.exe_449]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit1\CharIsLetterOrDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinforfc1123pattern.exe_1160]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern\DateTimeFormatInfoRFC1123Pattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[manualreseteventctor.exe_2381]
+RelativePath=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor\ManualResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nongentogen01.exe_3200]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen01\nongentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64minvalue.exe_1366]
+RelativePath=CoreMangLib\cti\system\int64\Int64MinValue\Int64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[safehandledangerousaddref_psc.exe_2104]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC\SafeHandleDangerousAddRef_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesnoinlining.exe_1999]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining\MethodImplAttributesNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chaos65204782cs_o.exe_3208]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs_o\chaos65204782cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringformat1.exe_2206]
+RelativePath=CoreMangLib\cti\system\string\StringFormat1\StringFormat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b45259.exe_5133]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259\b45259.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bug606733.exe_3576]
+RelativePath=JIT\jit64\regress\vsw\606733\Bug606733\Bug606733.exe
+WorkingDir=JIT\jit64\regress\vsw\606733\Bug606733
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[volatilecpobj_il_d.exe_2904]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_d\volatilecpobj_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletouint64.exe_2140]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64\SByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charenumeratorcurrent.exe_474]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent\CharEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletoint64.exe_436]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt64\CharIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgrecurse.exe_4233]
+RelativePath=JIT\Methodical\Invoke\fptr\_dbgrecurse\_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_dbgrecurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[trashreg_il_d.exe_2902]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_d\trashreg_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcsvalbox.exe_3598]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsvalbox\_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsvalbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b140298.exe_5644]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298\b140298.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arglist.exe_2971]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\arglist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
+[arraytypemismatchexceptionctor1.exe_345]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1\ArrayTypeMismatchExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm64_cs_ro.exe_4447]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_ro\arithm64_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[abssqrt.exe_5739]
+RelativePath=JIT\SIMD\AbsSqrt\AbsSqrt.exe
+WorkingDir=JIT\SIMD\AbsSqrt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8flat_cs_ro.exe_3658]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_ro\r8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend15.exe_2299]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15\StringBuilderAppend15.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_r.exe_4430]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gethashcode.exe_2067]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[deepcall.exe_4733]
+RelativePath=JIT\opt\Inline\deepcall\deepcall.exe
+WorkingDir=JIT\opt\Inline\deepcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread22.exe_107]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread22
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[attributetargetsenum.exe_355]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum\AttributeTargetsEnum.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b70289.exe_5368]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289\b70289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[streamreadtimeout_psc.exe_1467]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC\StreamReadTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16iconvertibletouint32.exe_1336]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32\Int16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b46629.exe_5147]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629\b46629.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleparse3.exe_1069]
+RelativePath=CoreMangLib\cti\system\double\DoubleParse3\DoubleParse3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleParse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b333008.exe_5731]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008\b333008.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versionrevision.exe_2553]
+RelativePath=CoreMangLib\cti\system\version\VersionRevision\VersionRevision.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionRevision
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i8_un.exe_1716]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un\OpCodesConv_Ovf_I8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4div_cs_ro.exe_3816]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_ro\r4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[box_unbox.exe_2996]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\Box_Unbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nongentogen03.exe_3202]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen03\nongentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit1_il_d.exe_3786]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_d\prefldinit1_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderlength.exe_2324]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength\StringBuilderLength.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress2_do.exe_3461]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_do\CgStress2_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[foo2_opt.exe_3530]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt\foo2_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalasattributesizeconst.exe_2098]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst\MarshalAsAttributeSizeConst.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b57493.exe_5295]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493\b57493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS
+[converttosbyte.exe_821]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte\ConvertToSByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletodouble.exe_433]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDouble\CharIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rellcs2.exe_3608]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs2\_speed_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt3_cs_ro.exe_3176]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_ro\vt3_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaldiv_cs_d.exe_3796]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_d\decimaldiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraybinarysearch5.exe_272]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5\ArrayBinarySearch5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[systemcollgenericicollectionadd.exe_553]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd\SystemCollGenericICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48554b.exe_5162]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b\b48554b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4flat_cs_d.exe_3647]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_d\r4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u.exe_1718]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U\OpCodesConv_Ovf_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinfoisreadonly.exe_1158]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly\DateTimeFormatInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldsub_cs_d.exe_2876]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_d\lclfldsub_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli_qsort1.exe_3899]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1\_il_reli_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16parse2.exe_1341]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse2\Int16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldloca.exe_3004]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\ldloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycopy.exe_5830]
+RelativePath=Regressions\coreclr\0018\ArrayCopy\ArrayCopy.exe
+WorkingDir=Regressions\coreclr\0018\ArrayCopy
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27917.exe_4935]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917\b27917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathgetfullpath_extended.exe_1452]
+RelativePath=CoreMangLib\cti\system\io\path\PathGetFullPath_Extended\PathGetFullPath_Extended.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathGetFullPath_Extended
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter018.exe_70]
+RelativePath=baseservices\exceptions\generics\TypeParameter018\TypeParameter018.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter018
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_rellcs_long.exe_4057]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_long\_il_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[dictenumienumreset.exe_538]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset\DictEnumIEnumReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryenumeratorcurrent.exe_539]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent\DictionaryEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[volatilefield.exe_3502]
+RelativePath=JIT\jit64\opt\cse\volatilefield\volatilefield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilefield
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37830.exe_5228]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830\b37830.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[textinfoisreadonly.exe_1224]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly\TextInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ceeillegal.exe_2830]
+RelativePath=JIT\Directed\coverage\importer\ceeillegal\ceeillegal.exe
+WorkingDir=JIT\Directed\coverage\importer\ceeillegal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetcharcount.exe_2276]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount\EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodaccessexceptionctor3.exe_1537]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3\MethodAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_u4.exe_1723]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4\OpCodesConv_Ovf_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal13.exe_751]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal13\ConvertToDecimal13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b268908.exe_5533]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908\b268908.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesinitblk.exe_1743]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk\OpCodesInitblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleequals1.exe_1048]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals1\DoubleEquals1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldrem_cs_d.exe_2872]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_d\lclfldrem_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[debug.exe_4732]
+RelativePath=JIT\opt\Inline\debug\debug.exe
+WorkingDir=JIT\opt\Inline\debug
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal8.exe_760]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal8\ConvertToDecimal8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackpush.exe_684]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPush\StackPush.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPush
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case5.exe_5777]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5\case5.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relconv_i8_u.exe_3893]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u\_il_relconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter004.exe_56]
+RelativePath=baseservices\exceptions\generics\TypeParameter004\TypeParameter004.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter004
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletodatetime.exe_1297]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime\Int32IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[calli2.exe_2829]
+RelativePath=JIT\Directed\coverage\importer\calli2\calli2.exe
+WorkingDir=JIT\Directed\coverage\importer\calli2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringpadright1.exe_2232]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight1\StringPadRight1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgunbox.exe_4706]
+RelativePath=JIT\Methodical\xxobj\operand\_dbgunbox\_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_dbgunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[9param.exe_3356]
+RelativePath=JIT\jit64\gc\misc\9param\9param.exe
+WorkingDir=JIT\jit64\gc\misc\9param
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intarr_cs_ro.exe_4423]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro\intarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compilergeneratedattributector.exe_2058]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor\CompilerGeneratedAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25815.exe_4910]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815\b25815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b115932b.exe_5526]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b\b115932b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[returnfromcatch.exe_80]
+RelativePath=baseservices\exceptions\unittests\ReturnFromCatch\ReturnFromCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ReturnFromCatch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b80365.exe_5649]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365\b80365.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderctor1.exe_2315]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1\StringBuilderctor1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b17023.exe_5709]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023\b17023.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayinitialize.exe_310]
+RelativePath=CoreMangLib\cti\system\array\ArrayInitialize\ArrayInitialize.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayInitialize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84961.exe_5664]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961\b84961.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletodecimal.exe_2169]
+RelativePath=CoreMangLib\cti\system\single\SingleToDecimal\SingleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exchangetstring_2.exe_169]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString_2\ExchangeTString_2.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b140118.exe_5486]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118\b140118.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeminute.exe_943]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinute\DateTimeMinute.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinute
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryuppercaseletter.exe_1256]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter\UnicodeCategoryUppercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartchar_2.exe_188]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_2\ThreadStartChar_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[parameterattributesretval.exe_2010]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval\ParameterAttributesRetval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[environmentprocessorcount_psc.exe_1088]
+RelativePath=CoreMangLib\cti\system\environment\EnvironmentProcessorCount_PSC\EnvironmentProcessorCount_PSC.exe
+WorkingDir=CoreMangLib\cti\system\environment\EnvironmentProcessorCount_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b42013.exe_5098]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013\b42013.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[tail.exe_3123]
+RelativePath=JIT\Directed\zeroinit\tail\tail.exe
+WorkingDir=JIT\Directed\zeroinit\tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relobjref.exe_4283]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relobjref\_il_relobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relobjref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletobyte.exe_1052]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToByte\DoubleIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b89277.exe_5445]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277\b89277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletotype.exe_411]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToType\ByteIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldind.exe_5753]
+RelativePath=JIT\SIMD\Ldind\Ldind.exe
+WorkingDir=JIT\SIMD\Ldind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[staticvaluefield.exe_2723]
+RelativePath=JIT\CodeGenBringUpTests\StaticValueField\StaticValueField.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticValueField
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletodatetime.exe_381]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime\BooleanIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b92726.exe_5674]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726\b92726.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderctor2.exe_2316]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2\StringBuilderctor2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[calendarweekrulefirstfullweek.exe_1112]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek\CalendarWeekRuleFirstFullWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16parse1.exe_1340]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse1\Int16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefloc_r8.exe_3957]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r8\_il_relrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[obsoleteattributector3.exe_1585]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3\ObsoleteAttributeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intarraysum.exe_2677]
+RelativePath=JIT\CodeGenBringUpTests\IntArraySum\IntArraySum.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntArraySum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletodouble.exe_2170]
+RelativePath=CoreMangLib\cti\system\single\SingleToDouble\SingleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosbyte6.exe_830]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte6\ConvertToSByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetchars3.exe_2281]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars3\EncodingGetChars3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test0792.exe_5855]
+RelativePath=Regressions\coreclr\0792\Test0792\Test0792.exe
+WorkingDir=Regressions\coreclr\0792\Test0792
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sp2.exe_3094]
+RelativePath=JIT\Directed\StructPromote\SP2\SP2.exe
+WorkingDir=JIT\Directed\StructPromote\SP2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread21.exe_106]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread21
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[int32iconvertibletobyte.exe_1295]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToByte\Int32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[throwincatch.exe_81]
+RelativePath=baseservices\exceptions\unittests\ThrowInCatch\ThrowInCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInCatch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumisdefined.exe_1082]
+RelativePath=CoreMangLib\cti\system\enum\EnumIsDefined\EnumIsDefined.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIsDefined
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singleisinfinity.exe_2156]
+RelativePath=CoreMangLib\cti\system\single\SingleIsInfinity\SingleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b61515.exe_5330]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515\b61515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4rem_cs_ro.exe_3836]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_ro\i4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartchar_4.exe_190]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_4\ThreadStartChar_4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[instance_equalnull_struct01.exe_3224]
+RelativePath=JIT\Generics\Fields\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueleint1.exe_2692]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeInt1\JTrueLeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileshareenum.exe_1429]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareEnum\FileShareEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct05.exe_3140]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05\struct05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble9.exe_775]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble9\ConvertToDouble9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinfoinvariantinfo.exe_1157]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo\DateTimeFormatInfoInvariantInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathabs6.exe_1478]
+RelativePath=CoreMangLib\cti\system\math\MathAbs6\MathAbs6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b26332.exe_4916]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332\b26332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8_cs_do.exe_3660]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_do\r8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess2_cs_r.exe_3080]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_r\straccess2_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcsmax.exe_3585]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmax\_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmax
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[opcodesstind_i2.exe_1861]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2\OpCodesStind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case4.exe_5776]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4\case4.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev10_884217_il.exe_3478]
+RelativePath=JIT\jit64\opt\cprop\Dev10_884217_IL\Dev10_884217_IL.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_884217_IL
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[xaddmuly_cs_do.exe_2823]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do\xaddmuly_cs_do.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91248.exe_5458]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248\b91248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[mathmin6.exe_1510]
+RelativePath=CoreMangLib\cti\system\math\MathMin6\MathMin6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fielda_tests.exe_2987]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\fielda_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01.exe_3293]
+RelativePath=JIT\Generics\Typeof\struct01\struct01.exe
+WorkingDir=JIT\Generics\Typeof\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcsbox.exe_3584]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbox\_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32parse1.exe_1311]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse1\Int32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartfloat_1.exe_200]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartFloat_1\ThreadStartFloat_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartFloat_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[threadstartstring_3.exe_230]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_3\ThreadStartString_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[converttouint166.exe_887]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt166\ConvertToUInt166.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt166
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nativeuint_il_d.exe_3044]
+RelativePath=JIT\Directed\shift\nativeuint_il_d\nativeuint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgval_cctor.exe_4218]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor\_il_dbgval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reliu4.exe_4282]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu4\_il_reliu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompare2.exe_2183]
+RelativePath=CoreMangLib\cti\system\string\StringCompare2\StringCompare2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param1a_cs_ro.exe_4188]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_ro\25param1a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodingctor.exe_2347]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor\UTF8EncodingCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_cs_do.exe_4369]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_do\int_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistinsert.exe_298]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListInsert\ArrayIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListInsert
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[overldrem_cs_do.exe_3842]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_do\overldrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev10_846218.exe_3105]
+RelativePath=JIT\Directed\UnrollLoop\Dev10_846218\Dev10_846218.exe
+WorkingDir=JIT\Directed\UnrollLoop\Dev10_846218
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b07369.exe_5510]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369\b07369.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relexplicit6.exe_3998]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit6\_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblsubconst.exe_2634]
+RelativePath=JIT\CodeGenBringUpTests\DblSubConst\DblSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSubConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[finalizer.exe_2579]
+RelativePath=GC\Features\HeapExpansion\Finalizer\Finalizer.exe
+WorkingDir=GC\Features\HeapExpansion\Finalizer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;ISSUE_3515
+[streamdispose2_psc.exe_1465]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC\StreamDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b02043.exe_4982]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043\b02043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartshort_3.exe_227]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartShort_3\ThreadStartShort_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartShort_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[co1727ctor_oo.exe_5865]
+RelativePath=Regressions\coreclr\1386\Co1727ctor_OO\Co1727ctor_OO.exe
+WorkingDir=Regressions\coreclr\1386\Co1727ctor_OO
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgs_ldfld_mulovf.exe_4082]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf\_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b173569.exe_4776]
+RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569\b173569.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[tailwinapi.exe_2916]
+RelativePath=JIT\Directed\IL\PInvokeTail\TailWinApi\TailWinApi.exe
+WorkingDir=JIT\Directed\IL\PInvokeTail\TailWinApi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14769.exe_4860]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769\b14769.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldfld_mul.exe_4099]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mul\_il_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b08672.exe_5028]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672\b08672.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_or_op_cs_ro.exe_2815]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_ro\Int_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletoboolean.exe_2130]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean\SByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_xor_op_cs_ro.exe_2771]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_ro\Bool_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmax11.exe_1494]
+RelativePath=CoreMangLib\cti\system\math\MathMax11\MathMax11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[largearraytest.exe_5836]
+RelativePath=Regressions\coreclr\0075\LargeArrayTest\LargeArrayTest.exe
+WorkingDir=Regressions\coreclr\0075\LargeArrayTest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalequals2.exe_989]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals2\DecimalEquals2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletosbyte.exe_409]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte\ByteIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteminvalue.exe_416]
+RelativePath=CoreMangLib\cti\system\byte\ByteMinValue\ByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanadd_cs_do.exe_4461]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_do\r4NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16399.exe_5520]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399\b16399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u8div_cs_d.exe_3825]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_d\u8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfoparent.exe_1144]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent\CultureInfoParent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[conditionalattributeconditionstring.exe_1033]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString\ConditionalAttributeConditionString.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstloc_0.exe_1868]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0\OpCodesStloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcs.exe_4683]
+RelativePath=JIT\Methodical\VT\port\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[test_csharp_base_3.exe_2750]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_3\Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[autoreseteventctor.exe_2364]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor\AutoResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dividebyzeroexceptionctor2.exe_1041]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2\DivideByZeroExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filesharenone.exe_1430]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareNone\FileShareNone.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbglcsmixed.exe_3586]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmixed\_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16071.exe_4871]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071\b16071.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32maxvalue.exe_1309]
+RelativePath=CoreMangLib\cti\system\int\Int32MaxValue\Int32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[callingconventionsvarargs.exe_1641]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs\CallingConventionsVarArgs.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategorysurrogate.exe_1254]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate\UnicodeCategorySurrogate.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpdist.exe_2656]
+RelativePath=JIT\CodeGenBringUpTests\FPDist\FPDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71831.exe_5386]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831\b71831.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chartolower1.exe_469]
+RelativePath=CoreMangLib\cti\system\char\CharToLower1\CharToLower1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToLower1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_reljumper.exe_4626]
+RelativePath=JIT\Methodical\VT\callconv\_reljumper\_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumper
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr8a_cs_ro.exe_4047]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_ro\convr8a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_i8_u8.exe_3315]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8\ldc_conv_ovf_i8_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b89409.exe_5447]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409\b89409.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareinfoisprefix.exe_1121]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIsPrefix\CompareInfoIsPrefix.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIsPrefix
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcparaminreg.exe_3362]
+RelativePath=JIT\jit64\gc\misc\gcparaminreg\gcparaminreg.exe
+WorkingDir=JIT\jit64\gc\misc\gcparaminreg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chaos56200037cs.exe_3205]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs\chaos56200037cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesassumeuniversal.exe_1169]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal\DateTimeStylesAssumeUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_popi_popr4.exe_1938]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4\StackBehaviourPopref_popi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullsdarr.exe_2835]
+RelativePath=JIT\Directed\coverage\importer\nullsdarr\nullsdarr.exe
+WorkingDir=JIT\Directed\coverage\importer\nullsdarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32tostring2.exe_2505]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString2\UInt32ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14068.exe_4845]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068\b14068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter013.exe_65]
+RelativePath=baseservices\exceptions\generics\TypeParameter013\TypeParameter013.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter013
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_xor_op_cs_do.exe_2801]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_do\Float_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrecurse_tail_call.exe_4252]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call\_il_relrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalmultiply.exe_995]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMultiply\DecimalMultiply.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMultiply
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8rem_cs_d.exe_3837]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_d\i8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[targetparametercountexceptionctor2.exe_2018]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2\TargetParameterCountExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgldobj_r8.exe_4696]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8\_il_dbgldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16parse3.exe_2475]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse3\UInt16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_no_op_cs_ro.exe_2779]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_ro\Double_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param1a_cs_r.exe_4187]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_r\25param1a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_no_op_cs_do.exe_2809]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_do\Int_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_816617_ro.exe_5622]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro\DevDiv_816617_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletosbyte.exe_2519]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte\UInt64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nativeuint_il_r.exe_3045]
+RelativePath=JIT\Directed\shift\nativeuint_il_r\nativeuint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generics2_d.exe_4504]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_d\generics2_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[box_unbox.exe_3008]
+RelativePath=JIT\Directed\PREFIX\volatile\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\Box_Unbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_xor_op_cs_ro.exe_2787]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_ro\Double_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_reltailjump_il.exe_3684]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_il\_reltailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16241.exe_4873]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241\b16241.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[mul1_opt.exe_3522]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt\mul1_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgs_ldsfld_mul.exe_4083]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul\_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesallowdecimalpoint.exe_1181]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint\NumberStylesAllowDecimalPoint.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[systemcollicollectionsyncroot.exe_565]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot\SystemCollICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint3212.exe_895]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3212\ConvertToUInt3212.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3212
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relinitializearray_enum.exe_3621]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum\_il_relinitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typemakearraytype1.exe_2429]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType1\TypeMakeArrayType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret5_1.exe_3424]
+RelativePath=JIT\jit64\gc\misc\structret5_1\structret5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring9.exe_871]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString9\ConvertToString9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefloc_o.exe_3954]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o\_il_relrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72522.exe_5393]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522\b72522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[largeobjectalloc2.exe_2578]
+RelativePath=GC\Coverage\LargeObjectAlloc2\LargeObjectAlloc2.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104
+[typeattributesansiclass.exe_2021]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass\TypeAttributesAnsiClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint165.exe_886]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt165\ConvertToUInt165.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt165
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathround3.exe_1518]
+RelativePath=CoreMangLib\cti\system\math\MathRound3\MathRound3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[asgsub1.exe_2610]
+RelativePath=JIT\CodeGenBringUpTests\AsgSub1\AsgSub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgSub1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[getenumerator.exe_561]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator\GetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[loop3_il_r.exe_3111]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_r\loop3_il_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b20249.exe_4894]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249\b20249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpopref_popi.exe_1934]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi\StackBehaviourPopref_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b15783.exe_4813]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783\b15783.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueltfp.exe_2694]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtFP\JTrueLtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44204.exe_5119]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204\b44204.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b219940.exe_5498]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940\b219940.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initblk3_il_r.exe_4692]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_r\initblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exceptiongetbaseexception.exe_1098]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionGetBaseException\ExceptionGetBaseException.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionGetBaseException
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionarykeys2.exe_522]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2\DictionaryIDictionaryKeys2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayilistremove.exe_299]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemove\ArrayIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b34953.exe_5208]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953\b34953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71179.exe_5382]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179\b71179.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inline_genericmethods.exe_4742]
+RelativePath=JIT\opt\Inline\Inline_GenericMethods\Inline_GenericMethods.exe
+WorkingDir=JIT\opt\Inline\Inline_GenericMethods
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli_conv.exe_3894]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv\_il_reli_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param2a_cs_d.exe_4193]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_d\25param2a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2988
+[r8nandiv_cs_r.exe_4486]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_r\r8NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycopy.exe_5815]
+RelativePath=Regressions\common\ArrayCopy\ArrayCopy.exe
+WorkingDir=Regressions\common\ArrayCopy
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgtest1.exe_4208]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest1\_il_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b77950.exe_5418]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950\b77950.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldtokena.exe_4314]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtokena\_il_dbgldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtokena
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletobyte.exe_1324]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToByte\Int16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charenumeratorreset.exe_478]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset\CharEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rels_ldsfld_mul.exe_4128]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul\_speed_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycreateinstance2b.exe_283]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2b\ArrayCreateInstance2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldlen.exe_1798]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen\OpCodesLdlen.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[embedstringversions.exe_5764]
+RelativePath=Loader\binding\assemblies\assemblyversion\EmbedStringVersions\EmbedStringVersions.exe
+WorkingDir=Loader\binding\assemblies\assemblyversion\EmbedStringVersions
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;UNWIND
+[_dbgisinst_ldloc.exe_3697]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldloc\_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgs_ldc_div.exe_4114]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div\_speed_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletoboolean.exe_2458]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean\UInt16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread12.exe_97]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[pathgetextension.exe_1449]
+RelativePath=CoreMangLib\cti\system\io\path\PathGetExtension\PathGetExtension.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathGetExtension
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[seqpts.exe_5586]
+RelativePath=JIT\Regression\Dev11\dev11_165544\seqpts\seqpts.exe
+WorkingDir=JIT\Regression\Dev11\dev11_165544\seqpts
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgdeep1.exe_4226]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep1\_il_dbgdeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldfld_mulovf.exe_4100]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf\_il_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overlddiv_cs_d.exe_3809]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_d\overlddiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint1618.exe_882]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1618\ConvertToUInt1618.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1618
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraygetenumerator.exe_284]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetEnumerator\ArrayGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareoptionsignorecase.exe_1124]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase\CompareOptionsIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13647.exe_4796]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647\b13647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint644.exe_923]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt644\ConvertToUInt644.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt644
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b85477.exe_5439]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477\b85477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletodecimal.exe_1354]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal\Int64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesblt_un.exe_1680]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un\OpCodesBlt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[short_cs_do.exe_4381]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_do\short_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread06.exe_121]
+RelativePath=baseservices\threading\generics\threadstart\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[ldc_sub_ovf_i4.exe_3349]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4\ldc_sub_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26748.exe_4921]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748\b26748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gchandletypeweak.exe_2083]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak\GCHandleTypeWeak.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102729.exe_5699]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729\b102729.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_2.exe_798]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_2\ConvertToInt32_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow2_cs_ro.exe_2935]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_ro\pow2_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u4rem_cs_ro.exe_3856]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_ro\u4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relmdarray.exe_4714]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relmdarray\_il_relmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relmdarray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[hello.exe_5847]
+RelativePath=Regressions\coreclr\0416\hello\hello.exe
+WorkingDir=Regressions\coreclr\0416\hello
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25507.exe_4905]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507\b25507.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inl001.exe_3508]
+RelativePath=JIT\jit64\opt\inl\inl001\inl001.exe
+WorkingDir=JIT\jit64\opt\inl\inl001
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte8.exe_832]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte8\ConvertToSByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesil.exe_1994]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL\MethodImplAttributesIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryctor2.exe_495]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2\DictionaryCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rels_ldc_div.exe_4123]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_div\_speed_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rcattrwrapnethrows.exe_2065]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows\RCAttrWrapNEThrows.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax1.exe_1492]
+RelativePath=CoreMangLib\cti\system\math\MathMax1\MathMax1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodinggetchars.exe_2339]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars\UnicodeEncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpsub.exe_2668]
+RelativePath=JIT\CodeGenBringUpTests\FPSub\FPSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16equals1.exe_1320]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals1\Int16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcastclass_newobj.exe_3728]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj\_speed_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relisinst_ldloc.exe_3723]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldloc\_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct04.exe_3249]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct04\struct04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_d.exe_4424]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[abovestacklimit.exe_5814]
+RelativePath=Regressions\common\AboveStackLimit\AboveStackLimit.exe
+WorkingDir=Regressions\common\AboveStackLimit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3032;DBG_FAIL;ISSUE_5814
+[b14617.exe_5517]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617\b14617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b58690.exe_5302]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690\b58690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59857.exe_5315]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857\b59857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletoint64.exe_2137]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64\SByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcsuppressfinalize.exe_1108]
+RelativePath=CoreMangLib\cti\system\gc\GCSuppressFinalize\GCSuppressFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCSuppressFinalize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise1_cs_do.exe_3775]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_do\precise1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relee.exe_4617]
+RelativePath=JIT\Methodical\VT\callconv\_il_relee\_il_relee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relee
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14135.exe_4847]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135\b14135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intptrctor_int32.exe_1374]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32\IntPtrCtor_Int32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmin2.exe_1506]
+RelativePath=CoreMangLib\cti\system\math\MathMin2\MathMin2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class02.exe_3239]
+RelativePath=JIT\Generics\Instantiation\Classes\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b70992.exe_5375]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992\b70992.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringequals6.exe_2205]
+RelativePath=CoreMangLib\cti\system\string\StringEquals6\StringEquals6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesstringformatmask.exe_2044]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask\TypeAttributesStringFormatMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringcomparergettype.exe_2252]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerGetType\StringComparerGetType.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerGetType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b69528.exe_5365]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528\b69528.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblroots.exe_2632]
+RelativePath=JIT\CodeGenBringUpTests\DblRoots\DblRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRoots
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_passing_class01.exe_3284]
+RelativePath=JIT\Generics\Parameters\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sp2b.exe_3096]
+RelativePath=JIT\Directed\StructPromote\SP2b\SP2b.exe
+WorkingDir=JIT\Directed\StructPromote\SP2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3151
+[ldfldahack.exe_5577]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack\LdfldaHack.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;DBG_FAIL
+[numberstylescurrency.exe_1191]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency\NumberStylesCurrency.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b56154.exe_5289]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154\b56154.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt2_il_r.exe_3172]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_r\vt2_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relhanoi.exe_4651]
+RelativePath=JIT\Methodical\VT\etc\_relhanoi\_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhanoi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbreak.exe_1686]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak\OpCodesBreak.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[spaddr.exe_3098]
+RelativePath=JIT\Directed\StructPromote\SpAddr\SpAddr.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relthisnull.exe_4312]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_relthisnull\_speed_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_relthisnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetchars.exe_2356]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars\UTF8EncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ushort_cs_r.exe_4394]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_r\ushort_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi_seq.exe_3875]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq\_il_dbgi_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblydefaultaliasattributedefaultalias.exe_1618]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias\AssemblyDefaultAliasAttributeDefaultAlias.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_ret_i4.exe_3341]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4\ldc_ret_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_xor_op_cs_d.exe_2784]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_d\Double_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b92568.exe_5464]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568\b92568.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91359.exe_5459]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359\b91359.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40216.exe_5071]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216\b40216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int8_il_r.exe_3041]
+RelativePath=JIT\Directed\shift\int8_il_r\int8_il_r.exe
+WorkingDir=JIT\Directed\shift\int8_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16tryparse.exe_2480]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16TryParse\UInt16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch1.exe_264]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1\ArrayBinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetdecoder.exe_2357]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder\UTF8EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesoffline.exe_1411]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline\FileAttributesOffline.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[funcptrtest.exe_2964]
+RelativePath=JIT\Directed\Misc\function_pointer\funcptrtest\funcptrtest.exe
+WorkingDir=JIT\Directed\Misc\function_pointer\funcptrtest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp6_1.exe_3408]
+RelativePath=JIT\jit64\gc\misc\structfp6_1\structfp6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp6_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[conv_dbg.exe_3517]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesallowleadingwhite.exe_1165]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite\DateTimeStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanticksperminute.exe_2408]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute\TimeSpanTicksPerMinute.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosbyte16.exe_825]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte16\ConvertToSByte16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint326.exe_906]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt326\ConvertToUInt326.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt326
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort10.exe_329]
+RelativePath=CoreMangLib\cti\system\array\ArraySort10\ArraySort10.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedcompareexchange6.exe_2371]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6\InterlockedCompareExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b39946.exe_3792]
+RelativePath=JIT\Methodical\Coverage\b39946\b39946.exe
+WorkingDir=JIT\Methodical\Coverage\b39946
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_cs_ro.exe_4347]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_ro\bool_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[params-none.exe_5477]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none\params-none.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test0576.exe_5851]
+RelativePath=Regressions\coreclr\0576\Test0576\Test0576.exe
+WorkingDir=Regressions\coreclr\0576\Test0576
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring19.exe_850]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString19\ConvertToString19.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString19
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldelemnullarr2.exe_2831]
+RelativePath=JIT\Directed\coverage\importer\ldelemnullarr2\ldelemnullarr2.exe
+WorkingDir=JIT\Directed\coverage\importer\ldelemnullarr2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b60127.exe_5322]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127\b60127.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalasattributevalue.exe_2100]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue\MarshalAsAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jaggedarr_cs_ro.exe_4403]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relaa.exe_4614]
+RelativePath=JIT\Methodical\VT\callconv\_il_relaa\_il_relaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relaa
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrecurse_calli.exe_4237]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli\_il_dbgrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuetype_r.exe_4511]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_r\valuetype_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcsmax.exe_3611]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmax\_speed_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmax
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[b85316.exe_5436]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16935.exe_4780]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935\b16935.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin11.exe_1505]
+RelativePath=CoreMangLib\cti\system\math\MathMin11\MathMin11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16_ro.exe_3027]
+RelativePath=JIT\Directed\shift\int16_ro\int16_ro.exe
+WorkingDir=JIT\Directed\shift\int16_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relldc_mulovf.exe_4163]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mulovf\_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[obsoleteattributeiserror.exe_1586]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError\ObsoleteAttributeIsError.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret5_3.exe_3426]
+RelativePath=JIT\jit64\gc\misc\structret5_3\structret5_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relbox.exe_4070]
+RelativePath=JIT\Methodical\int64\misc\_il_relbox\_il_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_4050]
+RelativePath=JIT\Methodical\inlining\bug505642\test\test.exe
+WorkingDir=JIT\Methodical\inlining\bug505642\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_dbgexplicit7.exe_3983]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit7\_opt_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbge_s.exe_1667]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S\OpCodesBge_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case15.exe_5773]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15\case15.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesnestedprivate.exe_2036]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate\TypeAttributesNestedPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyteiconvertibletoint32.exe_2136]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32\SByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pinnedhandle.exe_2582]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedHandle\PinnedHandle.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedHandle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b74608.exe_5403]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608\b74608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41918.exe_5096]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918\b41918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[repro237932.exe_5782]
+RelativePath=Loader\classloader\generics\regressions\vsw237932\repro237932\repro237932.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw237932\repro237932
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullablehasvalue.exe_1569]
+RelativePath=CoreMangLib\cti\system\nullable\NullableHasValue\NullableHasValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableHasValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16_r.exe_3052]
+RelativePath=JIT\Directed\shift\uint16_r\uint16_r.exe
+WorkingDir=JIT\Directed\shift\uint16_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratormovenext.exe_582]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_and_op_cs_do.exe_2757]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_do\Bool_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathround1.exe_1516]
+RelativePath=CoreMangLib\cti\system\math\mathRound1\mathRound1.exe
+WorkingDir=CoreMangLib\cti\system\math\mathRound1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstatic02.exe_5874]
+RelativePath=Threading\ThreadStatics\ThreadStatic02\ThreadStatic02.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b07082.exe_5022]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082\b07082.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct4_4.exe_3381]
+RelativePath=JIT\jit64\gc\misc\struct4_4\struct4_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryremove.exe_525]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove\DictionaryIDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_opt_dbgexplicit3.exe_3979]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit3\_opt_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[formatexceptionctor1.exe_1100]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1\FormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16_cs_ro.exe_3023]
+RelativePath=JIT\Directed\shift\int16_cs_ro\int16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int16_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct02.exe_3247]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u4_un.exe_1724]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un\OpCodesConv_Ovf_U4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv2_8863.exe_5600]
+RelativePath=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863\DevDiv2_8863.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct07.exe_3142]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07\struct07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesallowtrailingwhite.exe_1189]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite\NumberStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalreadint641_psc.exe_2089]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalReadInt641_PSC\MarshalReadInt641_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalReadInt641_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[environmentnewline.exe_1086]
+RelativePath=CoreMangLib\cti\system\environment\EnvironmentNewLine\EnvironmentNewLine.exe
+WorkingDir=CoreMangLib\cti\system\environment\EnvironmentNewLine
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b53650.exe_5265]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650\b53650.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimetoday.exe_958]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimetoday\DateTimetoday.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimetoday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeparse3.exe_948]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse3\DateTimeParse3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[lt1.exe_2705]
+RelativePath=JIT\CodeGenBringUpTests\Lt1\Lt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Lt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b06730.exe_5018]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730\b06730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefarg_i4.exe_3947]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i4\_il_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblydescriptionattributector.exe_1621]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor\AssemblyDescriptionAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fault.exe_3100]
+RelativePath=JIT\Directed\throwbox\fault\fault.exe
+WorkingDir=JIT\Directed\throwbox\fault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret6_1.exe_3427]
+RelativePath=JIT\jit64\gc\misc\structret6_1\structret6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b51469.exe_5254]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469\b51469.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow2_cs_do.exe_2933]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_do\pow2_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartgenerics_2.exe_204]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartGenerics_2\ThreadStartGenerics_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartGenerics_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b13466.exe_5036]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466\b13466.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend12.exe_2296]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12\StringBuilderAppend12.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b66583.exe_5350]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583\b66583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltoint64.exe_1013]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt64\DecimalToInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[systemcollectionsicollectioncopyto.exe_550]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgconvovf_i8_i.exe_3863]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i\_il_dbgconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint6418.exe_920]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6418\ConvertToUInt6418.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6418
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread15.exe_130]
+RelativePath=baseservices\threading\generics\threadstart\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[uint_cs_d.exe_4384]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_d\uint_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathtan.exe_1530]
+RelativePath=CoreMangLib\cti\system\math\MathTan\MathTan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTan
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoboolean5.exe_720]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean5\ConvertToBoolean5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesvirtual.exe_1990]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual\MethodAttributesVirtual.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[zeroinit_il_r.exe_2907]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_r\zeroinit_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b53662.exe_5266]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662\b53662.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbytetryparse.exe_2149]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteTryParse\SByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch4b.exe_271]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4b\ArrayBinarySearch4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[hugesimpleexpr1.exe_3490]
+RelativePath=JIT\jit64\opt\cse\hugeSimpleExpr1\hugeSimpleExpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeSimpleExpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vector4.exe_5760]
+RelativePath=JIT\SIMD\Vector4\Vector4.exe
+WorkingDir=JIT\SIMD\Vector4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fgtest2.exe_3360]
+RelativePath=JIT\jit64\gc\misc\fgtest2\fgtest2.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relisinst_catch_neg.exe_3760]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg\_il_relisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b119538b.exe_5472]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b\b119538b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keycollectionenumeratorienumeratorcurrent.exe_576]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent\KeyCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16_9.exe_790]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_9\ConvertToInt16_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesnative.exe_1998]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative\MethodImplAttributesNative.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48554a.exe_5161]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a\b48554a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedaddlong_1.exe_155]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_1\InterlockedAddLong_1.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[int32iconvertibletodecimal.exe_1298]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal\Int32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b147147.exe_5490]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147\b147147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[smallframe.exe_4592]
+RelativePath=JIT\Methodical\tailcall_v4\smallFrame\smallFrame.exe
+WorkingDir=JIT\Methodical\tailcall_v4\smallFrame
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraywith2loops_o.exe_3534]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWith2Loops_o\ArrayWith2Loops_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWith2Loops_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryotherletter.exe_1245]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter\UnicodeCategoryOtherLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rem1.exe_2719]
+RelativePath=JIT\CodeGenBringUpTests\rem1\rem1.exe
+WorkingDir=JIT\CodeGenBringUpTests\rem1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_r8.exe_1729]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8\OpCodesConv_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_xor_op_cs_d.exe_2816]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_d\Int_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_r4.exe_1728]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4\OpCodesConv_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosingle16.exe_838]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle16\ConvertToSingle16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributespinvokeimpl.exe_1964]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl\FieldAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16iconvertibletosingle.exe_1333]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle\Int16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcreport.exe_4523]
+RelativePath=JIT\Methodical\refany\gcreport\gcreport.exe
+WorkingDir=JIT\Methodical\refany\gcreport
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesendfilter.exe_1741]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter\OpCodesEndfilter.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filesharereadwrite.exe_1432]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite\FileShareReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw514968.exe_5783]
+RelativePath=Loader\classloader\generics\regressions\vsw514968\vsw514968\vsw514968.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw514968\vsw514968
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanrem_cs_do.exe_4473]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_do\r4NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorymodifiersymbol.exe_1242]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol\UnicodeCategoryModifierSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i2.exe_1711]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2\OpCodesConv_Ovf_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[xaddmuly_cs_ro.exe_2825]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro\xaddmuly_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b82160.exe_5426]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160\b82160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b473131_byte.exe_5594]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_byte\b473131_byte.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_byte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionarytrygetvalue.exe_598]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue\IDictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstatic06.exe_250]
+RelativePath=baseservices\threading\threadstatic\ThreadStatic06\ThreadStatic06.exe
+WorkingDir=baseservices\threading\threadstatic\ThreadStatic06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldelem_u4.exe_1783]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4\OpCodesLdelem_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_no_op_cs_d.exe_2760]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_d\Bool_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_i4_m1.exe_1766]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1\OpCodesLdc_I4_M1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filter3_r.exe_2951]
+RelativePath=JIT\Directed\leave\filter3_r\filter3_r.exe
+WorkingDir=JIT\Directed\leave\filter3_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress1_ro.exe_3459]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_ro\CgStress1_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+[b92736.exe_5467]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736\b92736.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_and_op_cs_d.exe_2804]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_d\Int_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgldfld_mul.exe_4172]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul\_speed_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b29727.exe_5724]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727\b29727.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributesnormal.exe_1409]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal\FileAttributesNormal.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal1.exe_747]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal1\ConvertToDecimal1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relhan3_ref.exe_4664]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ref\_speed_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b55923.exe_5285]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923\b55923.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27824.exe_4932]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824\b27824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_assignment_class01.exe_3254]
+RelativePath=JIT\Generics\Locals\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp4_1.exe_3406]
+RelativePath=JIT\jit64\gc\misc\structfp4_1\structfp4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp4_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeispointerimpl.exe_2428]
+RelativePath=CoreMangLib\cti\system\type\TypeIsPointerImpl\TypeIsPointerImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsPointerImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filemodeopenorcreate.exe_1421]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate\FileModeOpenOrCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring7.exe_869]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString7\ConvertToString7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sp1a.exe_3089]
+RelativePath=JIT\Directed\StructPromote\SP1a\SP1a.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryisreadonly.exe_517]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly\DictionaryIDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[switchdefaultonly3_il_r.exe_2901]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r\switchdefaultonly3_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[invalidoperationexceptionctor3.exe_1389]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3\InvalidOperationExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[6906.exe_245]
+RelativePath=baseservices\threading\regressions\6906\6906\6906.exe
+WorkingDir=baseservices\threading\regressions\6906\6906
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[divsignedunsignedtest.exe_5748]
+RelativePath=JIT\SIMD\DivSignedUnsignedTest\DivSignedUnsignedTest.exe
+WorkingDir=JIT\SIMD\DivSignedUnsignedTest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[array2.exe_4521]
+RelativePath=JIT\Methodical\refany\array2\array2.exe
+WorkingDir=JIT\Methodical\refany\array2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodestring.exe_2447]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeString\TypeCodeString.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuector1.exe_663]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1\QueueCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_reliface1.exe_3744]
+RelativePath=JIT\Methodical\casts\iface\_reliface1\_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_reliface1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[co7510parseexact_formatarray.exe_2566]
+RelativePath=CoreMangLib\system\datetime\Co7510ParseExact_formatarray\Co7510ParseExact_formatarray.exe
+WorkingDir=CoreMangLib\system\datetime\Co7510ParseExact_formatarray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoboolean2.exe_718]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean2\ConvertToBoolean2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41129.exe_5084]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129\b41129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraybinarysearch2.exe_266]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2\ArrayBinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b147924.exe_5491]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924\b147924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_d.exe_4400]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev10_630880.exe_5812]
+RelativePath=reflection\regression\dev10bugs\Dev10_630880\Dev10_630880.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_630880
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_and_op_cs_r.exe_2790]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_r\Float_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interface_class02.exe_3269]
+RelativePath=JIT\Generics\MemberAccess\interface_class02\interface_class02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1307.exe_5861]
+RelativePath=Regressions\coreclr\1307\test1307\test1307.exe
+WorkingDir=Regressions\coreclr\1307\test1307
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletouint16.exe_2470]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16\UInt16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[plainarr_cs_do.exe_4405]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do\plainarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ret_struct_test4.exe_3364]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test4\ret_struct_test4.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fperror.exe_2659]
+RelativePath=JIT\CodeGenBringUpTests\FPError\FPError.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPError
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi4u4.exe_4265]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u4\_il_dbgi4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_u8_u4.exe_3324]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4\ldc_conv_ovf_u8_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[calendarweekrulefirstday.exe_1110]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay\CalendarWeekRuleFirstDay.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[randomctor2.exe_1602]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor2\RandomCtor2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_and_op_cs_ro.exe_2775]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_ro\Double_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletoint32.exe_1330]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32\Int16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4flat_cs_do.exe_3632]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_do\i4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartulong_1.exe_235]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_1\ThreadStartULong_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b32345.exe_4975]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345\b32345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04639.exe_4997]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639\b04639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldoffsetattributector.exe_2075]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor\FieldOffsetAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletoint64.exe_2466]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64\UInt16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[customconstantattributector.exe_2059]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector\CustomConstantAttributector.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefloc_c.exe_3933]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_c\_il_dbgrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread27.exe_112]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread27
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[cse1_cs_do.exe_2851]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_do\cse1_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b42918.exe_5101]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918\b42918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[volatilldind.exe_2841]
+RelativePath=JIT\Directed\coverage\importer\volatilldind\volatilldind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilldind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b518440.exe_5552]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440\b518440.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathsin.exe_1527]
+RelativePath=CoreMangLib\cti\system\math\MathSin\MathSin.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSin
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3105
+[sbyte_cs_d.exe_4376]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d\sbyte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgs_ldsfld_mul.exe_4119]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul\_speed_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_1.exe_3395]
+RelativePath=JIT\jit64\gc\misc\structfp1_1\structfp1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesspecialname.exe_1969]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName\FieldAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102844.exe_5701]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844\b102844.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32613.exe_5195]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613\b32613.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33792.exe_5042]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792\b33792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fprem.exe_2665]
+RelativePath=JIT\CodeGenBringUpTests\FPRem\FPRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[foo.exe_3543]
+RelativePath=JIT\jit64\regress\asurt\143616\foo\foo.exe
+WorkingDir=JIT\jit64\regress\asurt\143616\foo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59782.exe_5313]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782\b59782.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgiface1.exe_3741]
+RelativePath=JIT\Methodical\casts\iface\_dbgiface1\_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_dbgiface1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret5_2.exe_3425]
+RelativePath=JIT\jit64\gc\misc\structret5_2\structret5_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b49435.exe_5241]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435\b49435.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b49335.exe_5240]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335\b49335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28080.exe_4938]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080\b28080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericexceptions05.exe_9]
+RelativePath=baseservices\exceptions\generics\GenericExceptions05\GenericExceptions05.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[objectmemberwiseclone.exe_1578]
+RelativePath=CoreMangLib\cti\system\object\ObjectMemberwiseClone\ObjectMemberwiseClone.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectMemberwiseClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesany.exe_1190]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny\NumberStylesAny.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesrethrow.exe_1842]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow\OpCodesRethrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lim_001.exe_3509]
+RelativePath=JIT\jit64\opt\lim\lim_001\lim_001.exe
+WorkingDir=JIT\jit64\opt\lim\lim_001
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread18.exe_133]
+RelativePath=baseservices\threading\generics\threadstart\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[threadstatic02.exe_247]
+RelativePath=baseservices\threading\threadstatic\ThreadStatic02\ThreadStatic02.exe
+WorkingDir=baseservices\threading\threadstatic\ThreadStatic02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4_cs_r.exe_3637]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_r\i4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objectdisposedexceptionobjectname.exe_1582]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName\ObjectDisposedExceptionObjectName.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionaryitem.exe_519]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem\DictionaryIDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[div_dbg.exe_3519]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg\div_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter010.exe_62]
+RelativePath=baseservices\exceptions\generics\TypeParameter010\TypeParameter010.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter010
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesbr_s.exe_1691]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S\OpCodesBr_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49809.exe_5242]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809\b49809.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimecompareto1.exe_930]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompareTo1\DateTimeCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exception.exe_5801]
+RelativePath=Loader\lowlevel\regress\105736\Exception\Exception.exe
+WorkingDir=Loader\lowlevel\regress\105736\Exception
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6417.exe_919]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6417\ConvertToUInt6417.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6417
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringiconvertibletouint64.exe_2219]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt64\StringIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldfld_mul.exe_4156]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mul\_il_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b62555.exe_5334]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555\b62555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_and_op_cs_ro.exe_2759]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_ro\Bool_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32equals1.exe_2482]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals1\UInt32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributeusageattributector.exe_367]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor\AttributeUsageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrtopointer.exe_1381]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToPointer\IntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToPointer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b57518.exe_5297]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518\b57518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryclosepunctuation.exe_1228]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation\UnicodeCategoryClosePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefloc_i2.exe_3935]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2\_il_dbgrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsignorenonspace.exe_1126]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace\CompareOptionsIgnoreNonSpace.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reli_flow.exe_3897]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow\_il_reli_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathvolumeseparatorchar_psc.exe_1457]
+RelativePath=CoreMangLib\cti\system\io\path\PathVolumeSeparatorChar_PSC\PathVolumeSeparatorChar_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathVolumeSeparatorChar_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcastclass_call.exe_3725]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call\_speed_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar10.exe_733]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar10\ConvertToChar10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgmdarray.exe_4709]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgmdarray\_il_dbgmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgmdarray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrotate_i4.exe_4009]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4\_il_dbgrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16335.exe_4876]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335\b16335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint8_ro.exe_3073]
+RelativePath=JIT\Directed\shift\uint8_ro\uint8_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletodatetime.exe_431]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDateTime\CharIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleiconvertibletodouble.exe_1055]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble\DoubleIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgldnull.exe_3707]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgldnull\_il_dbgldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgldnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_ro.exe_4427]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26863.exe_4922]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863\b26863.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar8.exe_743]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar8\ConvertToChar8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;DBG
+[dayofweekfriday.exe_969]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday\DayOfWeekFriday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relarray1.exe_4534]
+RelativePath=JIT\Methodical\refany\_il_relarray1\_il_relarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_16.exe_780]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_16\ConvertToInt16_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b30862.exe_4959]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862\b30862.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalctor6.exe_984]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor6\DecimalCtor6.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stfldstatic1_il_d.exe_2837]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpconvf2i.exe_2653]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2I\FPConvF2I.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jittailcall1.exe_2919]
+RelativePath=JIT\Directed\IL\Tailcall\jitTailcall1\jitTailcall1.exe
+WorkingDir=JIT\Directed\IL\Tailcall\jitTailcall1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64equals2.exe_1348]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals2\Int64Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartbyte_2.exe_182]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte_2\ThreadStartByte_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[decimalctor8.exe_986]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor8\DecimalCtor8.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[callipinvoke_il_r.exe_2859]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r\callipinvoke_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldarg_s.exe_1755]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S\OpCodesLdarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[valuecollectionenumeratorienumeratorcurrent.exe_578]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalminusone.exe_993]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinusOne\DecimalMinusOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinusOne
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct_static01.exe_3273]
+RelativePath=JIT\Generics\MemberAccess\struct_static01\struct_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgs_ldc_mul.exe_4115]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul\_speed_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort3.exe_337]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3\ArraySort3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25647.exe_4906]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647\b25647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41852.exe_5232]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852\b41852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[rngchkstress1_o.exe_3539]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress1_o\RngchkStress1_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress1_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8div_cs_d.exe_3817]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_d\r8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[avtest.exe_5829]
+RelativePath=Regressions\coreclr\0014\avtest\avtest.exe
+WorkingDir=Regressions\coreclr\0014\avtest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[notimplementedexceptionctor2.exe_1556]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2\NotImplementedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringconcat3.exe_2192]
+RelativePath=CoreMangLib\cti\system\string\StringConcat3\StringConcat3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcatchfinally_tail.exe_4295]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail\_il_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesprefix5.exe_1832]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5\OpCodesPrefix5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm32_do.exe_4441]
+RelativePath=JIT\Methodical\NaN\arithm32_do\arithm32_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dbldist.exe_2624]
+RelativePath=JIT\CodeGenBringUpTests\DblDist\DblDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keyvaluepairvalue.exe_613]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue\KeyValuePairValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_r.exe_4342]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[nullablector.exe_1562]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCtor\NullableCtor.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint8_r.exe_3072]
+RelativePath=JIT\Directed\shift\uint8_r\uint8_r.exe
+WorkingDir=JIT\Directed\shift\uint8_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested.exe_4638]
+RelativePath=JIT\Methodical\VT\etc\nested\nested.exe
+WorkingDir=JIT\Methodical\VT\etc\nested
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28595.exe_4941]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595\b28595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclflddiv_cs_d.exe_2864]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_d\lclflddiv_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class01.exe_3238]
+RelativePath=JIT\Generics\Instantiation\Classes\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstatic01.exe_246]
+RelativePath=baseservices\threading\threadstatic\ThreadStatic01\ThreadStatic01.exe
+WorkingDir=baseservices\threading\threadstatic\ThreadStatic01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalconstantattributector.exe_2068]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor\DecimalConstantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[callingconventionsexplicitthis.exe_1638]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis\CallingConventionsExplicitThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgldobj_r4.exe_4695]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4\_il_dbgldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletoboolean.exe_1051]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean\DoubleIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b138117.exe_5528]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117\b138117.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletosingle.exe_438]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSingle\CharIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[overldrem_cs_r.exe_3843]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_r\overldrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nativeint_il_r.exe_3043]
+RelativePath=JIT\Directed\shift\nativeint_il_r\nativeint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[subovfun1_il_d.exe_2839]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_d\subovfun1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_and_op_cs_d.exe_2788]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_d\Float_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_or_op_cs_do.exe_2813]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_do\Int_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[packingsizesize8.exe_1920]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8\PackingSizeSize8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nanrem_cs_ro.exe_4495]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_ro\r8NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16881a.exe_4884]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a\b16881a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_i2.exe_1705]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2\OpCodesConv_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nansub_cs_r.exe_4478]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_r\r4NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[floatovftoint2_r.exe_4518]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_r\FloatOvfToInt2_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convertchangetype2.exe_711]
+RelativePath=CoreMangLib\cti\system\convert\ConvertChangeType2\ConvertChangeType2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertChangeType2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldelem_ref.exe_1780]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref\OpCodesLdelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldelema.exe_4713]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relldelema\_il_relldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relldelema
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingclone.exe_2262]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingClone\EncodingClone.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrotarg_objref.exe_4013]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_objref\_il_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_objref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimplattributesmanaged.exe_1996]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged\MethodImplAttributesManaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributessequentiallayout.exe_2041]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout\TypeAttributesSequentialLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt2_cs_d.exe_3167]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_d\vt2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interface_struct01.exe_3270]
+RelativePath=JIT\Generics\MemberAccess\interface_struct01\interface_struct01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b77304.exe_5414]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304\b77304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45439.exe_5135]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439\b45439.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalasattributearraysubtype.exe_2092]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType\MarshalAsAttributeArraySubType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25474.exe_4903]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474\b25474.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relldfld_mulovf.exe_4181]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf\_speed_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsignorekanatype.exe_1125]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType\CompareOptionsIgnoreKanaType.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgs_ldfld_mulovf.exe_4118]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf\_speed_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstloc_2.exe_1870]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2\OpCodesStloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbghan3.exe_4655]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3\_speed_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_ret_i8.exe_3342]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8\ldc_ret_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadculture.exe_5842]
+RelativePath=Regressions\coreclr\0202\ThreadCulture\ThreadCulture.exe
+WorkingDir=Regressions\coreclr\0202\ThreadCulture
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[invalidcastexceptionctor1.exe_1384]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1\InvalidCastExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidgethashcode.exe_1270]
+RelativePath=CoreMangLib\cti\system\guid\GuidGetHashCode\GuidGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nandiv_cs_ro.exe_4487]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_ro\r8NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesinitobj.exe_1744]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj\OpCodesInitobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgu_fld.exe_3881]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld\_il_dbgu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ienumerablegetenumerator.exe_563]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50027.exe_5244]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027\b50027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+[stringcompare5.exe_2184]
+RelativePath=CoreMangLib\cti\system\string\StringCompare5\StringCompare5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b47047.exe_5153]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047\b47047.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37256.exe_5225]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256\b37256.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletouint32.exe_2139]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32\SByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodessub.exe_1875]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub\OpCodesSub.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodeoperandtype.exe_1659]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType\OpCodeOperandType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort5.exe_340]
+RelativePath=CoreMangLib\cti\system\array\ArraySort5\ArraySort5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanmul_cs_do.exe_4469]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_do\r4NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[box_unbox.exe_2973]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\Box_Unbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71099.exe_5378]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099\b71099.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[outofmemoryexceptionctor1.exe_1588]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1\OutOfMemoryExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01_instance.exe_3144]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b77806.exe_5417]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806\b77806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof2b.exe_305]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2b\ArrayIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bytetostring1.exe_419]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString1\ByteToString1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[runtimetypehandlegethashcode.exe_2125]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode\RuntimeTypeHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91189.exe_5454]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189\b91189.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14197.exe_4848]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197\b14197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methods.exe_5767]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\methods\methods.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\methods
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rethrow2.exe_2918]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow2\Rethrow2.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_assignment_struct01.exe_3228]
+RelativePath=JIT\Generics\Fields\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgii4.exe_4269]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii4\_il_dbgii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b15728.exe_4868]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728\b15728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27535.exe_4925]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535\b27535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intptrctor_int64.exe_1375]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64\IntPtrCtor_Int64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test3.exe_3433]
+RelativePath=JIT\jit64\gc\misc\test3\test3.exe
+WorkingDir=JIT\jit64\gc\misc\test3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint3217.exe_899]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3217\ConvertToUInt3217.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3217
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lngconv.exe_2701]
+RelativePath=JIT\CodeGenBringUpTests\LngConv\LngConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\LngConv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_cs_r.exe_4366]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_r\float_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeuint64.exe_2450]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt64\TypeCodeUInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singletosbyte.exe_2174]
+RelativePath=CoreMangLib\cti\system\single\SingleToSByte\SingleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16_r.exe_3026]
+RelativePath=JIT\Directed\shift\int16_r\int16_r.exe
+WorkingDir=JIT\Directed\shift\int16_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b49104.exe_5238]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104\b49104.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpmulconst.exe_2663]
+RelativePath=JIT\CodeGenBringUpTests\FPMulConst\FPMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMulConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartbool_1.exe_179]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_1\ThreadStartBool_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[ulong_cs_ro.exe_4391]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro\ulong_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalequals1.exe_988]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals1\DecimalEquals1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-finally02.exe_51]
+RelativePath=baseservices\exceptions\generics\try-finally02\try-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathgetfilenamewithoutextension.exe_1451]
+RelativePath=CoreMangLib\cti\system\io\path\PathGetFileNameWithoutExtension\PathGetFileNameWithoutExtension.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathGetFileNameWithoutExtension
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8flat_cs_d.exe_3639]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_d\i8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletouint64.exe_2472]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64\UInt16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[regioninfotwoletterisoregionname.exe_1205]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName\RegionInfoTwoLetterISORegionName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesprivatescope.exe_1982]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope\MethodAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[long_cs_d.exe_4372]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_d\long_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16tostring2.exe_1344]
+RelativePath=CoreMangLib\cti\system\int16\Int16ToString2\Int16ToString2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[short_cs_ro.exe_4383]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_ro\short_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_no_op_cs_do.exe_2777]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_do\Double_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b39217.exe_5060]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217\b39217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param3a_cs_d.exe_4197]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_d\25param3a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldc_mul.exe_4097]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mul\_il_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4nandiv_cs_ro.exe_4467]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_ro\r4NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relcatchfinally.exe_4307]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally\_speed_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring10.exe_841]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString10\ConvertToString10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[streamnull_psc.exe_1466]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamNull_PSC\StreamNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamNull_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listaddrange.exe_621]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAddRange\ListAddRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAddRange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gentonongen01.exe_3197]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen01\gentonongen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdecimal_1.exe_191]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_1\ThreadStartDecimal_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[arraywithfunc_o.exe_3535]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWithFunc_o\ArrayWithFunc_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWithFunc_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgdeep_value.exe_4552]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_value\_il_dbgdeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_value
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64tryparse.exe_2532]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64TryParse\UInt64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[subref.exe_2727]
+RelativePath=JIT\CodeGenBringUpTests\SubRef\SubRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\SubRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inline_recursion.exe_4748]
+RelativePath=JIT\opt\Inline\inline_Recursion\inline_Recursion.exe
+WorkingDir=JIT\opt\Inline\inline_Recursion
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter016.exe_68]
+RelativePath=baseservices\exceptions\generics\TypeParameter016\TypeParameter016.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter016
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyteparse2.exe_2144]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse2\SByteParse2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b15299.exe_4867]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299\b15299.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgexplicit6.exe_3972]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit6\_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14367.exe_4801]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367\b14367.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbr.exe_1685]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr\OpCodesBr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryienumerablegetenumerator2.exe_531]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2\DictionaryIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringremove1.exe_2234]
+RelativePath=CoreMangLib\cti\system\string\StringRemove1\StringRemove1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct5_2.exe_3384]
+RelativePath=JIT\jit64\gc\misc\struct5_2\struct5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcompat_enum.exe_4541]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_enum\_il_dbgcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_enum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimplattributescodetypemask.exe_1992]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask\MethodImplAttributesCodeTypeMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typemakebyreftype.exe_2431]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeByRefType\TypeMakeByRefType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeByRefType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b450688.exe_5735]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688\b450688.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listtrimexcess.exe_658]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess\ListTrimExcess.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfotwoletterisolanguagename.exe_1148]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName\CultureInfoTwoLetterISOLanguageName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relenum_il.exe_3681]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_il\_relenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102879.exe_5488]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879\b102879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess1_cs_d.exe_3074]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_d\straccess1_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intptrtoint64.exe_1380]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt64\IntPtrToInt64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberformatinforeadonly.exe_1179]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly\NumberFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[localloclarge.exe_2703]
+RelativePath=JIT\CodeGenBringUpTests\LocallocLarge\LocallocLarge.exe
+WorkingDir=JIT\CodeGenBringUpTests\LocallocLarge
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgcast_throw.exe_3749]
+RelativePath=JIT\Methodical\casts\SEH\_dbgcast_throw\_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgcast_throw
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesmul_ovf.exe_1819]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf\OpCodesMul_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstelem_i1.exe_1851]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1\OpCodesStelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b71999.exe_5388]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999\b71999.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chargethashcode.exe_427]
+RelativePath=CoreMangLib\cti\system\char\CharGetHashCode\CharGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\char\CharGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mthdimpl.exe_4757]
+RelativePath=JIT\opt\Inline\mthdimpl\mthdimpl.exe
+WorkingDir=JIT\opt\Inline\mthdimpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgisinst_ldarg.exe_3705]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg\_il_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct1.exe_3366]
+RelativePath=JIT\jit64\gc\misc\struct1\struct1.exe
+WorkingDir=JIT\jit64\gc\misc\struct1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b12022.exe_5690]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022\b12022.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcatchfinally_tail.exe_4302]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail\_il_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblcall2.exe_2623]
+RelativePath=JIT\CodeGenBringUpTests\DblCall2\DblCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetmaxbytecount.exe_2360]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount\UTF8EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structfldaddr.exe_2724]
+RelativePath=JIT\CodeGenBringUpTests\StructFldAddr\StructFldAddr.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructFldAddr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[volatilefromfinally.exe_3862]
+RelativePath=JIT\Methodical\eh\interactions\volatilefromfinally\volatilefromfinally.exe
+WorkingDir=JIT\Methodical\eh\interactions\volatilefromfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetpreamble.exe_2362]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble\UTF8EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullablevalue.exe_1571]
+RelativePath=CoreMangLib\cti\system\nullable\NullableValue\NullableValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cprop002.exe_3476]
+RelativePath=JIT\jit64\opt\cprop\cprop002\cprop002.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop002
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess2_cs_d.exe_3078]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_d\straccess2_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44879.exe_5127]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879\b44879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread09.exe_94]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread09
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_dbgexplicit7.exe_3973]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit7\_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[indexernameattributector.exe_2060]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor\IndexerNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbglivecall.exe_4670]
+RelativePath=JIT\Methodical\VT\identity\_il_dbglivecall\_il_dbglivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbglivecall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pulseallnull.exe_174]
+RelativePath=baseservices\threading\monitor\pulseall\PulseAllNull\PulseAllNull.exe
+WorkingDir=baseservices\threading\monitor\pulseall\PulseAllNull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sideeffects.exe_2966]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\SideEffects\SideEffects.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\SideEffects
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariswhitespace2.exe_466]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace2\CharIsWhiteSpace2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b38269.exe_5229]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269\b38269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40199.exe_5070]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199\b40199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[andref.exe_2604]
+RelativePath=JIT\CodeGenBringUpTests\AndRef\AndRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\AndRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesblt.exe_1678]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt\OpCodesBlt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b53884.exe_5268]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884\b53884.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[case1.exe_5769]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1\case1.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[long_cs_do.exe_4373]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_do\long_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint3218.exe_900]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3218\ConvertToUInt3218.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3218
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16equals2.exe_2457]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals2\UInt16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesallowexponent.exe_1182]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent\NumberStylesAllowExponent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_base_1.exe_2748]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_1\Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompareto1.exe_2189]
+RelativePath=CoreMangLib\cti\system\string\StringCompareTo1\StringCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91223.exe_5456]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223\b91223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16parse2.exe_2474]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse2\UInt16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint322.exe_902]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt322\ConvertToUInt322.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt322
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_addsub.exe_4086]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_addsub\_il_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b11021.exe_4830]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021\b11021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanticks.exe_2405]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicks\TimeSpanTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicks
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[atpapropertyname.exe_2056]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName\ATPAPropertyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mixed.exe_2910]
+RelativePath=JIT\Directed\ExcepFilters\mixed\mixed\mixed.exe
+WorkingDir=JIT\Directed\ExcepFilters\mixed\mixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[cgrecurseaaa_do.exe_3441]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do\CGRecurseAAA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayrank.exe_319]
+RelativePath=CoreMangLib\cti\system\array\ArrayRank\ArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayRank
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case9.exe_5781]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9\case9.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[negrmw.exe_2711]
+RelativePath=JIT\CodeGenBringUpTests\NegRMW\NegRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NegRMW
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbox.exe_1684]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox\OpCodesBox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_ro.exe_4339]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfotostring.exe_1147]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString\CultureInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread24.exe_139]
+RelativePath=baseservices\threading\generics\threadstart\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread24
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class04.exe_3129]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04\class04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefarg_s.exe_3932]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_s\_il_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_s
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fparea.exe_2645]
+RelativePath=JIT\CodeGenBringUpTests\FPArea\FPArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArea
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_peer_1.exe_2743]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1\Generic_Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b56149.exe_5288]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149\b56149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint3211.exe_894]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3211\ConvertToUInt3211.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3211
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charissymbol1.exe_462]
+RelativePath=CoreMangLib\cti\system\char\CharIsSymbol1\CharIsSymbol1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSymbol1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test1402.exe_5866]
+RelativePath=Regressions\coreclr\1402\Test1402\Test1402.exe
+WorkingDir=Regressions\coreclr\1402\Test1402
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalrem_cs_r.exe_3831]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_r\decimalrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45015.exe_5132]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015\b45015.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldsub_cs_r.exe_2878]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_r\lclfldsub_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b61640.exe_5331]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640\b61640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versiongethashcode.exe_2551]
+RelativePath=CoreMangLib\cti\system\version\VersionGetHashCode\VersionGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[paramarrayattributector.exe_1594]
+RelativePath=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor\ParamArrayAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b42732.exe_5100]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732\b42732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[zeroinitstackslot.exe_4031]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot\zeroInitStackSlot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringpadright.exe_2231]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight\StringPadRight.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[memberaccessexceptionctor1.exe_1532]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1\MemberAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[randomctor1.exe_1601]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor1\RandomCtor1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[call_instance01_ro.exe_3187]
+RelativePath=JIT\Generics\Constraints\Call_instance01_ro\Call_instance01_ro.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[virtcall.exe_4526]
+RelativePath=JIT\Methodical\refany\virtcall\virtcall.exe
+WorkingDir=JIT\Methodical\refany\virtcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chaos56200037cs_o.exe_3206]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs_o\chaos56200037cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletochar.exe_2512]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar\UInt64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[switch.exe_2729]
+RelativePath=JIT\CodeGenBringUpTests\Switch\Switch.exe
+WorkingDir=JIT\CodeGenBringUpTests\Switch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesfieldaccessmask.exe_1958]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask\FieldAttributesFieldAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relknight.exe_4652]
+RelativePath=JIT\Methodical\VT\etc\_relknight\_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_relknight
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletodecimal.exe_1054]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal\DoubleIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumtoobjectb.exe_1083]
+RelativePath=CoreMangLib\cti\system\enum\EnumToObjectb\EnumToObjectb.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToObjectb
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44724.exe_5125]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724\b44724.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedaddlongwithsubtract.exe_154]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract\InterlockedAddLongWithSubtract.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[stringconcat7.exe_2196]
+RelativePath=CoreMangLib\cti\system\string\StringConcat7\StringConcat7.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread16.exe_101]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[stringwriterencoding_psc.exe_1470]
+RelativePath=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC\StringWriterEncoding_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43033.exe_5104]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033\b43033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstind_ref.exe_1866]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref\OpCodesStind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributescompressed.exe_1403]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed\FileAttributesCompressed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[short_cs_d.exe_4380]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_d\short_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise1_cs_ro.exe_3777]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_ro\precise1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionaryitem.exe_596]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem\IDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b87284.exe_5441]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284\b87284.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublearr_cs_ro.exe_4331]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[runtimetypehandleequals.exe_2124]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals\RuntimeTypeHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25463.exe_4901]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463\b25463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct06.exe_3141]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06\struct06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b24728.exe_4898]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728\b24728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayicollectionget_count.exe_292]
+RelativePath=CoreMangLib\cti\system\array\ArrayICollectionget_Count\ArrayICollectionget_Count.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayICollectionget_Count
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesnestedfamandassem.exe_2033]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem\TypeAttributesNestedFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionarykeycollectionenumeratordispose.exe_571]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose\DictionaryKeyCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldsshrstsfld_il_r.exe_2883]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r\ldsshrstsfld_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesfamily.exe_1973]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily\MethodAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret1_1.exe_3412]
+RelativePath=JIT\jit64\gc\misc\structret1_1\structret1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16equals2.exe_1321]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals2\Int16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48872.exe_5167]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872\b48872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathpow.exe_1515]
+RelativePath=CoreMangLib\cti\system\math\MathPow\MathPow.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43714.exe_5112]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714\b43714.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_ro.exe_4415]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[missingmanifestresourceexceptionctor1.exe_2048]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1\MissingManifestResourceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_equalnull_struct01.exe_3230]
+RelativePath=JIT\Generics\Fields\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareexchangetstring.exe_164]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTString\CompareExchangeTString.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[ldc_mul_ovf_u8.exe_3337]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8\ldc_mul_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b471305.exe_5549]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305\b471305.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41391.exe_5090]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391\b41391.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;ISSUE_2989
+[interlockedincrement2.exe_2380]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2\InterlockedIncrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[equlitycomparerdefault.exe_587]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault\EqulityComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributesrtspecialname.exe_1968]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName\FieldAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_ldc_mulovf.exe_4089]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf\_il_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesliteral.exe_1962]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral\FieldAttributesLiteral.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrgethashcode.exe_1378]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrGetHashCode\IntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;ISSUE_3511
+[b71869.exe_5387]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869\b71869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldc_mulovf.exe_4147]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf\_il_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter008.exe_60]
+RelativePath=baseservices\exceptions\generics\TypeParameter008\TypeParameter008.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter008
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[addingsequence.exe_5740]
+RelativePath=JIT\SIMD\AddingSequence\AddingSequence.exe
+WorkingDir=JIT\SIMD\AddingSequence
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcompat_obj.exe_4546]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_obj\_il_dbgcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_obj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributesreadonly.exe_1412]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly\FileAttributesReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributeshassecurity.exe_2028]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity\TypeAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[div1.exe_2636]
+RelativePath=JIT\CodeGenBringUpTests\div1\div1.exe
+WorkingDir=JIT\CodeGenBringUpTests\div1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16499a.exe_4879]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a\b16499a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ilstackallocrepro.exe_4020]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro\ILStackAllocRepro.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[eventattributesspecialname.exe_1953]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName\EventAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgiu4.exe_4271]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu4\_il_dbgiu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeint64.exe_2443]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt64\TypeCodeInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ienumerablegetenumerator.exe_545]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimestylesallowtrailingwhite.exe_1166]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite\DateTimeStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidctor2_cti.exe_1261]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor2_cti\GuidCtor2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor2_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldrem_cs_r.exe_2874]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_r\lclfldrem_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte10.exe_823]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte10\ConvertToSByte10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test.exe_5761]
+RelativePath=Loader\binding\assemblies\assemblybugs\102140\test\test.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\102140\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01_instance.exe_3125]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbrtrue_s.exe_1690]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S\OpCodesBrtrue_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblynamegetpublickeytoken.exe_1628]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken\AssemblyNameGetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringarr_cs_d.exe_4428]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sp1b.exe_3091]
+RelativePath=JIT\Directed\StructPromote\SP1b\SP1b.exe
+WorkingDir=JIT\Directed\StructPromote\SP1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[plainarr_cs_d.exe_4404]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d\plainarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespancompareto2.exe_2391]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2\TimeSpanCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u4rem_cs_d.exe_3853]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_d\u4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret3_2.exe_3419]
+RelativePath=JIT\jit64\gc\misc\structret3_2\structret3_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[33objref_cs_d.exe_2843]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_d\33objref_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31182.exe_5180]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182\b31182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14277.exe_4799]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277\b14277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblytitleattributector.exe_1635]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor\AssemblyTitleAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring5.exe_867]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString5\ConvertToString5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ilistinsert.exe_605]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListInsert\IListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListInsert
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletoint32.exe_407]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32\ByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[idictionaryadd.exe_694]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd\IDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filestreamdispose_psc.exe_1434]
+RelativePath=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC\FileStreamDispose_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackcount.exe_677]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCount\StackCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[runtimecompatattrctor.exe_2066]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor\RuntimeCompatAttrCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi4u2.exe_4264]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u2\_il_dbgi4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockeddecrement2.exe_2374]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2\InterlockedDecrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstelem_r8.exe_1856]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8\OpCodesStelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32equals2.exe_1292]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals2\Int32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05933.exe_5012]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933\b05933.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initblk3_il_d.exe_4691]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_d\initblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sums.exe_5758]
+RelativePath=JIT\SIMD\Sums\Sums.exe
+WorkingDir=JIT\SIMD\Sums
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartuint_1.exe_232]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt_1\ThreadStartUInt_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[uint16parse1.exe_2473]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse1\UInt16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b52746.exe_5261]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746\b52746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringjoin.exe_2224]
+RelativePath=CoreMangLib\cti\system\string\StringJoin\StringJoin.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_815940_do.exe_5616]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do\DevDiv_815940_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102870.exe_5628]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870\b102870.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleangethashcode.exe_377]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanGetHashCode\BooleanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i2_un.exe_1712]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un\OpCodesConv_Ovf_I2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcompat_v.exe_4547]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_v\_il_dbgcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_v
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletouint32.exe_2177]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt32\SingleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend5.exe_2307]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5\StringBuilderAppend5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimestylesroundtripkind.exe_1172]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind\DateTimeStylesRoundTripKind.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b33362.exe_5202]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362\b33362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodevalue.exe_1890]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue\OpCodeValue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_7.exe_1764]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7\OpCodesLdc_I4_7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodeuint32.exe_2449]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt32\TypeCodeUInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartlong_2.exe_210]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong_2\ThreadStartLong_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[arithm64_d.exe_4448]
+RelativePath=JIT\Methodical\NaN\arithm64_d\arithm64_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structlayoutattributepack.exe_2116]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack\StructLayoutAttributePack.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b29351.exe_5038]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351\b29351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1.exe_3569]
+RelativePath=JIT\jit64\regress\vsw\539509\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\539509\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3104
+[_il_reli_vfld.exe_3903]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld\_il_reli_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b06924.exe_5021]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924\b06924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgtest_2b.exe_4560]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2b\_il_dbgtest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[default_class01.exe_3297]
+RelativePath=JIT\Generics\TypeParameters\default_class01\default_class01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fgtest1.exe_3359]
+RelativePath=JIT\jit64\gc\misc\fgtest1\fgtest1.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b63823.exe_5342]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823\b63823.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblvar.exe_2635]
+RelativePath=JIT\CodeGenBringUpTests\DblVar\DblVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblVar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uintptrctor_uint64.exe_2534]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64\UIntPtrCtor_UInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathround2.exe_1517]
+RelativePath=CoreMangLib\cti\system\math\MathRound2\MathRound2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
+[_relthrow.exe_3762]
+RelativePath=JIT\Methodical\casts\SEH\_relthrow\_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relthrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayreverse1.exe_322]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse1\ArrayReverse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsmodule.exe_361]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule\AttributeTargetsModule.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b65176.exe_5346]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176\b65176.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[equalitycomparergethashcode.exe_586]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode\EqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_cs_ro.exe_4371]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_ro\int_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64tostring2.exe_2531]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64ToString2\UInt64ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b08944a.exe_5030]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a\b08944a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgjumper1.exe_4607]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper1\_il_dbgjumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbghanoi.exe_4644]
+RelativePath=JIT\Methodical\VT\etc\_dbghanoi\_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghanoi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoboolean7.exe_722]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean7\ConvertToBoolean7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt1_cs_ro.exe_3164]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_ro\vt1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobyte3.exe_727]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte3\ConvertToByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble.exe_762]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble\ConvertToDouble.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratordispose.exe_574]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesautolayout.exe_2023]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout\TypeAttributesAutoLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysetvalue2.exe_326]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2\ArraySetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;ISSUE_3104
+[obsoleteattributemessage.exe_1587]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage\ObsoleteAttributeMessage.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_d.exe_4396]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint8_cs_ro.exe_3069]
+RelativePath=JIT\Directed\shift\uint8_cs_ro\uint8_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1307.exe_5823]
+RelativePath=Regressions\common\test1307\test1307.exe
+WorkingDir=Regressions\common\test1307
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param1b_il_d.exe_4189]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_d\25param1b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesmul.exe_1818]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul\OpCodesMul.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleiconvertibletosingle.exe_1060]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle\DoubleIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributeshasfieldrva.exe_1960]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA\FieldAttributesHasFieldRVA.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b100336.exe_5626]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336\b100336.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01_static.exe_3148]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimector7.exe_935]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor7\DateTimeCtor7.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteparse3.exe_418]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse3\ByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-struct06.exe_34]
+RelativePath=baseservices\exceptions\generics\try-catch-struct06\try-catch-struct06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27811.exe_4930]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811\b27811.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryfinalquotepunctuation.exe_1234]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation\UnicodeCategoryFinalQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[hugefield1.exe_3488]
+RelativePath=JIT\jit64\opt\cse\HugeField1\HugeField1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionarygetenumerator.exe_500]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator\DictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43010.exe_5103]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010\b43010.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsassembly.exe_351]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly\AttributeTargetsAssembly.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryopenpunctuation.exe_1244]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation\UnicodeCategoryOpenPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reldeep_inst.exe_4576]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_inst\_il_reldeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_inst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[params-mixed.exe_5476]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed\params-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint1613.exe_877]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1613\ConvertToUInt1613.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1613
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b12008.exe_4779]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008\b12008.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcastclass_calli.exe_3709]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_calli\_il_relcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b82249.exe_5428]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249\b82249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14325.exe_4853]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325\b14325.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldflda.exe_1785]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda\OpCodesLdflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16_cs_r.exe_3048]
+RelativePath=JIT\Directed\shift\uint16_cs_r\uint16_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesble_un.exe_1676]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un\OpCodesBle_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06754.exe_5019]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754\b06754.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise4_cs_do.exe_3783]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_do\precise4_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringiconvertibletosbyte.exe_2216]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToSByte\StringIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b610750_32vs64.exe_5570]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64\b610750_32vs64.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathchangeextension.exe_1445]
+RelativePath=CoreMangLib\cti\system\io\path\PathChangeExtension\PathChangeExtension.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathChangeExtension
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b15468.exe_4811]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468\b15468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[148343.exe_3355]
+RelativePath=JIT\jit64\gc\misc\148343\148343.exe
+WorkingDir=JIT\jit64\gc\misc\148343
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayreverse2.exe_323]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse2\ArrayReverse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletodecimal.exe_2514]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal\UInt64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[hole.exe_3795]
+RelativePath=JIT\Methodical\Coverage\hole\hole.exe
+WorkingDir=JIT\Methodical\Coverage\hole
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend19.exe_2303]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19\StringBuilderAppend19.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bytetostring3.exe_421]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString3\ByteToString3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgqperm.exe_3878]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm\_il_dbgqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_876169_d.exe_5603]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d\DevDiv_876169_d.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackenumeratorcurrent.exe_686]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent\StackEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleispositiveinfinity.exe_1064]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity\DoubleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise2_cs_r.exe_3780]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_r\precise2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgtest2.exe_4209]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest2\_il_dbgtest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class04.exe_3244]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class04\class04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalrem_cs_d.exe_3829]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_d\decimalrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodinggetencoder.exe_2341]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder\UnicodeEncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread24.exe_109]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread24
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttodecimal18.exe_756]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal18\ConvertToDecimal18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lvrefcnt0.exe_4774]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt0\LVRefCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesclt_un.exe_1701]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un\OpCodesClt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interfaceproperty.exe_4755]
+RelativePath=JIT\opt\Inline\interfaceProperty\interfaceProperty.exe
+WorkingDir=JIT\opt\Inline\interfaceProperty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inline_multiplereturn.exe_4745]
+RelativePath=JIT\opt\Inline\Inline_MultipleReturn\Inline_MultipleReturn.exe
+WorkingDir=JIT\opt\Inline\Inline_MultipleReturn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40006.exe_5230]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006\b40006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[specific_class_static02.exe_3216]
+RelativePath=JIT\Generics\Exceptions\specific_class_static02\specific_class_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[chartoupper1.exe_472]
+RelativePath=CoreMangLib\cti\system\char\CharToUpper1\CharToUpper1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToUpper1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reljumper2.exe_4619]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper2\_il_reljumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_assignment_class01.exe_3227]
+RelativePath=JIT\Generics\Fields\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimesubtract2.exe_955]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract2\DateTimeSubtract2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32gethashcode.exe_1293]
+RelativePath=CoreMangLib\cti\system\int\Int32GetHashCode\Int32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b73079.exe_5397]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079\b73079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_reldeep.exe_4230]
+RelativePath=JIT\Methodical\Invoke\deep\_reldeep\_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_reldeep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetbytecount2.exe_2352]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2\UTF8EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbghan3_ref.exe_4657]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ref\_speed_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16423.exe_4877]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423\b16423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;ISSUE_2925;ISSUE_2989
+[doublearr_cs_r.exe_4418]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldvirtftncalli_il_r.exe_2885]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r\ldvirtftncalli_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldind_stind.exe_3003]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\ldind_stind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-finally03.exe_28]
+RelativePath=baseservices\exceptions\generics\try-catch-finally03\try-catch-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltouint32.exe_1021]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt32\DecimalToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b46897.exe_5151]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897\b46897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleiconvertibletodatetime.exe_1053]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime\DoubleIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraycopyto.exe_279]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopyTo\ArrayCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-struct01.exe_29]
+RelativePath=baseservices\exceptions\generics\try-catch-struct01\try-catch-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b36302.exe_5219]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302\b36302.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrotarg_valref.exe_4014]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_valref\_il_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_valref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40269.exe_5073]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269\b40269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b106158.exe_5631]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158\b106158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalcompare.exe_978]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCompare\DecimalCompare.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCompare
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102759.exe_5627]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759\b102759.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalgetbits.exe_991]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalGetBits\DecimalGetBits.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalGetBits
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstloc_s.exe_1872]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S\OpCodesStloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev10_535767.exe_0]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767\Dev10_535767.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;UNWIND
+[b18857.exe_5176]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857\b18857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31343.exe_4966]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343\b31343.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relexplicit7.exe_3999]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit7\_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45984.exe_5140]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984\b45984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cse2_cs_ro.exe_2857]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_ro\cse2_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartint_1.exe_206]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt_1\ThreadStartInt_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[listilistremove.exe_645]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListRemove\ListIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldind_u4.exe_1797]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4\OpCodesLdind_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalparse2.exe_999]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse2\DecimalParse2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldelem.exe_1771]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem\OpCodesLdelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringjoin2.exe_2226]
+RelativePath=CoreMangLib\cti\system\string\StringJoin2\StringJoin2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderreplace1.exe_2327]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1\StringBuilderReplace1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[csgen.1.exe_2594]
+RelativePath=hosting\stress\testset1\csgen.1\csgen.1.exe
+WorkingDir=hosting\stress\testset1\csgen.1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgldsfld_mulovf.exe_4143]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf\_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringiconvertibletoint64.exe_2215]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt64\StringIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[propertyattributeshasdefault.exe_2011]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault\PropertyAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dup.exe_5749]
+RelativePath=JIT\SIMD\Dup\Dup.exe
+WorkingDir=JIT\SIMD\Dup
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_or_op_cs_ro.exe_2799]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_ro\Float_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstatic06.exe_5877]
+RelativePath=Threading\ThreadStatics\ThreadStatic06\ThreadStatic06.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[testapis.exe_2]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestAPIs\TestAPIs.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestAPIs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chaos65204782cs.exe_3207]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs\chaos65204782cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingconvert2.exe_2264]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert2\EncodingConvert2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalasattributemarshaltyperef.exe_2097]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef\MarshalAsAttributeMarshalTypeRef.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt4_cs_r.exe_3181]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_r\vt4_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decoderreset.exe_2259]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderReset\DecoderReset.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuecopyto.exe_661]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo\QueueCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsreturnvalue.exe_364]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue\AttributeTargetsReturnValue.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldadd_cs_r.exe_2862]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_r\lclfldadd_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relcastclass_ldloc.exe_3719]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldloc\_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relldfld_mulovf.exe_4165]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mulovf\_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributesarchive.exe_1402]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive\FileAttributesArchive.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[complex2.exe_2735]
+RelativePath=JIT\Directed\Arrays\Complex2\Complex2.exe
+WorkingDir=JIT\Directed\Arrays\Complex2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param2a_cs_do.exe_4194]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_do\25param2a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987;ISSUE_2988
+[_il_relconv_i8_i.exe_3892]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i\_il_relconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b75509.exe_5408]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509\b75509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b07900.exe_5512]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900\b07900.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exceptions.exe_5766]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\exceptions\exceptions.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\exceptions
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimafloor.exe_976]
+RelativePath=CoreMangLib\cti\system\decimal\DecimaFloor\DecimaFloor.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimaFloor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_2.exe_813]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_2\ConvertToInt64_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b539509.exe_5737]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509\b539509.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3104;NEED_TRIAGE
+[_il_dbgptr.exe_3877]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr\_il_dbgptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesshr.exe_1844]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr\OpCodesShr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletoboolean.exe_428]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToBoolean\CharIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ovflrem2_il_r.exe_2889]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_r\ovflrem2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_r_un.exe_1730]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un\OpCodesConv_R_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrtostring.exe_2540]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToString\UIntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv2_11321.exe_5599]
+RelativePath=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321\DevDiv2_11321.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b223936.exe_5502]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936\b223936.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_xor_op_cs_do.exe_2817]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_do\Int_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26888.exe_4923]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888\b26888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91953.exe_5682]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953\b91953.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalctor3.exe_981]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor3\DecimalCtor3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[thread08-simplified.exe_5831]
+RelativePath=Regressions\coreclr\0028\thread08-simplified\thread08-simplified.exe
+WorkingDir=Regressions\coreclr\0028\thread08-simplified
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanctor1.exe_2392]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor1\TimeSpanCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegateremove.exe_1031]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateRemove\DelegateRemove.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relldsfld_mulovf.exe_4167]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mulovf\_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoboolean.exe_717]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean\ConvertToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_passing_struct01.exe_3265]
+RelativePath=JIT\Generics\Locals\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblynameflagsretargetable.exe_1634]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable\AssemblyNameFlagsRetargetable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal.exe_746]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal\ConvertToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test0939.exe_5859]
+RelativePath=Regressions\coreclr\0939\test0939\test0939.exe
+WorkingDir=Regressions\coreclr\0939\test0939
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesmemberaccessmask.exe_1978]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask\MethodAttributesMemberAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblykeynameattributector.exe_1625]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor\AssemblyKeyNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[refanytype1.exe_2836]
+RelativePath=JIT\Directed\coverage\importer\refanytype1\refanytype1.exe
+WorkingDir=JIT\Directed\coverage\importer\refanytype1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listicollectionissynchronized.exe_634]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized\ListICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dblcall1.exe_2622]
+RelativePath=JIT\CodeGenBringUpTests\DblCall1\DblCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisdigit2.exe_446]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit2\CharIsDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[generic_test_csharp_base_1.exe_2738]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1\Generic_Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryicollectionisreadonly.exe_505]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly\DictionaryICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble7.exe_773]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble7\ConvertToDouble7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltodatetime.exe_1008]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDateTime\DecimalToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_assignment_struct01.exe_3261]
+RelativePath=JIT\Generics\Locals\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbggcarr.exe_3626]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbggcarr\_speed_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbggcarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort1b.exe_334]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1b\ArraySort1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b356258.exe_5732]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258\b356258.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_ref.exe_3914]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref\_il_relu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b63725.exe_5338]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725\b63725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[checkaddlong_2.exe_149]
+RelativePath=baseservices\threading\interlocked\add\CheckAddLong_2\CheckAddLong_2.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddLong_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[guidnewguid.exe_1271]
+RelativePath=CoreMangLib\cti\system\guid\GuidNewGuid\GuidNewGuid.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidNewGuid
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test584.exe_5854]
+RelativePath=Regressions\coreclr\0584\Test584\Test584.exe
+WorkingDir=Regressions\coreclr\0584\Test584
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b82866.exe_5430]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866\b82866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal12.exe_750]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal12\ConvertToDecimal12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanequals2.exe_2398]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals2\TimeSpanEquals2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderchars.exe_2314]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars\StringBuilderChars.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_and_op_cs_r.exe_2774]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_r\Double_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefloc_i1.exe_3934]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1\_il_dbgrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04726.exe_4998]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726\b04726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cpblk3_il_r.exe_4690]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_r\cpblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingutf8.exe_2290]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUTF8\EncodingUTF8.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUTF8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rethrow1.exe_2917]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow1\Rethrow1.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try1_r.exe_2953]
+RelativePath=JIT\Directed\leave\try1_r\try1_r.exe
+WorkingDir=JIT\Directed\leave\try1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[baseclass02.exe_3234]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass02\baseclass02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10894.exe_4825]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894\b10894.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryisfixedsize2.exe_516]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2\DictionaryIDictionaryIsFixedSize2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgrecurseacc_do.exe_3453]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do\CGRecurseACC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_assignment_class01.exe_3274]
+RelativePath=JIT\Generics\Parameters\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relisinst_ldloc.exe_3715]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldloc\_il_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gcoverreporting.exe_4028]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting\GCOverReporting.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59953.exe_5321]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953\b59953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_17.exe_781]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_17\ConvertToInt16_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcgettotalmemory.exe_1104]
+RelativePath=CoreMangLib\cti\system\gc\GCGetTotalMemory\GCGetTotalMemory.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCGetTotalMemory
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartuint_3.exe_234]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt_3\ThreadStartUInt_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[binarysearch3.exe_616]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch3\BinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletoint16.exe_1300]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt16\Int32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b61215.exe_5329]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215\b61215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributesencrypted.exe_1406]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted\FileAttributesEncrypted.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrotarg_float.exe_4012]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_float\_il_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_float
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45458.exe_5136]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458\b45458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4nansub_cs_do.exe_4477]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_do\r4NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i8_cs_r.exe_3645]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_r\i8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesnestedassembly.exe_2032]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly\TypeAttributesNestedAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgldc_mulovf.exe_4171]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf\_speed_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgexplicit3.exe_3969]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit3\_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributessystem.exe_1414]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem\FileAttributesSystem.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgrecurseaca_r.exe_3450]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r\CGRecurseACA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b68028.exe_5357]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028\b68028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71003.exe_5377]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003\b71003.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b73786.exe_5400]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786\b73786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_ret_r4.exe_3343]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4\ldc_ret_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relthisnull.exe_4310]
+RelativePath=JIT\Methodical\Invoke\thiscall\_relthisnull\_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_relthisnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_add_ovf_i1.exe_3301]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1\ldc_add_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcatchfault.exe_4289]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault\_il_dbgcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread25.exe_110]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread25
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[stackctor3.exe_680]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor3\StackCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nanmul_cs_r.exe_4490]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_r\r8NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rels_ldc_mulovf.exe_4125]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf\_speed_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listilistcontains.exe_639]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListContains\ListIListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinfoclone.exe_1149]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone\DateTimeFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_or_op_cs_ro.exe_2783]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_ro\Double_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[426480.exe_2590]
+RelativePath=GC\Regressions\v2.0-beta2\426480\426480\426480.exe
+WorkingDir=GC\Regressions\v2.0-beta2\426480\426480
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relmuldiv.exe_4160]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relmuldiv\_il_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpneg.exe_2664]
+RelativePath=JIT\CodeGenBringUpTests\FPNeg\FPNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPNeg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rels_ldfld_mulovf.exe_4127]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf\_speed_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cpblk.exe_2986]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\cpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread19.exe_104]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread19
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[opcodesbgt_un.exe_1672]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un\OpCodesBgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u8rem_cs_do.exe_3858]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_do\u8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletoint32.exe_435]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt32\CharIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4flat_cs_d.exe_3631]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_d\i4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b15786.exe_4814]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786\b15786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i8div_cs_r.exe_3806]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_r\i8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b22680.exe_5715]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680\b22680.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryicollectioncopyto2.exe_504]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2\DictionaryICollectionCopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbghan3_ctor.exe_4656]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ctor\_speed_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32tostring.exe_1315]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString\Int32ToString.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter006.exe_58]
+RelativePath=baseservices\exceptions\generics\TypeParameter006\TypeParameter006.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter006
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_u.exe_1731]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U\OpCodesConv_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[parameterattributesoptional.exe_2008]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional\ParameterAttributesOptional.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singleminvalue.exe_2161]
+RelativePath=CoreMangLib\cti\system\single\SingleMinValue\SingleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charisnumber1.exe_453]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber1\CharIsNumber1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13569.exe_4840]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569\b13569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[layoutkindauto.exe_2086]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto\LayoutKindAuto.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reljumper5.exe_4622]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper5\_il_reljumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_assignment_struct01.exe_3222]
+RelativePath=JIT\Generics\Fields\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycopy1.exe_277]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy1\ArrayCopy1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefloc_c.exe_3950]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_c\_il_relrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relbinop.exe_4071]
+RelativePath=JIT\Methodical\int64\misc\_relbinop\_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convertfrombase64chararray.exe_712]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray\ConvertFromBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[finallyclone.exe_4019]
+RelativePath=JIT\Methodical\flowgraph\bug619534\finallyclone\finallyclone.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\finallyclone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14350.exe_4856]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350\b14350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint647.exe_926]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt647\ConvertToUInt647.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt647
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[array_tests.exe_2984]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\array_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[calendarweekrulefirstfourdayweek.exe_1111]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek\CalendarWeekRuleFirstFourDayWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletodouble.exe_2463]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble\UInt16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b33125.exe_5197]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125\b33125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltochar.exe_1007]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToChar\DecimalToChar.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt3_cs_do.exe_3174]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_do\vt3_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgs_ldfld_mul.exe_4117]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul\_speed_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b302558.exe_5726]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558\b302558.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relhan2.exe_4647]
+RelativePath=JIT\Methodical\VT\etc\_relhan2\_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b223862.exe_5680]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862\b223862.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[binarysearch2.exe_615]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch2\BinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relisinst_ldarg.exe_3714]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldarg\_il_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relisinst_ldloc.exe_3739]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc\_speed_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_base_6.exe_2742]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6\Generic_Test_CSharp_Base_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlock.exe_5820]
+RelativePath=Regressions\common\interlock\interlock.exe
+WorkingDir=Regressions\common\interlock
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar14.exe_737]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar14\ConvertToChar14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jmp_ret.exe_3471]
+RelativePath=JIT\jit64\opt\cg\il\jmp_ret\jmp_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_ret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread11.exe_126]
+RelativePath=baseservices\threading\generics\threadstart\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[opcodesxor.exe_1888]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor\OpCodesXor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathsign1.exe_1520]
+RelativePath=CoreMangLib\cti\system\math\MathSign1\MathSign1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8flat_cs_d.exe_3655]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_d\r8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletoint32.exe_385]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32\BooleanIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relobj.exe_4286]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_relobj\_speed_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_relobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rotarg_valref.exe_4004]
+RelativePath=JIT\Methodical\explicit\rotate\rotarg_valref\rotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\rotarg_valref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodescgt_un.exe_1698]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un\OpCodesCgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathtoolongexceptionctor2.exe_1459]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2\PathTooLongExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91230.exe_5457]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230\b91230.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b12274.exe_4834]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274\b12274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgdd.exe_4605]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgdd\_il_dbgdd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40411.exe_5076]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411\b40411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalrem_cs_do.exe_3830]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_do\decimalrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[spaddrat.exe_3099]
+RelativePath=JIT\Directed\StructPromote\SpAddrAT\SpAddrAT.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddrAT
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stfldstatic1_il_d.exe_2890]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class_instance01.exe_3266]
+RelativePath=JIT\Generics\MemberAccess\class_instance01\class_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[floatinfinitiestoint_d.exe_4512]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_d\FloatInfinitiesToInt_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberformatinfoctor.exe_1174]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor\NumberFormatInfoCtor.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64minvalue.exe_2526]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MinValue\UInt64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b119026a.exe_5642]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a\b119026a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcsmixed.exe_3604]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed\_speed_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b473131_intptr.exe_5596]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr\b473131_intptr.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgarray3.exe_4529]
+RelativePath=JIT\Methodical\refany\_il_dbgarray3\_il_dbgarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b58866.exe_5303]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866\b58866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint1617.exe_881]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1617\ConvertToUInt1617.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1617
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmin8.exe_1512]
+RelativePath=CoreMangLib\cti\system\math\MathMin8\MathMin8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[576463.exe_244]
+RelativePath=baseservices\threading\regressions\576463\576463\576463.exe
+WorkingDir=baseservices\threading\regressions\576463\576463
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct01.exe_3134]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01\Struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeinlinevar.exe_1908]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar\OperandTypeInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbglcs_gcref.exe_4682]
+RelativePath=JIT\Methodical\VT\port\_dbglcs_gcref\_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs_gcref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[_speed_dbglcs_ulong.exe_4062]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong\_speed_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[_dbgbox.exe_4066]
+RelativePath=JIT\Methodical\int64\misc\_dbgbox\_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reltest_virt.exe_4590]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_virt\_il_reltest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_virt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u8div_cs_do.exe_3826]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_do\u8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b48864.exe_5166]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864\b48864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timeoutinfinite.exe_2382]
+RelativePath=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite\TimeOutInfinite.exe
+WorkingDir=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesleave.exe_1814]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave\OpCodesLeave.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b473131_fld.exe_5595]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_fld\b473131_fld.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_fld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versionbuild.exe_2546]
+RelativePath=CoreMangLib\cti\system\version\VersionBuild\VersionBuild.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionBuild
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[conv_opt.exe_3528]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetdecoder.exe_2282]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder\EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret6_2.exe_3428]
+RelativePath=JIT\jit64\gc\misc\structret6_2\structret6_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimector4.exe_933]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor4\DateTimeCtor4.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rels_addsub.exe_4104]
+RelativePath=JIT\Methodical\int64\signed\_rels_addsub\_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rngchkstress3.exe_3541]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress3\RngchkStress3.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102962c.exe_5524]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c\b102962c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionarygetenumerator.exe_697]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator\IDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_popi_popr8.exe_1939]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8\StackBehaviourPopref_popi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16_6.exe_787]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_6\ConvertToInt16_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[plainarr_cs_r.exe_4406]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r\plainarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32tostring3.exe_1317]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString3\Int32ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[general_class_instance01.exe_3209]
+RelativePath=JIT\Generics\Exceptions\general_class_instance01\general_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31746.exe_5189]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746\b31746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[guidcompareto1_cti.exe_1257]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo1_cti\GuidCompareTo1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo1_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28158_64.exe_5722]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64\b28158_64.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_i.exe_1703]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I\OpCodesConv_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesbrfalse.exe_1687]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse\OpCodesBrfalse.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textelementenumeratorreset.exe_1220]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset\TextElementEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[simple2.exe_2737]
+RelativePath=JIT\Directed\Arrays\Simple2\Simple2.exe
+WorkingDir=JIT\Directed\Arrays\Simple2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesnone.exe_1171]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone\DateTimeStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleisnan.exe_1062]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNaN\DoubleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNaN
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev10_629953.exe_5811]
+RelativePath=reflection\regression\dev10bugs\Dev10_629953\Dev10_629953.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_629953
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrtouint64.exe_2542]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64\UIntPtrToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b63726.exe_5339]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726\b63726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param2a_cs_ro.exe_4196]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_ro\25param2a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987;ISSUE_2988
+[weakreferenceisaliveb_psc.exe_2559]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC\WeakReferenceIsAliveb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[runtimemethodhanldegethashcode.exe_2123]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode\RuntimeMethodHanldeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletodouble.exe_2489]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble\UInt32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgarray2.exe_4528]
+RelativePath=JIT\Methodical\refany\_il_dbgarray2\_il_dbgarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[consttostring.exe_5573]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString\ConstToString.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u2.exe_1721]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2\OpCodesConv_Ovf_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributesnotserialized.exe_1963]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized\FieldAttributesNotSerialized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter012.exe_64]
+RelativePath=baseservices\exceptions\generics\TypeParameter012\TypeParameter012.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter012
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[expl_funcptr_val_r.exe_3962]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r\expl_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcsmixed.exe_3596]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmixed\_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64parse1.exe_1367]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse1\Int64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraylastindexof1.exe_311]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1\ArrayLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textwriternull_psc.exe_1472]
+RelativePath=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC\TextWriterNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b33928.exe_5045]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928\b33928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b139895.exe_5485]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895\b139895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[endofstreamexceptionctor1_psc.exe_1396]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC\endofstreamexceptionctor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relaccum.exe_4675]
+RelativePath=JIT\Methodical\VT\identity\_relaccum\_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_relaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[checkaddint_2.exe_147]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_2\CheckAddInt_2.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_dbgldobj_v.exe_4698]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V\_il_dbgldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaca_d.exe_3448]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d\CGRecurseACA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[directorynotfoundexceptionctor1.exe_1394]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1\DirectoryNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgknight.exe_4659]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgknight\_speed_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgknight
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[formatexceptionctor3.exe_1102]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3\FormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ddb148379.exe_3286]
+RelativePath=JIT\Generics\regression\DDB148379\ddb148379\ddb148379.exe
+WorkingDir=JIT\Generics\regression\DDB148379\ddb148379
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3562]
+RelativePath=JIT\jit64\regress\vsw\471729\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\471729\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3563]
+RelativePath=JIT\jit64\regress\vsw\517867\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\517867\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16maxvalue.exe_1338]
+RelativePath=CoreMangLib\cti\system\int16\Int16MaxValue\Int16MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmin5.exe_1509]
+RelativePath=CoreMangLib\cti\system\math\MathMin5\MathMin5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b178128.exe_5494]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128\b178128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[int64_d.exe_3036]
+RelativePath=JIT\Directed\shift\int64_d\int64_d.exe
+WorkingDir=JIT\Directed\shift\int64_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderctor6.exe_2320]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6\StringBuilderctor6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[objectctor.exe_1573]
+RelativePath=CoreMangLib\cti\system\object\ObjectCtor\ObjectCtor.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relgcval.exe_4579]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval\_il_relgcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[textinfoequals.exe_1222]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals\TextInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct1_5.exe_3369]
+RelativePath=JIT\jit64\gc\misc\struct1_5\struct1_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldnull.exe_1807]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull\OpCodesLdnull.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter017.exe_69]
+RelativePath=baseservices\exceptions\generics\TypeParameter017\TypeParameter017.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter017
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31321.exe_4965]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321\b31321.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_do.exe_4397]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[leftshift.exe_2700]
+RelativePath=JIT\CodeGenBringUpTests\LeftShift\LeftShift.exe
+WorkingDir=JIT\CodeGenBringUpTests\LeftShift
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b19171.exe_5529]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171\b19171.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobyte8.exe_731]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte8\ConvertToByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_rels_muldiv.exe_4103]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_muldiv\_il_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldc_mul.exe_4146]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mul\_il_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistadd.exe_293]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListAdd\ArrayIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44985.exe_5131]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985\b44985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesunaligned.exe_1884]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned\OpCodesUnaligned.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listilistadd.exe_638]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListAdd\ListIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b09287.exe_5033]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287\b09287.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16minvalue.exe_1339]
+RelativePath=CoreMangLib\cti\system\int16\Int16MinValue\Int16MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[302560.exe_2589]
+RelativePath=GC\Regressions\v2.0-beta1\289745\302560\302560.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\302560
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104
+[b158861.exe_5575]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861\b158861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[471729.exe_2591]
+RelativePath=GC\Regressions\v2.0-beta2\471729\471729\471729.exe
+WorkingDir=GC\Regressions\v2.0-beta2\471729\471729
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ilistindexof.exe_604]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf\IListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionarykeycollectionenumeratormovenext.exe_572]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext\DictionaryKeyCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess1_cs_ro.exe_3077]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_ro\straccess1_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletouint32.exe_1307]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32\Int32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sqrtgeneric.exe_5756]
+RelativePath=JIT\SIMD\SqrtGeneric\SqrtGeneric.exe
+WorkingDir=JIT\SIMD\SqrtGeneric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistclear.exe_294]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListClear\ArrayIListClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[memberaccessexceptionctor3.exe_1534]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3\MemberAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmin9.exe_1513]
+RelativePath=CoreMangLib\cti\system\math\MathMin9\MathMin9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodinggetstring.exe_2346]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString\UnicodeEncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case6.exe_5778]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6\case6.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jaggedarr_cs_d.exe_4332]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[comp32_il_r.exe_4453]
+RelativePath=JIT\Methodical\NaN\comp32_il_r\comp32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[b57492.exe_5294]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492\b57492.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64parse3.exe_1369]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse3\Int64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[339415.exe_3437]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\339415\339415.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\339415
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versionequals1.exe_2549]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals1\VersionEquals1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpdiv.exe_2657]
+RelativePath=JIT\CodeGenBringUpTests\FPDiv\FPDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimploptionsnoinlining.exe_2063]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining\MethodImplOptionsNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b30128.exe_4954]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128\b30128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringconcat4.exe_2193]
+RelativePath=CoreMangLib\cti\system\string\StringConcat4\StringConcat4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;LONG_RUNNING;REL_PASS
+[inattributector.exe_2085]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor\InAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrzero.exe_1383]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrZero\IntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrZero
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanequals1.exe_2397]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals1\TimeSpanEquals1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesbeq.exe_1664]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq\OpCodesBeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[securityexceptionctor3.exe_2152]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3\SecurityExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b89600.exe_5450]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600\b89600.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfoequals.exe_1137]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals\CultureInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[notandneg.exe_2713]
+RelativePath=JIT\CodeGenBringUpTests\NotAndNeg\NotAndNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotAndNeg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b11490.exe_4832]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490\b11490.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_no_op_cs_do.exe_2793]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_do\Float_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimal_cs_do.exe_4357]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_do\decimal_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletoboolean.exe_2510]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean\UInt64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31784.exe_5192]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784\b31784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariscontrol2.exe_444]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl2\CharIsControl2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgu_qsort2.exe_3886]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2\_il_dbgu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overreplocalopt.exe_4778]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt\overRepLocalOpt.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesceq.exe_1696]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq\OpCodesCeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathround4.exe_1519]
+RelativePath=CoreMangLib\cti\system\math\MathRound4\MathRound4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE;DBG_PASS
+[opcodesstelem_i2.exe_1852]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2\OpCodesStelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nested-try-catch05.exe_17]
+RelativePath=baseservices\exceptions\generics\nested-try-catch05\nested-try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ctors.exe_5747]
+RelativePath=JIT\SIMD\Ctors\Ctors.exe
+WorkingDir=JIT\SIMD\Ctors
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31547.exe_5187]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547\b31547.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b51420.exe_5252]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420\b51420.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;REL_PASS;ISSUE_2990
+[b29343.exe_5723]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343\b29343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbghan3.exe_4641]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3\_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayclone.exe_276]
+RelativePath=CoreMangLib\cti\system\array\ArrayClone\ArrayClone.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4rem_cs_do.exe_3834]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_do\i4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraylastindexof2b.exe_314]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2b\ArrayLastIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50145c.exe_5250]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c\b50145c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16922.exe_4889]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922\b16922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generics.exe_4502]
+RelativePath=JIT\Methodical\nonvirtualcall\generics\generics.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegettype1.exe_2423]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType1\TypeGetType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint325.exe_905]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt325\ConvertToUInt325.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt325
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[dbladd.exe_2616]
+RelativePath=JIT\CodeGenBringUpTests\DblAdd\DblAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relcall.exe_4633]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relcall\_speed_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01.exe_3251]
+RelativePath=JIT\Generics\Instantiation\Structs\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteparse1.exe_2143]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse1\SByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint8_d.exe_3070]
+RelativePath=JIT\Directed\shift\uint8_d\uint8_d.exe
+WorkingDir=JIT\Directed\shift\uint8_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletodouble.exe_1355]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble\Int64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring11.exe_842]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString11\ConvertToString11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathabs5.exe_1477]
+RelativePath=CoreMangLib\cti\system\math\MathAbs5\MathAbs5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[iconvertibletoint32.exe_1283]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32\IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relcastclass_ldarg.exe_3734]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg\_speed_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16499b.exe_4880]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b\b16499b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartbool_2.exe_180]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_2\ThreadStartBool_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[dictionaryidictionaryvalues.exe_529]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues\DictionaryIDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_do.exe_4433]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59478.exe_5309]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478\b59478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16_cs_ro.exe_3049]
+RelativePath=JIT\Directed\shift\uint16_cs_ro\uint16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_f4.exe_3918]
+RelativePath=JIT\Methodical\explicit\basic\refarg_f4\refarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_f4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeparseexact2.exe_950]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact2\DateTimeParseExact2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE
+[lclflddiv_cs_ro.exe_2867]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro\lclflddiv_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[opcodesldarga.exe_1749]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga\OpCodesLdarga.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanticksperday.exe_2406]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay\TimeSpanTicksPerDay.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b07211.exe_5509]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211\b07211.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reldeep_array.exe_4573]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array\_il_reldeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typehaselementtypeimpl.exe_2426]
+RelativePath=CoreMangLib\cti\system\type\TypeHasElementTypeImpl\TypeHasElementTypeImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeHasElementTypeImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefarg_i4.exe_3930]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4\_il_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[guidequals2.exe_1267]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2\GuidEquals2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltoint16.exe_1011]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt16\DecimalToInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44224.exe_5120]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224\b44224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46649.exe_5149]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649\b46649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubletostring3.exe_1073]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString3\DoubleToString3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_opt_relexplicit3.exe_3987]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit3\_opt_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[client.exe_5763]
+RelativePath=Loader\binding\assemblies\assemblybugs\203962w\client\client.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\203962w\client
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ushort_cs_ro.exe_4395]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro\ushort_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relconvovf_i8_u.exe_3891]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u\_il_relconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84916.exe_5434]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916\b84916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vector3.exe_5759]
+RelativePath=JIT\SIMD\Vector3\Vector3.exe
+WorkingDir=JIT\SIMD\Vector3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exchangeint.exe_165]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeInt\ExchangeInt.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeInt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend7.exe_2309]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7\StringBuilderAppend7.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrsize.exe_2538]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrSize\UIntPtrSize.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[date.exe_5818]
+RelativePath=Regressions\common\date\date.exe
+WorkingDir=Regressions\common\date
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[stringiconvertibletoint16.exe_2213]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt16\StringIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidequals3.exe_1269]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals3\GuidEquals3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_i2.exe_3946]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i2\_il_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_assignment_class01.exe_3260]
+RelativePath=JIT\Generics\Locals\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_2.exe_3396]
+RelativePath=JIT\jit64\gc\misc\structfp1_2\structfp1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeformatinfogetformat.exe_1154]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat\DateTimeFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm64_cs_do.exe_4445]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_do\arithm64_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeticks.exe_956]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTicks\DateTimeTicks.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTicks
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singletochar.exe_2167]
+RelativePath=CoreMangLib\cti\system\single\SingleToChar\SingleToChar.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring24.exe_856]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString24\ConvertToString24.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString24
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesunmanaged.exe_2004]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged\MethodImplAttributesUnmanaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletoboolean.exe_1350]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean\Int64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b20079.exe_4892]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079\b20079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrecurse_jmpi.exe_4251]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi\_il_relrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compex.exe_5841]
+RelativePath=Regressions\coreclr\0198\CompEx\CompEx.exe
+WorkingDir=Regressions\coreclr\0198\CompEx
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rightshiftref.exe_2720]
+RelativePath=JIT\CodeGenBringUpTests\RightShiftRef\RightShiftRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\RightShiftRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[xaddmuly_cs_d.exe_2822]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d\xaddmuly_cs_d.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandlesethandleasinvalid_psc.exe_2112]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC\SafeHandleSetHandleAsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefanyval.exe_4710]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgrefanyval\_il_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgrefanyval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodestackbehaviourpop.exe_1879]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop\OpCodeStackBehaviourPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[conditionalattributector.exe_1034]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor\ConditionalAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16503.exe_4882]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503\b16503.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nanrem_cs_r.exe_4494]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_r\r8NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimenow.exe_945]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeNow\DateTimeNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeNow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35779.exe_5217]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779\b35779.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev10_804810.exe_5625]
+RelativePath=JIT\Regression\v4\dev10_804810\dev10_804810\dev10_804810.exe
+WorkingDir=JIT\Regression\v4\dev10_804810\dev10_804810
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25833.exe_4911]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833\b25833.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b118260.exe_5527]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260\b118260.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[defaultmemberattributector.exe_1644]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor\DefaultMemberAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring17.exe_848]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString17\ConvertToString17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgseq.exe_4531]
+RelativePath=JIT\Methodical\refany\_il_dbgseq\_il_dbgseq.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgseq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[icollectioncount.exe_592]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrtostring.exe_1382]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToString\IntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b07458.exe_5024]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458\b07458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keynotfoundexceptionctor2.exe_609]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2\KeyNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b80373.exe_5650]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373\b80373.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcs_ulong.exe_4060]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_ulong\_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[listienumerablegetenumerator2.exe_637]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2\ListIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartoperations_3.exe_221]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations_3\ThreadStartOperations_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[callipinvoke.exe_2849]
+RelativePath=JIT\Directed\coverage\oldtests\callipinvoke\callipinvoke.exe
+WorkingDir=JIT\Directed\coverage\oldtests\callipinvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributessealed.exe_2040]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed\TypeAttributesSealed.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesnot.exe_1825]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot\OpCodesNot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_popi_popref.exe_1940]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref\StackBehaviourPopref_popi_popref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filemodeenum.exe_1419]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeEnum\FileModeEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeEnum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_vars.exe_4753]
+RelativePath=JIT\opt\Inline\Inline_Vars\Inline_Vars.exe
+WorkingDir=JIT\opt\Inline\Inline_Vars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4_cs_do.exe_3652]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_do\r4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37636.exe_5057]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636\b37636.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simple.exe_2913]
+RelativePath=JIT\Directed\FaultHandlers\Simple\Simple\Simple.exe
+WorkingDir=JIT\Directed\FaultHandlers\Simple\Simple
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesassumelocal.exe_1168]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal\DateTimeStylesAssumeLocal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter009.exe_61]
+RelativePath=baseservices\exceptions\generics\TypeParameter009\TypeParameter009.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter009
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28598.exe_5177]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598\b28598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64tostring2.exe_1371]
+RelativePath=CoreMangLib\cti\system\int64\Int64ToString2\Int64ToString2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_rels_addsub.exe_4095]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_addsub\_il_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletosbyte.exe_2467]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte\UInt16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b68634.exe_5360]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634\b68634.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_u1.exe_1795]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1\OpCodesLdind_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryothernumber.exe_1247]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber\UnicodeCategoryOtherNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intarr_cs_r.exe_4422]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_r\intarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrecurse_jmp.exe_4238]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp\_il_dbgrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b609280.exe_5567]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280\b609280.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesvtablelayoutmask.exe_1991]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask\MethodAttributesVtableLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionarycontains.exe_513]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains\DictionaryIDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reltest3.exe_4213]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest3\_il_reltest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b99667.exe_5470]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667\b99667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareinfocompare.exe_1117]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare\CompareInfoCompare.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosbyte4.exe_828]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte4\ConvertToSByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32_r.exe_3034]
+RelativePath=JIT\Directed\shift\int32_r\int32_r.exe
+WorkingDir=JIT\Directed\shift\int32_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgenum_il.exe_3670]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_il\_dbgenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[field_tests.exe_2977]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\field_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletoint64.exe_1358]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64\Int64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingmethodexceptionctor1.exe_1546]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1\MissingMethodExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi8u8.exe_4266]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi8u8\_il_dbgi8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi8u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring22.exe_854]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString22\ConvertToString22.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString22
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter002.exe_54]
+RelativePath=baseservices\exceptions\generics\TypeParameter002\TypeParameter002.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter002
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8div_cs_do.exe_3805]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_do\i8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badregargs.exe_2965]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs\BadRegArgs.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblydelaysignattributector.exe_1619]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor\AssemblyDelaySignAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_2.exe_1759]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2\OpCodesLdc_I4_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ushort_cs_d.exe_4392]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_d\ushort_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct2_4.exe_3372]
+RelativePath=JIT\jit64\gc\misc\struct2_4\struct2_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[weakreferencetargetb_psc.exe_2561]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC\WeakReferenceTargetb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesmkrefany.exe_1817]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany\OpCodesMkrefany.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[char_cs_do.exe_4353]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_do\char_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4div_cs_r.exe_3815]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_r\r4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[div2.exe_2637]
+RelativePath=JIT\CodeGenBringUpTests\div2\div2.exe
+WorkingDir=JIT\CodeGenBringUpTests\div2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64maxvalue.exe_1365]
+RelativePath=CoreMangLib\cti\system\int64\Int64MaxValue\Int64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relselfref.exe_3629]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relselfref\_speed_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listcapacity.exe_622]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCapacity\ListCapacity.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCapacity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpush1.exe_1942]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1\StackBehaviourPush1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_3.exe_1760]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3\OpCodesLdc_I4_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rotarg_double.exe_4001]
+RelativePath=JIT\Methodical\explicit\rotate\rotarg_double\rotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\rotarg_double
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfogetnexttextelement2.exe_1210]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2\StringInfoGetNextTextElement2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartdecimal_3.exe_193]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_3\ThreadStartDecimal_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[platformnotsupportedexceptionctor3.exe_1597]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3\PlatformNotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_4.exe_815]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_4\ConvertToInt64_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listclear.exe_623]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListClear\ListClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingfieldexceptionctor3.exe_1540]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3\MissingFieldExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b07383.exe_5511]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383\b07383.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbytetostring3.exe_2148]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteToString3\SByteToString3.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relu_flow.exe_3910]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow\_il_relu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try3_r.exe_2957]
+RelativePath=JIT\Directed\leave\try3_r\try3_r.exe
+WorkingDir=JIT\Directed\leave\try3_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bne_opt.exe_3516]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt\bne_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rels_ldc_mul.exe_4124]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mul\_speed_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct3_4.exe_3377]
+RelativePath=JIT\jit64\gc\misc\struct3_4\struct3_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[finalizer.exe_2576]
+RelativePath=Exceptions\Finalization\Finalizer\Finalizer.exe
+WorkingDir=Exceptions\Finalization\Finalizer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intptrequals.exe_1377]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrEquals\IntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[throwinfinally.exe_82]
+RelativePath=baseservices\exceptions\unittests\ThrowInFinally\ThrowInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInFinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b66425.exe_5349]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425\b66425.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartneg1.exe_212]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg1\ThreadStartNeg1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrgetlen_il_d.exe_2847]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_d\arrgetlen_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltostring4.exe_1019]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString4\DecimalToString4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblynamesetpublickey.exe_1629]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey\AssemblyNameSetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b184799.exe_5725]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799\b184799.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_ro.exe_4399]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictenumidictenumget_value.exe_536]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value\DictEnumIDictEnumget_Value.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27880.exe_4933]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880\b27880.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chaos55915408cs_o.exe_3204]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs_o\chaos55915408cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[streamwritetimeout_psc.exe_1468]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC\StreamWriteTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ivtaassemblyname.exe_2061]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName\IVTAAssemblyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartstring_2.exe_229]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_2\ThreadStartString_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[r8nanadd_cs_r.exe_4482]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_r\r8NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b06859.exe_5020]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859\b06859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit1_il_r.exe_3787]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_r\prefldinit1_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8div_cs_ro.exe_3820]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_ro\r8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[_il_relrefarg_f4.exe_3943]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f4\_il_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72161.exe_5391]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161\b72161.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_r8.exe_1770]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8\OpCodesLdc_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_xor_op_cs_ro.exe_2803]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_ro\Float_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nullablegetvalueordefault1.exe_1567]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1\NullableGetValueOrDefault1.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtruegtfp.exe_2688]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtFP\JTrueGtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[switchdefaultonly1_il_r.exe_2897]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r\switchdefaultonly1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrotarg_objref.exe_4007]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref\_il_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise1b_cs_do.exe_3771]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_do\precise1b_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathsqrt.exe_1529]
+RelativePath=CoreMangLib\cti\system\math\MathSqrt\MathSqrt.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSqrt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefarg_o.exe_3931]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_o\_il_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryctor3.exe_496]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3\DictionaryCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reladdsub.exe_4153]
+RelativePath=JIT\Methodical\int64\unsigned\_il_reladdsub\_il_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_reladdsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisseparator2.exe_457]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator2\CharIsSeparator2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relnegindexrngchkelim.exe_3630]
+RelativePath=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim\_il_relnegIndexRngChkElim.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct2_2.exe_3371]
+RelativePath=JIT\jit64\gc\misc\struct2_2\struct2_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[randomsample.exe_1608]
+RelativePath=CoreMangLib\cti\system\random\RandomSample\RandomSample.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomSample
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[copyto1.exe_617]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo1\CopyTo1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectioncount.exe_557]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount\DictionaryValueCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcastclass_calli.exe_3700]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli\_il_dbgcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72218.exe_5572]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218\b72218.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE
+[weakreferencetrackresurrection_cti_psc.exe_2562]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC\WeakReferenceTrackResurrection_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16049.exe_4870]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049\b16049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_cs_r.exe_4346]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_r\bool_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b50042.exe_5246]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042\b50042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter003.exe_55]
+RelativePath=baseservices\exceptions\generics\TypeParameter003\TypeParameter003.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter003
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgs_ldsfld_mulovf.exe_4120]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf\_speed_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[excepobj.exe_2908]
+RelativePath=JIT\Directed\ExcepFilters\excepobj\excepobj\excepobj.exe
+WorkingDir=JIT\Directed\ExcepFilters\excepobj\excepobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter015.exe_67]
+RelativePath=baseservices\exceptions\generics\TypeParameter015\TypeParameter015.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter015
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_add_ovf_u2.exe_3306]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2\ldc_add_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versionmajor.exe_2552]
+RelativePath=CoreMangLib\cti\system\version\VersionMajor\VersionMajor.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionMajor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringconcat2.exe_2191]
+RelativePath=CoreMangLib\cti\system\string\StringConcat2\StringConcat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b124232.exe_5489]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232\b124232.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgii2.exe_4268]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii2\_il_dbgii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objalloc.exe_2715]
+RelativePath=JIT\CodeGenBringUpTests\ObjAlloc\ObjAlloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\ObjAlloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaac_r.exe_3446]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r\CGRecurseAAC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte3.exe_827]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte3\ConvertToSByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax9.exe_1502]
+RelativePath=CoreMangLib\cti\system\math\MathMax9\MathMax9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-finally03.exe_52]
+RelativePath=baseservices\exceptions\generics\try-finally03\try-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[invalidcastexceptionctor2.exe_1385]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2\InvalidCastExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress2_ro.exe_3463]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_ro\CgStress2_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44020.exe_5117]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020\b44020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefloc_u2.exe_3958]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_u2\_il_relrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfotostring.exe_1204]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString\RegionInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm32_cs_d.exe_4436]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_d\arithm32_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow2_cs_r.exe_2934]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_r\pow2_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exchangetclass.exe_167]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTClass\ExchangeTClass.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidctor3_cti.exe_1263]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3_cti\GuidCtor3_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletouint64.exe_414]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64\ByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b54611.exe_5279]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611\b54611.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16_cs_do.exe_3047]
+RelativePath=JIT\Directed\shift\uint16_cs_do\uint16_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_u4.exe_3336]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4\ldc_mul_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structarr_cs_d.exe_4408]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37214.exe_5222]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214\b37214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structasparam_method.exe_4761]
+RelativePath=JIT\opt\Inline\StructAsParam_Method\StructAsParam_Method.exe
+WorkingDir=JIT\opt\Inline\StructAsParam_Method
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringiconvertibletoboolean.exe_2210]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToBoolean\StringIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14067b.exe_4844]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b\b14067b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exchangetstring_3.exe_170]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTString_3\ExchangeTString_3.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTString_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[classic.exe_4500]
+RelativePath=JIT\Methodical\nonvirtualcall\classic\classic.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32_r.exe_3060]
+RelativePath=JIT\Directed\shift\uint32_r\uint32_r.exe
+WorkingDir=JIT\Directed\shift\uint32_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint6413.exe_915]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6413\ConvertToUInt6413.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6413
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE
+[b59947.exe_5317]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947\b59947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[universalsortabledatetimepattern.exe_1162]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern\UniversalSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgtest3.exe_4210]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest3\_il_dbgtest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringarr_cs_do.exe_4337]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nansub_cs_r.exe_4498]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_r\r8NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisdigit1.exe_445]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit1\CharIsDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[catch2_d.exe_2942]
+RelativePath=JIT\Directed\leave\catch2_d\catch2_d.exe
+WorkingDir=JIT\Directed\leave\catch2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimetostring1.exe_962]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString1\DateTimeToString1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[objectequals2.exe_1575]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals2\ObjectEquals2.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b402658.exe_4791]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658\b402658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[returnstruct_method.exe_4759]
+RelativePath=JIT\opt\Inline\ReturnStruct_Method\ReturnStruct_Method.exe
+WorkingDir=JIT\opt\Inline\ReturnStruct_Method
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[seekoriginend.exe_1462]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd\SeekOriginEnd.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tolower.exe_5827]
+RelativePath=Regressions\common\ToLower\ToLower.exe
+WorkingDir=Regressions\common\ToLower
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefloc_i4.exe_3953]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i4\_il_relrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b52839.exe_5264]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839\b52839.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_sub_ovf_u4.exe_3353]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4\ldc_sub_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletoint64.exe_2518]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64\UInt64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathcombine.exe_1446]
+RelativePath=CoreMangLib\cti\system\io\path\PathCombine\PathCombine.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathCombine
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch08.exe_45]
+RelativePath=baseservices\exceptions\generics\try-catch08\try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05637.exe_5005]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637\b05637.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimector3.exe_932]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor3\DateTimeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegategethashcode1.exe_1029]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetHashCode1\DelegateGetHashCode1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetHashCode1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filter1_d.exe_2946]
+RelativePath=JIT\Directed\leave\filter1_d\filter1_d.exe
+WorkingDir=JIT\Directed\leave\filter1_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathabs4.exe_1476]
+RelativePath=CoreMangLib\cti\system\math\MathAbs4\MathAbs4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_9.exe_805]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_9\ConvertToInt32_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gchandlealloc1_psc.exe_2078]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC\GCHandleAlloc1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_815940_d.exe_5615]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d\DevDiv_815940_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdouble_3.exe_199]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_3\ThreadStartDouble_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_opt_dbgexplicit2.exe_3978]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit2\_opt_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relldsfld_mul.exe_4182]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul\_speed_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[inline_recursivemethod21.exe_4750]
+RelativePath=JIT\opt\Inline\Inline_RecursiveMethod21\Inline_RecursiveMethod21.exe
+WorkingDir=JIT\opt\Inline\Inline_RecursiveMethod21
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102886.exe_5702]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886\b102886.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeminvalue.exe_944]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinValue\DateTimeMinValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanmul_cs_ro.exe_4471]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_ro\r4NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_no_op_cs_do.exe_2761]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_do\Bool_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcompat_i_u2.exe_4545]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i_u2\_il_dbgcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8flat_cs_do.exe_3656]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_do\r8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relvirtftn.exe_4256]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn\_il_relvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1.exe_3568]
+RelativePath=JIT\jit64\regress\vsw\538615\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\538615\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fibloop.exe_2641]
+RelativePath=JIT\CodeGenBringUpTests\FibLoop\FibLoop.exe
+WorkingDir=JIT\CodeGenBringUpTests\FibLoop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[init_uint64.exe_3122]
+RelativePath=JIT\Directed\zeroinit\init_uint64\init_uint64.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorymodifierletter.exe_1241]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter\UnicodeCategoryModifierLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relthrow.exe_3766]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relthrow\_speed_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relthrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40496.exe_5077]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496\b40496.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1.exe_3564]
+RelativePath=JIT\jit64\regress\vsw\524070\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_sub_ovf_i2.exe_3348]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2\ldc_sub_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimesecond.exe_952]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSecond\DateTimeSecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSecond
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b00735.exe_5504]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735\b00735.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar15.exe_738]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar15\ConvertToChar15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldloca.exe_2981]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\ldloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt2_cs_r.exe_3169]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_r\vt2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryadd.exe_512]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd\DictionaryIDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt1_cs_r.exe_3163]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_r\vt1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iconvertibletodatetime.exe_1279]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime\IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[keynotfoundexceptionctor1.exe_608]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1\KeyNotFoundExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typemakepointertype.exe_2432]
+RelativePath=CoreMangLib\cti\system\type\TypeMakePointerType\TypeMakePointerType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakePointerType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartneg4.exe_214]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg4\ThreadStartNeg4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinenone.exe_1901]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone\OperandTypeInlineNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbglcs.exe_3599]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PAS
+[iconvertibletoint16.exe_1282]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16\IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b374944.exe_5541]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944\b374944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[noenternewobject.exe_176]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterNewObject\NoEnterNewObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterNewObject
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84590.exe_5660]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590\b84590.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ilistisfixedsize.exe_704]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize\IListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryletternumber.exe_1237]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber\UnicodeCategoryLetterNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test359519.exe_5794]
+RelativePath=Loader\classloader\regressions\359519\test359519\test359519.exe
+WorkingDir=Loader\classloader\regressions\359519\test359519
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgtest_2a.exe_4559]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2a\_il_dbgtest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structlayoutattributecharset.exe_2114]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet\StructLayoutAttributeCharSet.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread03.exe_118]
+RelativePath=baseservices\threading\generics\threadstart\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[doubleisinfinity.exe_1061]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsInfinity\DoubleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_d.exe_4412]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32tostring2.exe_1316]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString2\Int32ToString2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reljumper1.exe_4618]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper1\_il_reljumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcs_gcref.exe_4688]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs_gcref\_speed_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs_gcref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[arraysort12.exe_331]
+RelativePath=CoreMangLib\cti\system\array\ArraySort12\ArraySort12.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mainv1.exe_5809]
+RelativePath=readytorun\mainv1\mainv1.exe
+WorkingDir=readytorun\mainv1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b48248.exe_5159]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248\b48248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraybinarysearch5b.exe_273]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5b\ArrayBinarySearch5b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_base_4.exe_2751]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_4\Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[comp64_il_r.exe_4455]
+RelativePath=JIT\Methodical\NaN\comp64_il_r\comp64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[_relexplicit3.exe_3995]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit3\_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class01.exe_3124]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgldsfld_mul.exe_4142]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mul\_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev11_457559.exe_5587]
+RelativePath=JIT\Regression\Dev11\Dev11_457559\Dev11_457559\Dev11_457559.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_457559\Dev11_457559
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b39224.exe_5061]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224\b39224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct2_5.exe_3373]
+RelativePath=JIT\jit64\gc\misc\struct2_5\struct2_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread01.exe_86]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[lclfldsub_cs_ro.exe_2879]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro\lclfldsub_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[_il_dbgstress2.exe_4532]
+RelativePath=JIT\Methodical\refany\_il_dbgstress2\_il_dbgstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgstress2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaac_do.exe_3445]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do\CGRecurseAAC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise4_cs_d.exe_3782]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_d\precise4_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16554.exe_4883]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554\b16554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct02.exe_3137]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02\struct02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct_instance01.exe_3272]
+RelativePath=JIT\Generics\MemberAccess\struct_instance01\struct_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgtest_2c.exe_4561]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2c\_il_dbgtest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28787.exe_4945]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787\b28787.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[waithandledispose1.exe_2384]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1\WaitHandleDispose1.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_add_ovf_i2.exe_3302]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2\ldc_add_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16_cs_d.exe_3046]
+RelativePath=JIT\Directed\shift\uint16_cs_d\uint16_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesnewarr.exe_1822]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr\OpCodesNewarr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[expl_funcptr_val_d.exe_3961]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d\expl_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorynonspacingmark.exe_1243]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark\UnicodeCategoryNonSpacingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25491.exe_4904]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491\b25491.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[systemcollgenienumgetenumerator.exe_555]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator\SystemCollGenIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[memorystreamctor2.exe_1438]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2\MemoryStreamCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41621.exe_5094]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621\b41621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2989
+[b30892.exe_4962]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892\b30892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gentonongen03.exe_3199]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen03\gentonongen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b79250.exe_5420]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250\b79250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrotate_u2.exe_4010]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2\_il_dbgrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgexplicit1.exe_3967]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit1\_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4_cs_ro.exe_3638]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_ro\i4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[localloc.exe_2702]
+RelativePath=JIT\CodeGenBringUpTests\Localloc\Localloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\Localloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4_cs_d.exe_3651]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_d\r4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nanadd_cs_d.exe_4480]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_d\r8NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimal_cs_d.exe_4356]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_d\decimal_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodessub_ovf.exe_1876]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf\OpCodesSub_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b409617.exe_5543]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617\b409617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-finally01.exe_50]
+RelativePath=baseservices\exceptions\generics\try-finally01\try-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingfieldexceptionmessage.exe_1541]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage\MissingFieldExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i4div_cs_d.exe_3800]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_d\i4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b11949.exe_4833]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949\b11949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgbinop.exe_4065]
+RelativePath=JIT\Methodical\int64\misc\_dbgbinop\_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32compareto2.exe_2481]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32CompareTo2\UInt32CompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32CompareTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[generic_test_csharp_peer_2.exe_2744]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2\Generic_Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletoint32.exe_2517]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32\UInt64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relu_seq.exe_3915]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq\_il_relu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort7.exe_342]
+RelativePath=CoreMangLib\cti\system\array\ArraySort7\ArraySort7.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubletostring4.exe_1074]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString4\DoubleToString4.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublenegativeinfinity.exe_1068]
+RelativePath=CoreMangLib\cti\system\double\DoubleNegativeInfinity\DoubleNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNegativeInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test583.exe_5853]
+RelativePath=Regressions\coreclr\0583\Test583\Test583.exe
+WorkingDir=Regressions\coreclr\0583\Test583
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[sbyteiconvertibletoint16.exe_2135]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16\SByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_no_op_cs_ro.exe_2763]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_ro\Bool_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4_cs_ro.exe_3654]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_ro\r4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_i4.exe_1713]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4\OpCodesConv_Ovf_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt1_il_r.exe_3166]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_r\vt1_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b423755.exe_5547]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755\b423755.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b35315.exe_5209]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315\b35315.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltryparse.exe_1024]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTryParse\DecimalTryParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesautoclass.exe_2022]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass\TypeAttributesAutoClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend17.exe_2301]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17\StringBuilderAppend17.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint3219.exe_901]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3219\ConvertToUInt3219.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3219
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint646.exe_925]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt646\ConvertToUInt646.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt646
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread11.exe_96]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[sbyteminvalue.exe_2142]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMinValue\SByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfocompareinfo.exe_1134]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoCompareInfo\CultureInfoCompareInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoCompareInfo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test2.exe_3565]
+RelativePath=JIT\jit64\regress\vsw\524070\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpush1_push1.exe_1943]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1\StackBehaviourPush1_push1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm32_cs_r.exe_4438]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_r\arithm32_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_passing_class01.exe_3225]
+RelativePath=JIT\Generics\Fields\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fromnativepaths.exe_5803]
+RelativePath=Loader\NativeLibs\FromNativePaths\FromNativePaths.exe
+WorkingDir=Loader\NativeLibs\FromNativePaths
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[gthread07.exe_122]
+RelativePath=baseservices\threading\generics\threadstart\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_speed_reliface1.exe_3746]
+RelativePath=JIT\Methodical\casts\iface\_speed_reliface1\_speed_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_reliface1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_dbgexplicit8.exe_3984]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit8\_opt_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[randomnext1.exe_1603]
+RelativePath=CoreMangLib\cti\system\random\RandomNext1\RandomNext1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[hugeexpr1.exe_3487]
+RelativePath=JIT\jit64\opt\cse\hugeexpr1\hugeexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeexpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14202.exe_4850]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202\b14202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b60194.exe_5324]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194\b60194.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletouint16.exe_1306]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16\Int32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathatan.exe_1481]
+RelativePath=CoreMangLib\cti\system\math\MathAtan\MathAtan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathlog10.exe_1491]
+RelativePath=CoreMangLib\cti\system\math\MathLog10\MathLog10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32tostring4.exe_2507]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString4\UInt32ToString4.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullreferenceexceptionctor1.exe_1572]
+RelativePath=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1\NullReferenceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrotarg_float.exe_4006]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float\_il_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespantotalmilliseconds.exe_2413]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds\TimeSpanTotalMilliseconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102860.exe_5677]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860\b102860.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rellocal.exe_3668]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocal\_il_rellocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorydecimaldigitnumber.exe_1232]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber\UnicodeCategoryDecimalDigitNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[idictionaryclear.exe_695]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear\IDictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgfr8.exe_4263]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr8\_il_dbgfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47886.exe_5235]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886\b47886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_5.exe_786]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_5\ConvertToInt16_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcast_throw.exe_3763]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgcast_throw\_speed_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgcast_throw
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[memorystreamctor7.exe_1443]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7\MemoryStreamCtor7.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesclass.exe_2025]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass\TypeAttributesClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32_cs_r.exe_3030]
+RelativePath=JIT\Directed\shift\int32_cs_r\int32_cs_r.exe
+WorkingDir=JIT\Directed\shift\int32_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stret.exe_3575]
+RelativePath=JIT\jit64\regress\vsw\601425\stret\stret.exe
+WorkingDir=JIT\jit64\regress\vsw\601425\stret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimplattributespreservesig.exe_2001]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig\MethodImplAttributesPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relcastclass_call.exe_3733]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_call\_speed_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcs.exe_3581]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[decoderctor.exe_2258]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderCtor\DecoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arglist.exe_2983]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\arglist\arglist.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\arglist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
+[sp1.exe_3088]
+RelativePath=JIT\Directed\StructPromote\SP1\SP1.exe
+WorkingDir=JIT\Directed\StructPromote\SP1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[missingfieldexceptionctor2.exe_1539]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2\MissingFieldExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[indexoutofrangeexceptionctor1.exe_1287]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1\IndexOutOfRangeExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rellcs_ulong.exe_4064]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_ulong\_speed_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[b62498.exe_5333]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498\b62498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionarykeys.exe_597]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys\IDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal6.exe_759]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal6\ConvertToDecimal6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodingconvert1.exe_2263]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert1\EncodingConvert1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_passing_class01.exe_3264]
+RelativePath=JIT\Generics\Locals\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread08.exe_123]
+RelativePath=baseservices\threading\generics\threadstart\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_il_reltest_switch.exe_4589]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_switch\_il_reltest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_switch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simpleexpr1_1.exe_3495]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1_1\simpleexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletoint64.exe_2173]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt64\SingleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27658.exe_4929]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658\b27658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b42009.exe_5097]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009\b42009.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcastclass_catch.exe_3756]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch\_il_relcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedexchange6.exe_2377]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6\InterlockedExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ovfldiv2_il_d.exe_2886]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_d\ovfldiv2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldloc_0.exe_1802]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0\OpCodesLdloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow0_cs_do.exe_2928]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_do\pow0_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16122.exe_5175]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122\b16122.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b80824.exe_5424]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824\b80824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraylastindexof3.exe_315]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3\ArrayLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49101.exe_5170]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101\b49101.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[localloc3_cs_d.exe_2960]
+RelativePath=JIT\Directed\localloc\localloc3_cs_d\localloc3_cs_d.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread13.exe_98]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_il_reliu2.exe_4281]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu2\_il_reliu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ilistitem.exe_705]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b71120.exe_5379]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120\b71120.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32_cs_do.exe_3029]
+RelativePath=JIT\Directed\shift\int32_cs_do\int32_cs_do.exe
+WorkingDir=JIT\Directed\shift\int32_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletoint16.exe_1329]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16\Int16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[versiontostring2.exe_2555]
+RelativePath=CoreMangLib\cti\system\version\VersionToString2\VersionToString2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tolower.exe_5845]
+RelativePath=Regressions\coreclr\0308\ToLower\ToLower.exe
+WorkingDir=Regressions\coreclr\0308\ToLower
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rem_dbg.exe_3525]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg\rem_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3263
+[typeattributesclasssemanticsmask.exe_2026]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask\TypeAttributesClassSemanticsMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbglcs_ldlen.exe_3589]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen\_il_dbglcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring1.exe_840]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString1\ConvertToString1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reljumper3.exe_4620]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper3\_il_reljumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[9_and_alloca2.exe_3357]
+RelativePath=JIT\jit64\gc\misc\9_and_alloca2\9_and_alloca2.exe
+WorkingDir=JIT\jit64\gc\misc\9_and_alloca2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26512.exe_4917]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512\b26512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31745.exe_5188]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745\b31745.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[opcodesldarga_s.exe_1750]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S\OpCodesLdarga_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reli8u8.exe_4277]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli8u8\_il_reli8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli8u8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringequals1.exe_2202]
+RelativePath=CoreMangLib\cti\system\string\StringEquals1\StringEquals1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b11413.exe_4831]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413\b11413.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simple-repro.exe_3566]
+RelativePath=JIT\jit64\regress\vsw\528315\simple-repro\simple-repro.exe
+WorkingDir=JIT\jit64\regress\vsw\528315\simple-repro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess2_cs_ro.exe_3081]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_ro\straccess2_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nullablegethashcode.exe_1565]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetHashCode\NullableGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[comparercompare2.exe_485]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2\ComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[call_instance01.exe_3183]
+RelativePath=JIT\Generics\Constraints\call_instance01\call_instance01.exe
+WorkingDir=JIT\Generics\Constraints\call_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b53995.exe_5275]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995\b53995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_and_op_cs_do.exe_2789]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_do\Float_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param2a_cs_r.exe_4195]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_r\25param2a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2988
+[_il_dbgu_native.exe_4533]
+RelativePath=JIT\Methodical\refany\_il_dbgu_native\_il_dbgu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgu_native
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraygetvalue1.exe_289]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue1\ArrayGetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singleisnegativeinfinity.exe_2158]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNegativeInfinity\SingleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNegativeInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64tostring1.exe_2530]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64ToString1\UInt64ToString1.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64ToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbginitializearray_enum.exe_3618]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum\_il_dbginitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributeshasdefault.exe_1959]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault\FieldAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listadd.exe_620]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAdd\ListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgs_ldfld_mul.exe_4090]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul\_il_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-finally-struct03.exe_49]
+RelativePath=baseservices\exceptions\generics\try-finally-struct03\try-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icomparablecompareto.exe_1274]
+RelativePath=CoreMangLib\cti\system\icomparable\IComparableCompareTo\IComparableCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable\IComparableCompareTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread30.exe_115]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread30
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[genericexceptions08.exe_12]
+RelativePath=baseservices\exceptions\generics\GenericExceptions08\GenericExceptions08.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions08
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[invalidprogramexceptionctor3.exe_1392]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3\InvalidProgramExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eq1.exe_2639]
+RelativePath=JIT\CodeGenBringUpTests\Eq1\Eq1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Eq1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[property.exe_4758]
+RelativePath=JIT\opt\Inline\property\property.exe
+WorkingDir=JIT\opt\Inline\property
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dayofweekthursday.exe_973]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday\DayOfWeekThursday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgee.exe_4606]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgee\_il_dbgee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgee
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_u2.exe_1782]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2\OpCodesLdelem_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgtest_3b.exe_4562]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_3b\_il_dbgtest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint16.exe_872]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt16\ConvertToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgdeep_array.exe_4548]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array\_il_dbgdeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesfamandassem.exe_1972]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem\MethodAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread10.exe_95]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[threadstartulong_3.exe_237]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_3\ThreadStartULong_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[orref.exe_2718]
+RelativePath=JIT\CodeGenBringUpTests\OrRef\OrRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\OrRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b27564.exe_4927]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564\b27564.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[103087.exe_3544]
+RelativePath=JIT\jit64\regress\ddb\103087\103087\103087.exe
+WorkingDir=JIT\jit64\regress\ddb\103087\103087
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[platformnotsupportedexceptionctor1.exe_1595]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1\PlatformNotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_or_op_cs_d.exe_2796]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_d\Float_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b09254.exe_5032]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254\b09254.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgs_muldiv.exe_4121]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_muldiv\_speed_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ehso.exe_3861]
+RelativePath=JIT\Methodical\eh\interactions\ehso\ehso.exe
+WorkingDir=JIT\Methodical\eh\interactions\ehso
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodecimal9.exe_761]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal9\ConvertToDecimal9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b12343.exe_5692]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343\b12343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[obsoleteattributector1.exe_1583]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1\ObsoleteAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[289745.exe_2588]
+RelativePath=GC\Regressions\v2.0-beta1\289745\289745\289745.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\289745
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104
+[upgrader.exe_243]
+RelativePath=baseservices\threading\readerwriterlockslim\Upgrader\Upgrader.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\Upgrader
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[ldc_c_cpblk.exe_3325]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk\ldc_c_cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldsub_cs_do.exe_2877]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_do\lclfldsub_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[idictionaryisfixedsize.exe_698]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize\IDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enterexitexit.exe_175]
+RelativePath=baseservices\threading\monitor\unownedlock\EnterExitExit\EnterExitExit.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\EnterExitExit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalequals3.exe_990]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals3\DecimalEquals3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charunicodeinfogetunicodecategory2.exe_1116]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2\CharUnicodeInfoGetUnicodeCategory2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b85315.exe_5667]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315\b85315.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32parse3.exe_2503]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse3\UInt32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[iconvertibletoboolean.exe_1276]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean\IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50145.exe_5247]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145\b50145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rankexceptionctor1.exe_1609]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor1\RankExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct03.exe_3248]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b109721.exe_5634]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721\b109721.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayexpr1.exe_3479]
+RelativePath=JIT\jit64\opt\cse\arrayexpr1\arrayexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relmuldiv.exe_4168]
+RelativePath=JIT\Methodical\int64\unsigned\_relmuldiv\_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblarea.exe_2618]
+RelativePath=JIT\CodeGenBringUpTests\DblArea\DblArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArea
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simplearray_01_o.exe_3542]
+RelativePath=JIT\jit64\opt\rngchk\SimpleArray_01_o\SimpleArray_01_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\SimpleArray_01_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b49142.exe_5239]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142\b49142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01.exe_3150]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47093.exe_5155]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093\b47093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intptrctor_void.exe_1376]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Void\IntPtrCtor_Void.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Void
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleisnegativeinfinity.exe_1063]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity\DoubleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16iconvertibletodecimal.exe_1327]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal\Int16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b75945.exe_5412]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945\b75945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43115.exe_5107]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115\b43115.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuetypeequals2.exe_2545]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals2\ValueTypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[initobj.exe_3014]
+RelativePath=JIT\Directed\PREFIX\volatile\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\initobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test1534.exe_5868]
+RelativePath=Regressions\coreclr\1534\Test1534\Test1534.exe
+WorkingDir=Regressions\coreclr\1534\Test1534
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetencoder.exe_2283]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder\EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldattributesfamandassem.exe_1955]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem\FieldAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidcompareto2.exe_1258]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo2\GuidCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbginstftn_t.exe_4236]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t\_il_dbginstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b05773.exe_5009]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773\b05773.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeformatinfogetabbreviatedmonthname.exe_1152]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName\DateTimeFormatInfoGetAbbreviatedMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relvalftn_t.exe_4255]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn_t\_il_relvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct3.exe_3375]
+RelativePath=JIT\jit64\gc\misc\struct3\struct3.exe
+WorkingDir=JIT\jit64\gc\misc\struct3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesshl.exe_1843]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl\OpCodesShl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b75250.exe_5407]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250\b75250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b24727.exe_4897]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727\b24727.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41164.exe_5086]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164\b41164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinsert.exe_2222]
+RelativePath=CoreMangLib\cti\system\string\StringInsert\StringInsert.exe
+WorkingDir=CoreMangLib\cti\system\string\StringInsert
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletochar.exe_430]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToChar\CharIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64_d.exe_3062]
+RelativePath=JIT\Directed\shift\uint64_d\uint64_d.exe
+WorkingDir=JIT\Directed\shift\uint64_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[memorystreamctor.exe_1437]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor\MemoryStreamCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodeflowcontrol.exe_1655]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl\OpCodeFlowControl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ehcodemotion.exe_4018]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ehCodeMotion\ehCodeMotion.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ehCodeMotion
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletoboolean.exe_378]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean\BooleanIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodescpobj.exe_1737]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj\OpCodesCpobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stacktoarray.exe_685]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackToArray\StackToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackToArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lur_01.exe_3511]
+RelativePath=JIT\jit64\opt\lur\lur_01\lur_01.exe
+WorkingDir=JIT\jit64\opt\lur\lur_01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct4_5.exe_3382]
+RelativePath=JIT\jit64\gc\misc\struct4_5\struct4_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26155.exe_4915]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155\b26155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_or_op_cs_d.exe_2764]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_d\Bool_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimetofiletimeutc.exe_960]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc\DateTimeToFileTimeUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuector2.exe_664]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2\QueueCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i1.exe_1709]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1\OpCodesConv_Ovf_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetbytecount1.exe_2268]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1\EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct4.exe_3379]
+RelativePath=JIT\jit64\gc\misc\struct4\struct4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reltest_2b.exe_4585]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2b\_il_reltest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b338014.exe_5539]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014\b338014.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint64.exe_806]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64\ConvertToInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27980.exe_5718]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980\b27980.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint324.exe_904]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt324\ConvertToUInt324.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt324
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31903.exe_5193]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903\b31903.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort4.exe_339]
+RelativePath=CoreMangLib\cti\system\array\ArraySort4\ArraySort4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletoboolean.exe_1294]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean\Int32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev10_844071.exe_3477]
+RelativePath=JIT\jit64\opt\cprop\Dev10_844071\Dev10_844071.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_844071
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relctor_recurse.exe_4660]
+RelativePath=JIT\Methodical\VT\etc\_speed_relctor_recurse\_speed_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relctor_recurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[verify01_small.exe_4321]
+RelativePath=JIT\Methodical\localloc\verify\verify01_small\verify01_small.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_small
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31273.exe_4964]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273\b31273.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartlong_3.exe_211]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong_3\ThreadStartLong_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b88712.exe_5442]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712\b88712.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimekindutc.exe_968]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc\DateTimeKindUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublearr_cs_d.exe_4416]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodinggetmaxcharcount.exe_2344]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount\UnicodeEncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ulong_cs_do.exe_4389]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_do\ulong_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletotype.exe_2521]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType\UInt64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletodecimal.exe_2462]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal\UInt16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringiconvertibletouint16.exe_2217]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt16\StringIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[objectequals1.exe_1574]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals1\ObjectEquals1.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleiconvertibletoint16.exe_1056]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16\DoubleIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax7.exe_1500]
+RelativePath=CoreMangLib\cti\system\math\MathMax7\MathMax7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletosbyte.exe_2493]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte\UInt32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletouint16.exe_440]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt16\CharIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tailcall_d.exe_4507]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_d\tailcall_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overlddiv_cs_ro.exe_3812]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_ro\overlddiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimecompare.exe_929]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompare\DateTimeCompare.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompare
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuedequeue.exe_666]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue\QueueDequeue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[val_ctor_il_d.exe_4596]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_d\val_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_dbgs_ldfld_mul.exe_4081]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mul\_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_815940_r.exe_5617]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r\DevDiv_815940_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b112982.exe_5637]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982\b112982.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch09.exe_46]
+RelativePath=baseservices\exceptions\generics\try-catch09\try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch09
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletotype.exe_1305]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToType\Int32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[layoutkindsequential.exe_2087]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential\LayoutKindSequential.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31748.exe_4969]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748\b31748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetbytecount.exe_2267]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount\EncodingGetByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgtailjump_cs.exe_3672]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_cs\_dbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794631_do.exe_5612]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do\DevDiv_794631_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring2.exe_851]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString2\ConvertToString2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_3.exe_799]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_3\ConvertToInt32_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_no_op_cs_r.exe_2762]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_r\Bool_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblneg.exe_2630]
+RelativePath=JIT\CodeGenBringUpTests\DblNeg\DblNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblNeg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise1_cs_d.exe_3774]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_d\precise1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[init_int32.exe_3118]
+RelativePath=JIT\Directed\zeroinit\init_int32\init_int32.exe
+WorkingDir=JIT\Directed\zeroinit\init_int32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listcount.exe_625]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCount\ListCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b03995.exe_4986]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995\b03995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaac_d.exe_3444]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d\CGRecurseAAC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend11.exe_2295]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11\StringBuilderAppend11.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sp1a2.exe_3090]
+RelativePath=JIT\Directed\StructPromote\SP1a2\SP1a2.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcompare9.exe_2186]
+RelativePath=CoreMangLib\cti\system\string\StringCompare9\StringCompare9.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[subbyref_il_d.exe_2894]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_d\subbyref_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ienumeratormovenext.exe_702]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext\IEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedaddlong_2.exe_156]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLong_2\InterlockedAddLong_2.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLong_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[missingmemberexceptionctor3.exe_1544]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3\MissingMemberExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[baseclass03.exe_3235]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass03\baseclass03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_and_op_cs_do.exe_2773]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_do\Double_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsconstructor.exe_353]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor\AttributeTargetsConstructor.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doubleiconvertibletosbyte.exe_1059]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte\DoubleIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32_cs_do.exe_3055]
+RelativePath=JIT\Directed\shift\uint32_cs_do\uint32_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91377.exe_5437]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377\b91377.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intconv.exe_2678]
+RelativePath=JIT\CodeGenBringUpTests\IntConv\IntConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntConv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanfromticks.exe_2400]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanFromTicks\TimeSpanFromTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanFromTicks
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nested-try-catch07.exe_19]
+RelativePath=baseservices\exceptions\generics\nested-try-catch07\nested-try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow0_cs_d.exe_2927]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_d\pow0_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test_hndindex_10_plain.exe_5588]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain\Test_HndIndex_10_Plain.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[memorystreamctor5.exe_1441]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5\MemoryStreamCtor5.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[float_or_op_cs_do.exe_2797]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_do\Float_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorytitlecaseletter.exe_1255]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter\UnicodeCategoryTitlecaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow3.exe_5840]
+RelativePath=Regressions\coreclr\0138\pow3\pow3.exe
+WorkingDir=Regressions\coreclr\0138\pow3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50026.exe_5243]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026\b50026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genrecur.exe_5843]
+RelativePath=Regressions\coreclr\0211\genrecur\genrecur.exe
+WorkingDir=Regressions\coreclr\0211\genrecur
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[hugearray1.exe_3486]
+RelativePath=JIT\jit64\opt\cse\HugeArray1\HugeArray1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b34945.exe_5046]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945\b34945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[case14.exe_5772]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14\case14.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b92693.exe_5466]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693\b92693.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regalloc1.exe_2925]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc1\regalloc1.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structinstmethod.exe_2725]
+RelativePath=JIT\CodeGenBringUpTests\StructInstMethod\StructInstMethod.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructInstMethod
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgdeep.exe_4231]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_dbgdeep\_speed_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_dbgdeep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring32.exe_864]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString32\ConvertToString32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[size.exe_4760]
+RelativePath=JIT\opt\Inline\size\size.exe
+WorkingDir=JIT\opt\Inline\size
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[endofstreamexceptionctor2_psc.exe_1397]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC\endofstreamexceptionctor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b353858.exe_5540]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858\b353858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jmp_impl.exe_3469]
+RelativePath=JIT\jit64\opt\cg\il\jmp_impl\jmp_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_impl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgtest_mutual_rec.exe_4563]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec\_il_dbgtest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31452.exe_5185]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452\b31452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsfield.exe_357]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsField\AttributeTargetsField.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsField
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldfld.exe_1784]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld\OpCodesLdfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_u8.exe_1725]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8\OpCodesConv_Ovf_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b174294.exe_5579]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294\b174294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteparse3.exe_2145]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse3\SByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b67987.exe_5356]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987\b67987.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributetargetsparameter.exe_362]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter\AttributeTargetsParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathabs3.exe_1475]
+RelativePath=CoreMangLib\cti\system\math\MathAbs3\MathAbs3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldc_i4_s.exe_1767]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S\OpCodesLdc_I4_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[refarg_i1.exe_3920]
+RelativePath=JIT\Methodical\explicit\basic\refarg_i1\refarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgunbox.exe_4718]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgunbox\_speed_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvirtftn.exe_4244]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn\_il_dbgvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldftn_impl.exe_3473]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_impl\ldftn_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_impl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgisinst_ldarg.exe_3730]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg\_speed_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8rem_cs_d.exe_3849]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_d\r8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_no_op_cs_ro.exe_2795]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_ro\Float_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_i8.exe_1715]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8\OpCodesConv_Ovf_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chartostring2.exe_471]
+RelativePath=CoreMangLib\cti\system\char\CharToString2\CharToString2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathsign7.exe_1526]
+RelativePath=CoreMangLib\cti\system\math\MathSign7\MathSign7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3105
+[booleaniconvertibletosbyte.exe_387]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte\BooleanIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[prefldinit2_il_r.exe_3789]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_r\prefldinit2_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[eventattributesnone.exe_1951]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone\EventAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayofstructs.exe_4731]
+RelativePath=JIT\opt\Inline\ArrayOfStructs\ArrayOfStructs.exe
+WorkingDir=JIT\opt\Inline\ArrayOfStructs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_3010]
+RelativePath=JIT\Directed\PREFIX\volatile\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\Desktop\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rankexceptionctor3.exe_1611]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor3\RankExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b180381a.exe_5495]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a\b180381a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_and_op_cs_ro.exe_2807]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_ro\Int_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04345.exe_4991]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345\B04345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublepositiveinfinity.exe_1070]
+RelativePath=CoreMangLib\cti\system\double\DoublePositiveInfinity\DoublePositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoublePositiveInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcatchfinally_ind.exe_4299]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind\_il_relcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rngchkstress2_o.exe_3540]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress2_o\RngchkStress2_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress2_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[b64026.exe_5343]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026\b64026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32_cs_ro.exe_3057]
+RelativePath=JIT\Directed\shift\uint32_cs_ro\uint32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltodouble.exe_1010]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDouble\DecimalToDouble.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[argumentexceptionmessage.exe_257]
+RelativePath=CoreMangLib\cti\system\argumentexception\ArgumentExceptionMessage\ArgumentExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\argumentexception\ArgumentExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[char_cs_ro.exe_4355]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_ro\char_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30869.exe_4961]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869\b30869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm32_ro.exe_4443]
+RelativePath=JIT\Methodical\NaN\arithm32_ro\arithm32_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relvalftn.exe_4254]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn\_il_relvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16_cs_do.exe_3021]
+RelativePath=JIT\Directed\shift\int16_cs_do\int16_cs_do.exe
+WorkingDir=JIT\Directed\shift\int16_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclflddiv_cs_do.exe_2865]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_do\lclflddiv_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[stackclear.exe_674]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackClear\StackClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltosingle.exe_1015]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSingle\DecimalToSingle.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraytypemismatchexceptionctor2.exe_346]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2\ArrayTypeMismatchExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow3_cs_d.exe_2936]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_d\pow3_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[waithandlector.exe_2383]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor\WaitHandleCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesallowhexspecifier.exe_1183]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier\NumberStylesAllowHexSpecifier.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[negsignedmod.exe_3808]
+RelativePath=JIT\Methodical\divrem\div\negSignedMod\negSignedMod.exe
+WorkingDir=JIT\Methodical\divrem\div\negSignedMod
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[reftypesdynamic.exe_3292]
+RelativePath=JIT\Generics\Typeof\refTypesdynamic\refTypesdynamic.exe
+WorkingDir=JIT\Generics\Typeof\refTypesdynamic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[callingconventionwinapi.exe_2073]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi\CallingConventionWinapi.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbghan2.exe_4640]
+RelativePath=JIT\Methodical\VT\etc\_dbghan2\_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b36975.exe_5221]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975\b36975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[icollectionsyncroot.exe_544]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06595.exe_5016]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595\b06595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletodecimal.exe_2488]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal\UInt32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relldc_mul.exe_4178]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mul\_speed_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_i2.exe_3331]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2\ldc_mul_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldsfld_mulovf.exe_4102]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf\_il_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint8_cs_r.exe_3068]
+RelativePath=JIT\Directed\shift\uint8_cs_r\uint8_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cs_threadpoolnullchecks.exe_84]
+RelativePath=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks\CS_ThreadPoolNullChecks.exe
+WorkingDir=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b33183.exe_5581]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183\b33183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param1b_il_r.exe_4190]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_r\25param1b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobyte1.exe_725]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte1\ConvertToByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetchars2.exe_2280]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars2\EncodingGetChars2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread29.exe_144]
+RelativePath=baseservices\threading\generics\threadstart\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread29
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttouint3213.exe_896]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3213\ConvertToUInt3213.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3213
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax3.exe_1496]
+RelativePath=CoreMangLib\cti\system\math\MathMax3\MathMax3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgldfld_mulovf.exe_4149]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf\_il_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8rem_cs_r.exe_3851]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_r\r8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[143837.exe_3436]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\143837\143837.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\143837
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfoequals.exe_1199]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals\RegionInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringpadleft.exe_2228]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft\StringPadLeft.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_u4_i4.exe_3320]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4\ldc_conv_ovf_u4_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convert_instance01.exe_3189]
+RelativePath=JIT\Generics\Constraints\convert_instance01\convert_instance01.exe
+WorkingDir=JIT\Generics\Constraints\convert_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class02.exe_3288]
+RelativePath=JIT\Generics\Typeof\class02\class02.exe
+WorkingDir=JIT\Generics\Typeof\class02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuildertostring1.exe_2331]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1\StringBuilderToString1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i4_un.exe_1714]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un\OpCodesConv_Ovf_I4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b50145b.exe_5249]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b\b50145b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b12399.exe_4835]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399\b12399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[int16iconvertibletoboolean.exe_1323]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean\Int16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cse2_cs_do.exe_2855]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_do\cse2_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_ckfinite_r4.exe_3309]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4\ldc_ckfinite_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderinsert4.exe_2323]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4\StringBuilderInsert4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldind_stind.exe_2991]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\ldind_stind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badimageformatexceptionctor3.exe_370]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3\BadImageFormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b10940a.exe_4828]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a\b10940a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberformatinfogetinstance.exe_1178]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance\NumberFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathfunc.exe_4756]
+RelativePath=JIT\opt\Inline\mathfunc\mathfunc.exe
+WorkingDir=JIT\opt\Inline\mathfunc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringremove2.exe_2235]
+RelativePath=CoreMangLib\cti\system\string\StringRemove2\StringRemove2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64_ro.exe_3039]
+RelativePath=JIT\Directed\shift\int64_ro\int64_ro.exe
+WorkingDir=JIT\Directed\shift\int64_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[propertyattributesrtspecialname.exe_2013]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName\PropertyAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldmul_cs_do.exe_2869]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_do\lclfldmul_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[listindexof1.exe_646]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1\ListIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[add.exe_2993]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[throwtest.exe_4764]
+RelativePath=JIT\opt\Inline\throwTest\throwTest.exe
+WorkingDir=JIT\opt\Inline\throwTest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-struct03.exe_31]
+RelativePath=baseservices\exceptions\generics\try-catch-struct03\try-catch-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fixedbufferattributeelementtype.exe_2071]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType\FixedBufferAttributeElementType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inttobyte.exe_4017]
+RelativePath=JIT\Methodical\flowgraph\bug614098\intToByte\intToByte.exe
+WorkingDir=JIT\Methodical\flowgraph\bug614098\intToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64maxvalue.exe_2525]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MaxValue\UInt64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25param3c_il_r.exe_4204]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_r\25param3c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesprivatescope.exe_1966]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope\FieldAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgs_muldiv.exe_4085]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_muldiv\_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublearr_cs_do.exe_4417]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoboolean4.exe_719]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean4\ConvertToBoolean4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[foo_opt.exe_3532]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt\foo_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeboolean.exe_2434]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeBoolean\TypeCodeBoolean.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nandiv_cs_do.exe_4465]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_do\r4NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[default_struct01.exe_3298]
+RelativePath=JIT\Generics\TypeParameters\default_struct01\default_struct01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesserializable.exe_2042]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable\TypeAttributesSerializable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbytemaxvalue.exe_2141]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMaxValue\SByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rankexceptionctor2.exe_1610]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor2\RankExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b30838.exe_4958]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838\b30838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[544701.exe_2593]
+RelativePath=GC\Regressions\v2.0-rtm\544701\544701\544701.exe
+WorkingDir=GC\Regressions\v2.0-rtm\544701\544701
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3104
+[attributetargetsdelegate.exe_354]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate\AttributeTargetsDelegate.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgs_ldsfld_mulovf.exe_4084]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf\_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvtret2.exe_4613]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret2\_il_dbgvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_dbgexplicit5.exe_3981]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit5\_opt_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_cs_do.exe_4361]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_do\double_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14777.exe_4862]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777\b14777.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b36274.exe_5049]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274\b36274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint64_1.exe_807]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_1\ConvertToInt64_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetbytes1.exe_2353]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1\UTF8EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[25parammixed_il_d.exe_4205]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_d\25paramMixed_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cpblkint32.exe_4032]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32\cpblkInt32.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b05780.exe_5010]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780\b05780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[swap.exe_2728]
+RelativePath=JIT\CodeGenBringUpTests\Swap\Swap.exe
+WorkingDir=JIT\CodeGenBringUpTests\Swap
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldvirtftnsideeffect.exe_2834]
+RelativePath=JIT\Directed\coverage\importer\ldvirtftnsideeffect\ldvirtftnsideeffect.exe
+WorkingDir=JIT\Directed\coverage\importer\ldvirtftnsideeffect
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort9.exe_344]
+RelativePath=CoreMangLib\cti\system\array\ArraySort9\ArraySort9.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryctor5.exe_498]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5\DictionaryCtor5.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_u4_u1.exe_3321]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1\ldc_conv_ovf_u4_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionarykeycollectionenumeratorcurrent.exe_570]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent\DictionaryKeyCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeshortinlinei.exe_1910]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI\OperandTypeShortInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread17.exe_102]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[b434481_genericrecurinit.exe_5796]
+RelativePath=Loader\classloader\regressions\434481\b434481_GenericRecurInit\b434481_GenericRecurInit.exe
+WorkingDir=Loader\classloader\regressions\434481\b434481_GenericRecurInit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16386.exe_5519]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386\b16386.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[randomnextbytes.exe_1606]
+RelativePath=CoreMangLib\cti\system\random\RandomNextBytes\RandomNextBytes.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextBytes
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dblsub.exe_2633]
+RelativePath=JIT\CodeGenBringUpTests\DblSub\DblSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathceiling.exe_1483]
+RelativePath=CoreMangLib\cti\system\math\MathCeiling\MathCeiling.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCeiling
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ge1.exe_2672]
+RelativePath=JIT\CodeGenBringUpTests\Ge1\Ge1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ge1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteequals1.exe_2127]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals1\SByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraygetvalue2b.exe_291]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2b\ArrayGetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convr8a_cs_d.exe_4044]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_d\convr8a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcastclass_catch_neg.exe_3757]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg\_il_relcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25468.exe_4902]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468\b25468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_4.exe_785]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_4\ConvertToInt16_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pointerexpr1.exe_3492]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1\pointerexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static_passing_struct01.exe_3285]
+RelativePath=JIT\Generics\Parameters\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpfillarray.exe_2660]
+RelativePath=JIT\CodeGenBringUpTests\FPFillArray\FPFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPFillArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte9.exe_833]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte9\ConvertToSByte9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[memorystreamctor4.exe_1440]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4\MemoryStreamCtor4.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionisreadonly.exe_593]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly\ICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopi_popi_popi.exe_1929]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi\StackBehaviourPopi_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathabs2.exe_1474]
+RelativePath=CoreMangLib\cti\system\math\MathAbs2\MathAbs2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reliface2.exe_3743]
+RelativePath=JIT\Methodical\casts\iface\_il_reliface2\_il_reliface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_reliface2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reltest_2c.exe_4586]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2c\_il_reltest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringtrim4.exe_2247]
+RelativePath=CoreMangLib\cti\system\string\StringTrim4\StringTrim4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test72162.exe_5871]
+RelativePath=Regressions\coreclr\72162\Test72162\Test72162.exe
+WorkingDir=Regressions\coreclr\72162\Test72162
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b73207.exe_5398]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207\b73207.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgmuldiv.exe_4176]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv\_speed_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathabs1.exe_1473]
+RelativePath=CoreMangLib\cti\system\math\MathAbs1\MathAbs1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess1_cs_r.exe_3076]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_r\straccess1_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletodouble.exe_383]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble\BooleanIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectionissynchronized.exe_507]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized\DictionaryICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b22521.exe_5714]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521\b22521.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structlayoutattributesize.exe_2117]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize\StructLayoutAttributeSize.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm32_r.exe_4442]
+RelativePath=JIT\Methodical\NaN\arithm32_r\arithm32_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshal.exe_5821]
+RelativePath=Regressions\common\Marshal\Marshal.exe
+WorkingDir=Regressions\common\Marshal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumiconvertibletouint32.exe_1080]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32\EnumIConvertibleToUint32.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b80737.exe_5651]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737\b80737.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread13.exe_128]
+RelativePath=baseservices\threading\generics\threadstart\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[listforeach.exe_629]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListForEach\ListForEach.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListForEach
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidequals2_cti.exe_1268]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2_cti\GuidEquals2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcsbox.exe_3594]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbox\_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesret.exe_1841]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet\OpCodesRet.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodeslocalloc.exe_1816]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc\OpCodesLocalloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b48929.exe_5237]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929\b48929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14368.exe_5705]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368\b14368.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackctor1.exe_678]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor1\StackCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-finally-struct02.exe_48]
+RelativePath=baseservices\exceptions\generics\try-finally-struct02\try-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nanadd_cs_do.exe_4481]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_do\r8NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[constructorinfoconstructorname.exe_1642]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName\ConstructorInfoConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_sub_i.exe_3346]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i\ldc_sub_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91859.exe_5461]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859\b91859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b108366.exe_5632]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366\b108366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgjumps.exe_4601]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumps\_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumps
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relsuperlong.exe_4133]
+RelativePath=JIT\Methodical\int64\superlong\_il_relsuperlong\_il_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_relsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[invalidoperationexceptionctor2.exe_1388]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2\InvalidOperationExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv2_10623.exe_5598]
+RelativePath=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623\DevDiv2_10623.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli_fld.exe_3895]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld\_il_reli_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow3.exe_5822]
+RelativePath=Regressions\common\pow3\pow3.exe
+WorkingDir=Regressions\common\pow3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_11.exe_809]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_11\ConvertToInt64_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b415164.exe_5545]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164\b415164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_r4.exe_1792]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4\OpCodesLdind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgarray.exe_3663]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgarray\_il_dbgarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgarray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[properties.exe_5765]
+RelativePath=Loader\binding\assemblies\basicapi\assemblynamector\properties\properties.exe
+WorkingDir=Loader\binding\assemblies\basicapi\assemblynamector\properties
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[caninline_d.exe_3504]
+RelativePath=JIT\jit64\opt\inl\caninline_d\caninline_d.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributeusageattributeallowmultiple.exe_366]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple\AttributeUsageAttributeAllowMultiple.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuetoarray.exe_670]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueToArray\QueueToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueToArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[initblk.exe_2978]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\initblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b58360.exe_5300]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360\b58360.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmax2.exe_1495]
+RelativePath=CoreMangLib\cti\system\math\MathMax2\MathMax2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbytegethashcode.exe_2129]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteGetHashCode\SByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ienumeratorcurrent.exe_701]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread28.exe_113]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread28
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[instrcnt1.exe_4771]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iequalitycomparerequals.exe_602]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals\IEqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rels_ldfld_mul.exe_4126]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul\_speed_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64_do.exe_3037]
+RelativePath=JIT\Directed\shift\int64_do\int64_do.exe
+WorkingDir=JIT\Directed\shift\int64_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40725.exe_5080]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725\b40725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listgetrange.exe_631]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetRange\ListGetRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetRange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[valuetype_d.exe_4510]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_d\valuetype_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributeshassecurity.exe_1976]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity\MethodAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dbldiv.exe_2625]
+RelativePath=JIT\CodeGenBringUpTests\DblDiv\DblDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30799.exe_4957]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799\b30799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret1_3.exe_3414]
+RelativePath=JIT\jit64\gc\misc\structret1_3\structret1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesstatic.exe_1970]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic\FieldAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathgetdirectoryname.exe_1448]
+RelativePath=CoreMangLib\cti\system\io\path\pathgetdirectoryname\pathgetdirectoryname.exe
+WorkingDir=CoreMangLib\cti\system\io\path\pathgetdirectoryname
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[callingconventionsstandard.exe_1640]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard\CallingConventionsStandard.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[co9600ctor.exe_251]
+RelativePath=CoreMangLib\components\stopwatch\Co9600Ctor\Co9600Ctor.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9600Ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b64560.exe_5344]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560\b64560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rels_ldfld_mulovf.exe_4109]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mulovf\_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4rem_cs_d.exe_3833]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_d\i4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalminvalue.exe_994]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinValue\DecimalMinValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_c_initblk.exe_3326]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk\ldc_c_initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charislower2.exe_452]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower2\CharIsLower2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgdeep_inst.exe_4551]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_inst\_il_dbgdeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_inst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33131.exe_5198]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131\b33131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblmulconst.exe_2629]
+RelativePath=JIT\CodeGenBringUpTests\DblMulConst\DblMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMulConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30864.exe_4960]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864\b30864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[typeattributesrtspecialname.exe_2039]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName\TypeAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint1615.exe_879]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1615\ConvertToUInt1615.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1615
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[argumentnullexceptionctor1.exe_258]
+RelativePath=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1\ArgumentNullExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_passing_struct01.exe_3259]
+RelativePath=JIT\Generics\Locals\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathtanh.exe_1531]
+RelativePath=CoreMangLib\cti\system\math\MathTanh\MathTanh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTanh
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullabletostring.exe_1570]
+RelativePath=CoreMangLib\cti\system\nullable\NullableToString\NullableToString.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosingle15.exe_837]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle15\ConvertToSingle15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6416.exe_918]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6416\ConvertToUInt6416.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6416
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reldeep2.exe_4229]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep2\_il_reldeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40380.exe_5075]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380\b40380.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listilistinsert.exe_641]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListInsert\ListIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListInsert
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16_d.exe_3024]
+RelativePath=JIT\Directed\shift\int16_d\int16_d.exe
+WorkingDir=JIT\Directed\shift\int16_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uintptrctor_voidptr.exe_2535]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr\UIntPtrCtor_VoidPtr.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31763.exe_4971]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763\b31763.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[char_cs_d.exe_4352]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_d\char_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30586.exe_5039]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586\b30586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singlereffield.exe_4030]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField\singleRefField.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp5_1.exe_3407]
+RelativePath=JIT\jit64\gc\misc\structfp5_1\structfp5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp5_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt1_cs_do.exe_3162]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_do\vt1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringconcat1.exe_2190]
+RelativePath=CoreMangLib\cti\system\string\StringConcat1\StringConcat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefanyval.exe_4715]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relrefanyval\_il_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relrefanyval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalctor5.exe_983]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor5\DecimalCtor5.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring27.exe_859]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString27\ConvertToString27.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString27
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b25739.exe_4908]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739\b25739.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41149.exe_5085]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149\b41149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockeddecrement1.exe_2373]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1\InterlockedDecrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[jtruelefp.exe_2691]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeFP\JTrueLeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuecollgenericicolladd.exe_566]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd\ValueCollGenericICollAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unmanagedtype.exe_2119]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType\UnmanagedType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[debuggingmodesignoresymbolstoresequencepoints.exe_1038]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints\DebuggingModesIgnoreSymbolStoreSequencePoints.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgdeep.exe_4225]
+RelativePath=JIT\Methodical\Invoke\deep\_dbgdeep\_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_dbgdeep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress1_do.exe_3457]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_do\CgStress1_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+[b16896.exe_4888]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896\b16896.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubleequals2.exe_1049]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals2\DoubleEquals2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lcliimpl_il_d.exe_2880]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_d\lcliimpl_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pinnedobject.exe_2586]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedObject\PinnedObject.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedObject
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldtoken.exe_4316]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtoken\_il_relldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtoken
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrecurse_ep.exe_4557]
+RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep\_il_dbgrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalparse.exe_998]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse\DecimalParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefloc_i4.exe_3936]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4\_il_dbgrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint16_3.exe_784]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_3\ConvertToInt16_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldloc.exe_1799]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc\OpCodesLdloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesprefixref.exe_1835]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref\OpCodesPrefixref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesdeivce.exe_1404]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce\FileAttributesDeivce.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayclear.exe_275]
+RelativePath=CoreMangLib\cti\system\array\ArrayClear\ArrayClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringcompareordinal2.exe_2188]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal2\StringCompareOrdinal2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b45985.exe_5141]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985\b45985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b48350.exe_5160]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350\b48350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pulsenull.exe_173]
+RelativePath=baseservices\threading\monitor\pulse\PulseNull\PulseNull.exe
+WorkingDir=baseservices\threading\monitor\pulse\PulseNull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopi_popi.exe_1927]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi\StackBehaviourPopi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reltest_2a.exe_4584]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2a\_il_reltest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b13509.exe_4838]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509\b13509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[delegateequals1.exe_1028]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateEquals1\DelegateEquals1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[defaultmemberattributemembername.exe_1645]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName\DefaultMemberAttributeMemberName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingmethodexceptionmessage.exe_1549]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage\MissingMethodExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodeuint16.exe_2448]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt16\TypeCodeUInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesleave_s.exe_1815]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S\OpCodesLeave_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstfld.exe_1858]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld\OpCodesStfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[catch3_r.exe_2945]
+RelativePath=JIT\Directed\leave\catch3_r\catch3_r.exe
+WorkingDir=JIT\Directed\leave\catch3_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[versionctor4.exe_2548]
+RelativePath=CoreMangLib\cti\system\version\VersionCtor4\VersionCtor4.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b360587.exe_5733]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587\b360587.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeinlinebrtarget.exe_1896]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget\OperandTypeInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01.exe_3143]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletosingle.exe_1360]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle\Int64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01.exe_3149]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodedouble.exe_2439]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDouble\TypeCodeDouble.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[testoverrides.exe_4]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestOverrides\TestOverrides.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestOverrides
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinestring.exe_1904]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString\OperandTypeInlineString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct2.exe_3370]
+RelativePath=JIT\jit64\gc\misc\struct2\struct2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33388.exe_5203]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388\b33388.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64equals1.exe_1347]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals1\Int64Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59647.exe_5312]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647\b59647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26020.exe_4913]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020\b26020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fixedbufferattributector.exe_2070]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor\FixedBufferAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[add.exe_2975]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\Desktop\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_2970]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relvirtftn_t.exe_4257]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t\_il_relvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct01_instance.exe_3147]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance\struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10897.exe_4826]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897\b10897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraygetlowerbound.exe_286]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLowerBound\ArrayGetLowerBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLowerBound
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jaggedarr_cs_do.exe_4333]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test570.exe_5850]
+RelativePath=Regressions\coreclr\0570\Test570\Test570.exe
+WorkingDir=Regressions\coreclr\0570\Test570
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldnull.exe_3716]
+RelativePath=JIT\Methodical\casts\coverage\_il_relldnull\_il_relldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relldnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbglengthm2.exe_3619]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbglengthm2\_il_dbglengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglengthm2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefloc_r8.exe_3940]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8\_il_dbgrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lvnumcnt1.exe_4724]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46292.exe_5143]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292\b46292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b35455.exe_4787]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455\b35455.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b101147.exe_5438]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147\b101147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[asgadd1.exe_2607]
+RelativePath=JIT\CodeGenBringUpTests\AsgAdd1\AsgAdd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAdd1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filter1_r.exe_2947]
+RelativePath=JIT\Directed\leave\filter1_r\filter1_r.exe
+WorkingDir=JIT\Directed\leave\filter1_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalsubtract.exe_1003]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalSubtract\DecimalSubtract.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalSubtract
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcompat_v.exe_4572]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_v\_il_relcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_v
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[culturechangesecurity.exe_85]
+RelativePath=baseservices\threading\currentculture\CultureChangeSecurity\CultureChangeSecurity.exe
+WorkingDir=baseservices\threading\currentculture\CultureChangeSecurity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[specific_struct_static02.exe_3220]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static02\specific_struct_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[opcodesldc_i4_5.exe_1762]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5\OpCodesLdc_I4_5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletodecimal.exe_432]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDecimal\CharIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dynamictypes.exe_3290]
+RelativePath=JIT\Generics\Typeof\dynamicTypes\dynamicTypes.exe
+WorkingDir=JIT\Generics\Typeof\dynamicTypes
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldvirtftn.exe_1813]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn\OpCodesLdvirtftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64parse2.exe_2528]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse2\UInt64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relval_ctor_newobj.exe_4221]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj\_il_relval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72518.exe_5392]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518\b72518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[callorder.exe_2911]
+RelativePath=JIT\Directed\FaultHandlers\CallOrder\CallOrder\CallOrder.exe
+WorkingDir=JIT\Directed\FaultHandlers\CallOrder\CallOrder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletryparse.exe_2179]
+RelativePath=CoreMangLib\cti\system\single\SingleTryParse\SingleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesabstract.exe_1971]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract\MethodAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi_conv.exe_3867]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv\_il_dbgi_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b73921.exe_5401]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921\b73921.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletoint16.exe_2464]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16\UInt16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinemethod.exe_1900]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod\OperandTypeInlineMethod.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingmemberexceptionctor1.exe_1542]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1\MissingMemberExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodatetime.exe_745]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDateTime\ConvertToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[opcodesldind_u2.exe_1796]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2\OpCodesLdind_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ovfldiv2_il_r.exe_2887]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_r\ovfldiv2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b09452.exe_5034]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452\b09452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint642.exe_921]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt642\ConvertToUInt642.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt642
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayindexof3b.exe_307]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3b\ArrayIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[clscompliantattributector.exe_479]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor\CLSCompliantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[straccess3_cs_d.exe_3082]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_d\straccess3_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldloca.exe_1800]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca\OpCodesLdloca.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[asurt_99893.exe_2563]
+RelativePath=CoreMangLib\system\buffer\ASURT_99893\ASURT_99893.exe
+WorkingDir=CoreMangLib\system\buffer\ASURT_99893
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static-mixed.exe_5481]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed\static-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublearr_cs_d.exe_4328]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[missingmethodexceptionctor2.exe_1547]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2\MissingMethodExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[iconvertibletoint64.exe_1284]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64\IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interface_class01.exe_3268]
+RelativePath=JIT\Generics\MemberAccess\interface_class01\interface_class01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_i8_i4.exe_3314]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4\ldc_conv_ovf_i8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr8a_cs_r.exe_4046]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_r\convr8a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timeoutexceptionctor2.exe_2387]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2\TimeoutExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathcosh.exe_1485]
+RelativePath=CoreMangLib\cti\system\math\MathCosh\MathCosh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCosh
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgrecurseacc_d.exe_3452]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d\CGRecurseACC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b106272.exe_5555]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272\b106272.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b20217.exe_4893]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217\b20217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_10.exe_793]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_10\ConvertToInt32_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegategetinvocationlist1.exe_1030]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1\DelegateGetInvocationList1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b473131.exe_5593]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131\b473131.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interior_pointer.exe_3550]
+RelativePath=JIT\jit64\regress\ndpw\21015\interior_pointer\interior_pointer.exe
+WorkingDir=JIT\jit64\regress\ndpw\21015\interior_pointer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringiconvertibletouint32.exe_2218]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt32\StringIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b49318.exe_5171]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318\b49318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[multicastdelegatector.exe_1551]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCtor\MulticastDelegateCtor.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nesting.exe_2912]
+RelativePath=JIT\Directed\FaultHandlers\Nesting\Nesting\Nesting.exe
+WorkingDir=JIT\Directed\FaultHandlers\Nesting\Nesting
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+[float_no_op_cs_d.exe_2792]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_d\Float_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relhugedim.exe_4056]
+RelativePath=JIT\Methodical\int64\arrays\_il_relhugedim\_il_relhugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_relhugedim
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[regression_dev10_624201.exe_2565]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201\Regression_Dev10_624201.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b60142.exe_5323]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142\b60142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringchars.exe_2180]
+RelativePath=CoreMangLib\cti\system\string\StringChars\StringChars.exe
+WorkingDir=CoreMangLib\cti\system\string\StringChars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_10.exe_808]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_10\ConvertToInt64_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relgcarr.exe_3628]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relgcarr\_speed_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relgcarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartcast_2.exe_185]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_2\ThreadStartCast_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[marshal.exe_5844]
+RelativePath=Regressions\coreclr\0275\Marshal\Marshal.exe
+WorkingDir=Regressions\coreclr\0275\Marshal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[intarr_cs_d.exe_4420]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_d\intarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instancecalls.exe_2676]
+RelativePath=JIT\CodeGenBringUpTests\InstanceCalls\InstanceCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\InstanceCalls
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relcastclass_call.exe_3717]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_call\_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28522.exe_4939]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522\b28522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vectorforwarder.exe_5601]
+RelativePath=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder\VectorForwarder.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysetvalue1b.exe_325]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1b\ArraySetValue1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackctor2.exe_679]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor2\StackCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanctor4.exe_2395]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor4\TimeSpanCtor4.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryicollectionissynchronized2.exe_508]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2\DictionaryICollectionIsSynchronized2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b74939.exe_5405]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939\b74939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop4_cs_r.exe_3114]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_r\loop4_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b07341.exe_4821]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341\b07341.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31732.exe_4968]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732\b31732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91867.exe_5462]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867\b91867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow3_cs_ro.exe_2939]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_ro\pow3_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct05.exe_3250]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct05\struct05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_b400971b400971.exe_4790]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971\_b400971b400971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singlemaxvalue.exe_2160]
+RelativePath=CoreMangLib\cti\system\single\SingleMaxValue\SingleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[targetinvocationexceptionctor2.exe_2016]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2\TargetInvocationExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringsubstring1.exe_2239]
+RelativePath=CoreMangLib\cti\system\string\StringSubString1\StringSubString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariconvertibletotype.exe_439]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToType\CharIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stfldstatic2_il_r.exe_2893]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_r\stfldstatic2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[textinfotostring.exe_1225]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString\TextInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[creategeneric.exe_5745]
+RelativePath=JIT\SIMD\CreateGeneric\CreateGeneric.exe
+WorkingDir=JIT\SIMD\CreateGeneric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b54006.exe_5276]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006\b54006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret2_3.exe_3417]
+RelativePath=JIT\jit64\gc\misc\structret2_3\structret2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b53942a.exe_5269]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a\b53942a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[weakreferencector1_psc.exe_2556]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC\WeakReferenceCtor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14422.exe_4803]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422\b14422.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listinsertrange.exe_649]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListInsertRange\ListInsertRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListInsertRange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint3215.exe_897]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3215\ConvertToUInt3215.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3215
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b29583.exe_4951]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583\b29583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesinterface.exe_2030]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface\TypeAttributesInterface.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b46569.exe_5144]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569\b46569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackpeek.exe_682]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPeek\StackPeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPeek
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespantotaldays.exe_2411]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalDays\TimeSpanTotalDays.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalDays
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_reljumper.exe_4634]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumper\_speed_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumper
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i8div_cs_d.exe_3804]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_d\i8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b147816.exe_5474]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816\b147816.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_i4_i2.exe_3312]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2\ldc_conv_ovf_i4_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueeqfp.exe_2682]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqFP\JTrueEqFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartchar_1.exe_187]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_1\ThreadStartChar_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_relcast_throw.exe_3761]
+RelativePath=JIT\Methodical\casts\SEH\_relcast_throw\_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relcast_throw
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesfloat.exe_1192]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat\NumberStylesFloat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singletouint16.exe_2176]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt16\SingleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b602182.exe_4777]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182\b602182.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b80045.exe_5423]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045\b80045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class2_cs_ro.exe_3160]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_ro\class2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringienumerablegetenumerator.exe_2220]
+RelativePath=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator\StringIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend3.exe_2305]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3\StringBuilderAppend3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[parameterattributesnone.exe_2007]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone\ParameterAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_xor_op_cs_d.exe_2768]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_d\Bool_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relhan2.exe_4661]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan2\_speed_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bytetostring4.exe_422]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString4\ByteToString4.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b99219.exe_5675]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219\b99219.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratorcurrent.exe_573]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[loop1_cs_r.exe_3108]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_r\loop1_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartint_3.exe_208]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartInt_3\ThreadStartInt_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartInt_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_rellengthm2.exe_3622]
+RelativePath=JIT\Methodical\Arrays\misc\_il_rellengthm2\_il_rellengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_rellengthm2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletoint32.exe_2491]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32\UInt32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b69848.exe_5366]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848\b69848.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldftn_ret.exe_3475]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_ret\ldftn_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_ret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringiconvertibletobyte.exe_2211]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToByte\StringIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[keyvaluepairkey.exe_611]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey\KeyValuePairKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b147814_il.exe_5473]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il\b147814_il.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_u4_i.exe_3319]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i\ldc_conv_ovf_u4_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgtest1.exe_4215]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1\_speed_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b57516.exe_5296]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516\b57516.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttochar6.exe_741]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar6\ConvertToChar6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanmul_cs_r.exe_4470]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_r\r4NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relfr4.exe_4273]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr4\_il_relfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathexp.exe_1487]
+RelativePath=CoreMangLib\cti\system\math\MathExp\MathExp.exe
+WorkingDir=CoreMangLib\cti\system\math\MathExp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[notimplementedexceptionctor3.exe_1557]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3\NotImplementedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgaccum.exe_4669]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgaccum\_il_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin7.exe_1511]
+RelativePath=CoreMangLib\cti\system\math\MathMin7\MathMin7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictenumienumget_current.exe_537]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current\DictEnumIEnumget_Current.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletouint16.exe_1362]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16\Int64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[volatilelocal2.exe_4036]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2\volatileLocal2.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetchars1.exe_2279]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars1\EncodingGetChars1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartstring_1.exe_228]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_1\ThreadStartString_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[try-catch07.exe_44]
+RelativePath=baseservices\exceptions\generics\try-catch07\try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimekindlocal.exe_966]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal\DateTimeKindLocal.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[safehandledangerousgethandle_psc.exe_2105]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC\SafeHandleDangerousGetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct01.exe_3152]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_u1.exe_1781]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1\OpCodesLdelem_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16tostring1.exe_2476]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString1\UInt16ToString1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_ro.exe_4411]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetbytes4.exe_2274]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4\EncodingGetBytes4.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35366.exe_5214]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366\b35366.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread05.exe_90]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[listremoveat.exe_653]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt\ListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtruegefp.exe_2685]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeFP\JTrueGeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91917.exe_5463]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917\b91917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[floatinfinitiestoint_do.exe_4513]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_do\FloatInfinitiesToInt_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgaddsub.exe_4145]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgaddsub\_il_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgaddsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_u8.exe_1735]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8\OpCodesConv_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanduration.exe_2396]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanDuration\TimeSpanDuration.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanDuration
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryctor6.exe_499]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6\DictionaryCtor6.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithmeticexceptionctor1.exe_263]
+RelativePath=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1\ArithmeticExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41126.exe_5083]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126\b41126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[array.exe_4730]
+RelativePath=JIT\opt\Inline\array\array.exe
+WorkingDir=JIT\opt\Inline\array
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_f8.exe_3919]
+RelativePath=JIT\Methodical\explicit\basic\refarg_f8\refarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_f8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryctor1.exe_494]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1\DictionaryCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[github_1323.exe_5624]
+RelativePath=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323\GitHub_1323.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[randomnextdouble.exe_1607]
+RelativePath=CoreMangLib\cti\system\random\RandomNextDouble\RandomNextDouble.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodeequals2.exe_1654]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2\OpCodeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b42387.exe_5099]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387\b42387.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_oreltailjump_cs.exe_3679]
+RelativePath=JIT\Methodical\Boxing\misc\_oreltailjump_cs\_oreltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_oreltailjump_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44723.exe_5124]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723\b44723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[invalidcastexceptionctor3.exe_1386]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3\InvalidCastExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_ckfinite_r8.exe_3310]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8\ldc_ckfinite_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b309576.exe_5729]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576\b309576.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30126.exe_4953]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126\b30126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedadd2.exe_2368]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2\InterlockedAdd2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstelem_i.exe_1850]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I\OpCodesStelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[baseclass05.exe_3237]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass05\baseclass05.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initblk.exe_3013]
+RelativePath=JIT\Directed\PREFIX\volatile\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\initblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[eventargsctor.exe_1089]
+RelativePath=CoreMangLib\cti\system\eventargs\EventArgsctor\EventArgsctor.exe
+WorkingDir=CoreMangLib\cti\system\eventargs\EventArgsctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13691.exe_5695]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691\b13691.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcalli.exe_4604]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgcalli\_il_dbgcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgcalli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_876169_r.exe_5605]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r\DevDiv_876169_r.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b61028.exe_5327]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028\b61028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gethashcode.exe_349]
+RelativePath=CoreMangLib\cti\system\attribute\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13452.exe_5516]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452\b13452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimemillisecond.exe_942]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMillisecond\DateTimeMillisecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMillisecond
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletouint32.exe_2497]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32\UInt32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax8.exe_1501]
+RelativePath=CoreMangLib\cti\system\math\MathMax8\MathMax8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuegetenumerator.exe_668]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator\QueueGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraylength.exe_318]
+RelativePath=CoreMangLib\cti\system\array\ArrayLength\ArrayLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLength
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b71155.exe_5381]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155\b71155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32iconvertibletosingle.exe_1304]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSingle\Int32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dllnotfoundexceptionctor3.exe_1045]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3\DllNotFoundExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline.exe_4739]
+RelativePath=JIT\opt\Inline\inline\inline.exe
+WorkingDir=JIT\opt\Inline\inline
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fault.exe_2909]
+RelativePath=JIT\Directed\ExcepFilters\fault\fault\fault.exe
+WorkingDir=JIT\Directed\ExcepFilters\fault\fault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;REL_PASS;ASSERT_ONLY
+[_il_relrotate_i4.exe_4015]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_i4\_il_relrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanmaxvalue.exe_2402]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMaxValue\TimeSpanMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[volatilstind.exe_2842]
+RelativePath=JIT\Directed\coverage\importer\volatilstind\volatilstind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilstind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpaddconst.exe_2644]
+RelativePath=JIT\CodeGenBringUpTests\FPAddConst\FPAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAddConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgmuldiv.exe_4144]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgmuldiv\_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetmaxbytecount.exe_2285]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount\EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[simpleexpr3.exe_3497]
+RelativePath=JIT\jit64\opt\cse\simpleexpr3\simpleexpr3.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dblavg2.exe_2620]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg2\DblAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[indexoutofrangeexceptionctor3.exe_1289]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3\IndexOutOfRangeExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefarg_c.exe_3925]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_c\_il_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp2_2.exe_3402]
+RelativePath=JIT\jit64\gc\misc\structfp2_2\structfp2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32_d.exe_3058]
+RelativePath=JIT\Directed\shift\uint32_d\uint32_d.exe
+WorkingDir=JIT\Directed\shift\uint32_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeparse1.exe_946]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse1\DateTimeParse1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[_il_dbghugedim.exe_4053]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbghugedim\_il_dbghugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbghugedim
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[icomparercompare.exe_693]
+RelativePath=CoreMangLib\cti\system\collections\icomparer\IComparerCompare\IComparerCompare.exe
+WorkingDir=CoreMangLib\cti\system\collections\icomparer\IComparerCompare
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class07.exe_3132]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07\class07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_qsort1.exe_3885]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1\_il_dbgu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgthisnull.exe_4311]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull\_speed_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycopy2.exe_278]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy2\ArrayCopy2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldobj_u2.exe_4703]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2\_il_relldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singlenan.exe_2162]
+RelativePath=CoreMangLib\cti\system\single\SingleNaN\SingleNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleNaN
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lvnumcnt0.exe_4772]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt0\LVNumCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathlog.exe_1490]
+RelativePath=CoreMangLib\cti\system\math\MathLog\MathLog.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16238.exe_4872]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238\b16238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbrtrue.exe_1689]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue\OpCodesBrtrue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[valuecollgenericicollcontains.exe_568]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains\ValueCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05740.exe_5008]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740\b05740.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_c_switch.exe_3329]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch\ldc_c_switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41002.exe_5081]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002\b41002.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[366085.exe_72]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\366085\366085\366085.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\366085\366085
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listreverse2.exe_656]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse2\ListReverse2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlockedadd1.exe_2367]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1\InterlockedAdd1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttoint64_3.exe_814]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_3\ConvertToInt64_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimestylesallowwhitespaces.exe_1167]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces\DateTimeStylesAllowWhiteSpaces.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[seq_funcptr_val_d.exe_3965]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d\seq_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b13586.exe_4841]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586\b13586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldobj_u2.exe_4697]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2\_il_dbgldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttobyte4.exe_728]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte4\ConvertToByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relldsfld_mul.exe_4166]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mul\_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b91855.exe_5460]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855\b91855.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[classarr_cs_r.exe_4398]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32tostring4.exe_1318]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString4\Int32ToString4.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegateparamcalltarget.exe_4591]
+RelativePath=JIT\Methodical\tailcall_v4\delegateParamCallTarget\delegateParamCallTarget.exe
+WorkingDir=JIT\Methodical\tailcall_v4\delegateParamCallTarget
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typegettypefromhandle.exe_2425]
+RelativePath=CoreMangLib\cti\system\type\TypeGetTypeFromHandle\TypeGetTypeFromHandle.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetTypeFromHandle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01_static.exe_3145]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14443.exe_4805]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443\b14443.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doubletryparse.exe_1075]
+RelativePath=CoreMangLib\cti\system\double\DoubleTryParse\DoubleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mul.exe_5755]
+RelativePath=JIT\SIMD\Mul\Mul.exe
+WorkingDir=JIT\SIMD\Mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparercompare2.exe_2249]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2\StringComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread07.exe_92]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[disabletransparencyenforcement.exe_5819]
+RelativePath=Regressions\common\DisableTransparencyEnforcement\DisableTransparencyEnforcement.exe
+WorkingDir=Regressions\common\DisableTransparencyEnforcement
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vt1_il_d.exe_3165]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_d\vt1_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[call_instance01_r.exe_3186]
+RelativePath=JIT\Generics\Constraints\Call_instance01_r\Call_instance01_r.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbge_un.exe_1668]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un\OpCodesBge_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryadd.exe_488]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd\DictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b51870.exe_5258]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870\b51870.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise4_cs_ro.exe_3785]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_ro\precise4_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30792.exe_4956]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792\b30792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryvalue3.exe_527]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3\DictionaryIDictionaryValue3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsmethod.exe_360]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod\AttributeTargetsMethod.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopi.exe_1925]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi\StackBehaviourPopi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test.exe_3571]
+RelativePath=JIT\jit64\regress\vsw\543229\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\543229\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3573]
+RelativePath=JIT\jit64\regress\vsw\575343\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3572]
+RelativePath=JIT\jit64\regress\vsw\549880\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\549880\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuecollectionenumeratorienumeratorcurrent.exe_583]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[keycollectioncopyto.exe_546]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo\KeyCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[field_tests.exe_3012]
+RelativePath=JIT\Directed\PREFIX\volatile\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\field_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b608198.exe_5566]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198\b608198.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bytetostring2.exe_420]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString2\ByteToString2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16iconvertibletoint64.exe_1331]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64\Int16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble8.exe_774]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble8\ConvertToDouble8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[packingsizesize1.exe_1916]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1\PackingSizeSize1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringequals2.exe_2203]
+RelativePath=CoreMangLib\cti\system\string\StringEquals2\StringEquals2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32tostring1.exe_2504]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString1\UInt32ToString1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcs_long.exe_4059]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_long\_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[stringinfoctor1.exe_1206]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1\StringInfoCtor1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend9.exe_2311]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9\StringBuilderAppend9.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareinfoindexof2.exe_1120]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2\CompareInfoIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesdiv.exe_1738]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv\OpCodesDiv.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[funclet.exe_3361]
+RelativePath=JIT\jit64\gc\misc\funclet\funclet.exe
+WorkingDir=JIT\jit64\gc\misc\funclet
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[opcodesstarg.exe_1847]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg\OpCodesStarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[castable.exe_2597]
+RelativePath=Interop\ICastable\Castable\Castable.exe
+WorkingDir=Interop\ICastable\Castable
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;UNWIND
+[_speed_relisinst_newobj.exe_3740]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_newobj\_speed_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesspecialname.exe_1987]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName\MethodAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgldfld_mul.exe_4140]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mul\_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[argumentoutofrangeexceptionmessage.exe_262]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage\ArgumentOutOfRangeExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b85314.exe_5666]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314\b85314.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrotate_u2.exe_4016]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_u2\_il_relrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b65087.exe_5345]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087\b65087.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rotate.exe_2721]
+RelativePath=JIT\CodeGenBringUpTests\Rotate\Rotate.exe
+WorkingDir=JIT\CodeGenBringUpTests\Rotate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b85564.exe_5670]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564\b85564.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59477.exe_5308]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477\b59477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryformat.exe_1235]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat\UnicodeCategoryFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[packingsize4.exe_1915]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4\PackingSize4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84971.exe_5435]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971\b84971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_dbgexplicit4.exe_3980]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit4\_opt_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ienumerablegetenumerator.exe_600]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[catch2_r.exe_2943]
+RelativePath=JIT\Directed\leave\catch2_r\catch2_r.exe
+WorkingDir=JIT\Directed\leave\catch2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relexplicit8.exe_4000]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit8\_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stfldstatic1_il_r.exe_2891]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltouint16.exe_1020]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt16\DecimalToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathdirectoryseparatorchar_psc.exe_1447]
+RelativePath=CoreMangLib\cti\system\io\path\PathDirectorySeparatorChar_PSC\PathDirectorySeparatorChar_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathDirectorySeparatorChar_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chaos55915408cs.exe_3203]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs\chaos55915408cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[static-object.exe_5482]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object\static-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartoperations_2.exe_220]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations_2\ThreadStartOperations_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b35344.exe_5210]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344\b35344.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relisinst_ldarg.exe_3738]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg\_speed_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgmuldiv.exe_4152]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgmuldiv\_il_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgmuldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listctor1.exe_626]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor1\ListCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpdivconst.exe_2658]
+RelativePath=JIT\CodeGenBringUpTests\FPDivConst\FPDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDivConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reldd.exe_4616]
+RelativePath=JIT\Methodical\VT\callconv\_il_reldd\_il_reldd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reldd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b13738.exe_4842]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738\b13738.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread22.exe_137]
+RelativePath=baseservices\threading\generics\threadstart\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread22
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttouint648.exe_927]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt648\ConvertToUInt648.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt648
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[seq_funcptr_gc_d.exe_3963]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d\seq_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetcharcount2.exe_2278]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2\EncodingGetCharCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ioexceptionctor2.exe_1436]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2\IOExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b178119.exe_5493]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119\b178119.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[sysinfo_il.exe_2969]
+RelativePath=JIT\Directed\pinvoke\sysinfo_il\sysinfo_il.exe
+WorkingDir=JIT\Directed\pinvoke\sysinfo_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b70354.exe_5370]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354\b70354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b82715.exe_5429]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715\b82715.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[specific_struct_instance01.exe_3217]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance01\specific_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrres.exe_3615]
+RelativePath=JIT\Methodical\Arrays\misc\arrres\arrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\arrres
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encoderctor.exe_2260]
+RelativePath=CoreMangLib\cti\system\text\encoder\EncoderCtor\EncoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\encoder\EncoderCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgldfld_mulovf.exe_4173]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf\_speed_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgisinst_catch_neg.exe_3755]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg\_il_dbgisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04306.exe_4990]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306\b04306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[runtimefieldhandlegethashcode.exe_2121]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode\RuntimeFieldHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test.exe_5790]
+RelativePath=Loader\classloader\regressions\101904\test\test.exe
+WorkingDir=Loader\classloader\regressions\101904\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[general_struct_static01.exe_3212]
+RelativePath=JIT\Generics\Exceptions\general_struct_static01\general_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[and1.exe_2603]
+RelativePath=JIT\CodeGenBringUpTests\And1\And1.exe
+WorkingDir=JIT\CodeGenBringUpTests\And1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfogethashcode.exe_1209]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode\StringInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[flowcontrolbranch.exe_1646]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch\FlowControlBranch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingmemberexceptionmessage.exe_1545]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage\MissingMemberExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_sub_ovf_i1.exe_3347]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1\ldc_sub_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_and_op_cs_ro.exe_2791]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_ro\Float_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[textelementenumeratormovenext.exe_1219]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext\TextElementEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublemaxvalue.exe_1065]
+RelativePath=CoreMangLib\cti\system\double\DoubleMaxValue\DoubleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b30125.exe_4952]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125\b30125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareinfocompare2.exe_1118]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2\CompareInfoCompare2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldobj_i.exe_4699]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I\_il_relldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgexplicit4.exe_3970]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit4\_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16500.exe_4881]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500\b16500.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b42929.exe_5102]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929\b42929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[multicastdelegategetinvocationlist.exe_1554]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList\MulticastDelegateGetInvocationList.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpvar.exe_2670]
+RelativePath=JIT\CodeGenBringUpTests\FPVar\FPVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPVar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28077.exe_5719]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077\b28077.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstatic05.exe_5876]
+RelativePath=Threading\ThreadStatics\ThreadStatic05\ThreadStatic05.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relnative.exe_4537]
+RelativePath=JIT\Methodical\refany\_il_relnative\_il_relnative.exe
+WorkingDir=JIT\Methodical\refany\_il_relnative
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[notsupportedexceptionctor1.exe_1558]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1\NotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrtopointer.exe_2539]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToPointer\UIntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToPointer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[predicateinvoke.exe_1600]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateInvoke\PredicateInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[singletoint16.exe_2171]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt16\SingleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14366.exe_5704]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366\b14366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread18.exe_103]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[opcodesadd_ovf.exe_1660]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf\OpCodesAdd_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopi_popr4.exe_1930]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4\StackBehaviourPopi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodestackbehaviourpush.exe_1880]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush\OpCodeStackBehaviourPush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyte_cs_r.exe_4378]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r\sbyte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32maxvalue.exe_2499]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MaxValue\UInt32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegatecombine1.exe_1026]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombine1\DelegateCombine1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombine1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributector1.exe_2057]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1\AttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[main.exe_5799]
+RelativePath=Loader\classloader\regressions\vsw111021\main\main.exe
+WorkingDir=Loader\classloader\regressions\vsw111021\main
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05623.exe_5507]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623\b05623.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ioexceptionctor1.exe_1435]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1\IOExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgenum_cs.exe_3669]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_cs\_dbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributespublic.exe_1967]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic\FieldAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_ret_ref.exe_3345]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref\ldc_ret_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u1.exe_1719]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1\OpCodesConv_Ovf_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[transitive_instance01.exe_3191]
+RelativePath=JIT\Generics\Constraints\transitive_instance01\transitive_instance01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm64_cs_d.exe_4444]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_d\arithm64_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b53958.exe_5271]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958\b53958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46641.exe_5148]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641\b46641.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgexplicit2.exe_3968]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit2\_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalsizeof2_psc.exe_2091]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC\MarshalSizeOf2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint645.exe_924]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt645\ConvertToUInt645.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt645
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u8rem_cs_d.exe_3857]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_d\u8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[132977.exe_3548]
+RelativePath=JIT\jit64\regress\ddb\132977\132977\132977.exe
+WorkingDir=JIT\jit64\regress\ddb\132977\132977
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesisinst.exe_1745]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst\OpCodesIsinst.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributespublic.exe_2038]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic\TypeAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleaniconvertibletosingle.exe_388]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle\BooleanIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b309555.exe_5534]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555\b309555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4_cs_d.exe_3635]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_d\i4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bytemaxvalue.exe_415]
+RelativePath=CoreMangLib\cti\system\byte\ByteMaxValue\ByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpsmall.exe_2667]
+RelativePath=JIT\CodeGenBringUpTests\FPSmall\FPSmall.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSmall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimedate.exe_936]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeDate\DateTimeDate.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeDate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldmul_cs_d.exe_2868]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_d\lclfldmul_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldloc_3.exe_1805]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3\OpCodesLdloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b392262.exe_4789]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262\b392262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint6415.exe_917]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6415\ConvertToUInt6415.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6415
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev10_615402.exe_4598]
+RelativePath=JIT\Methodical\varargs\misc\Dev10_615402\Dev10_615402.exe
+WorkingDir=JIT\Methodical\varargs\misc\Dev10_615402
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_opt_relexplicit7.exe_3991]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit7\_opt_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalasattributemarshalcookie.exe_2095]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie\MarshalAsAttributeMarshalCookie.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guidtobytearray.exe_1272]
+RelativePath=CoreMangLib\cti\system\guid\GuidToByteArray\GuidToByteArray.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToByteArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[actioninvoke.exe_254]
+RelativePath=CoreMangLib\cti\system\action\ActionInvoke\ActionInvoke.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[div_opt.exe_3520]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_opt\div_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b45956.exe_5139]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956\b45956.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedexchange7.exe_2378]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7\InterlockedExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_r8_i8.exe_3318]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8\ldc_conv_ovf_r8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[systemcollgenericicollclear.exe_551]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear\SystemCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4flat_cs_ro.exe_3650]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_ro\r4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test0829.exe_5857]
+RelativePath=Regressions\coreclr\0829\Test0829\Test0829.exe
+WorkingDir=Regressions\coreclr\0829\Test0829
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b46576.exe_5145]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576\b46576.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b04257.exe_4989]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257\b04257.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[rem_opt.exe_3526]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt\rem_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3263
+[b15617.exe_5518]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617\b15617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletodouble.exe_1328]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble\Int16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[native.exe_4525]
+RelativePath=JIT\Methodical\refany\native\native.exe
+WorkingDir=JIT\Methodical\refany\native
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71722.exe_5385]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722\b71722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcastclass_catch_neg.exe_3752]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg\_il_dbgcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvtret.exe_4612]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret\_il_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b02062.exe_4984]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062\b02062.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794631_r.exe_5613]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r\DevDiv_794631_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_6.exe_802]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_6\ConvertToInt32_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8div_cs_r.exe_3819]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_r\r8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jmp1.exe_2679]
+RelativePath=JIT\CodeGenBringUpTests\Jmp1\Jmp1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Jmp1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[zeroinit_il_d.exe_2906]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_d\zeroinit_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend6.exe_2308]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6\StringBuilderAppend6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listilistitem.exe_644]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListItem\ListIListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListItem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cpblk.exe_3009]
+RelativePath=JIT\Directed\PREFIX\volatile\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\cpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring29.exe_861]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString29\ConvertToString29.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString29
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16tostring3.exe_2478]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString3\UInt16ToString3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesmul_ovf_un.exe_1820]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un\OpCodesMul_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[timespanminvalue.exe_2403]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMinValue\TimeSpanMinValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetbytecount1.exe_2351]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1\UTF8EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderappend16.exe_2300]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16\StringBuilderAppend16.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpconvf2f.exe_2652]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2F\FPConvF2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2F
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgobjref.exe_4272]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgobjref\_il_dbgobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgobjref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_equalnull_class01.exe_3223]
+RelativePath=JIT\Generics\Fields\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b39455.exe_5065]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455\b39455.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[flowcontrolcond_branch.exe_1648]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch\FlowControlCond_Branch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nansub_cs_ro.exe_4479]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_ro\r4NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[icollectioncopyto.exe_689]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring26.exe_858]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString26\ConvertToString26.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString26
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletobyte.exe_2511]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte\UInt64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesbne_un.exe_1682]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un\OpCodesBne_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fielda_tests.exe_2976]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\fielda_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b51565.exe_5256]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565\b51565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleaniconvertibletoint64.exe_386]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64\BooleanIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublearr_cs_r.exe_4330]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[b43958.exe_5114]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958\b43958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794115_do.exe_5608]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do\DevDiv_794115_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletobyte.exe_2459]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte\UInt16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b11878.exe_5689]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878\b11878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44983.exe_5129]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983\b44983.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgconvovf_i8_u.exe_3864]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u\_il_dbgconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31423.exe_5184]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423\b31423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b18049.exe_5521]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049\b18049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcs2.exe_3600]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs2\_speed_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[eventattributesrtspecialname.exe_1952]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName\EventAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structfp3_1.exe_3405]
+RelativePath=JIT\jit64\gc\misc\structfp3_1\structfp3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp3_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vbil.exe_3435]
+RelativePath=JIT\jit64\gc\misc\vbil\vbil.exe
+WorkingDir=JIT\jit64\gc\misc\vbil
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetcharcount1.exe_2277]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1\EncodingGetCharCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rellcs.exe_3591]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[b75944.exe_5411]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944\b75944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltodecimal.exe_1009]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDecimal\DecimalToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesadd_ovf_un.exe_1661]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un\OpCodesAdd_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimector6.exe_934]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor6\DateTimeCtor6.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b22290.exe_4896]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290\b22290.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli_prop.exe_3898]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop\_il_reli_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bool_xor_op_cs_do.exe_2769]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_do\Bool_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b06464.exe_5015]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464\b06464.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3559]
+RelativePath=JIT\jit64\regress\vsw\373472\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\373472\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[test.exe_3556]
+RelativePath=JIT\jit64\regress\vsw\329169\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\329169\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3555]
+RelativePath=JIT\jit64\regress\vsw\266693\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\266693\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3554]
+RelativePath=JIT\jit64\regress\vsw\153682\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\153682\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3553]
+RelativePath=JIT\jit64\regress\vsw\102974\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102974\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3552]
+RelativePath=JIT\jit64\regress\vsw\102964\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102964\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_3551]
+RelativePath=JIT\jit64\regress\phoenix\62322\test\test.exe
+WorkingDir=JIT\jit64\regress\phoenix\62322\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread20.exe_105]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread20
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[general_struct_instance01.exe_3211]
+RelativePath=JIT\Generics\Exceptions\general_struct_instance01\general_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_instance01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbytecompareto2.exe_2126]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteCompareTo2\SByteCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteCompareTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[divref.exe_2638]
+RelativePath=JIT\CodeGenBringUpTests\divref\divref.exe
+WorkingDir=JIT\CodeGenBringUpTests\divref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpopi_pop1.exe_1926]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1\StackBehaviourPopi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblynameflagsnone.exe_1632]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone\AssemblyNameFlagsNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter007.exe_59]
+RelativePath=baseservices\exceptions\generics\TypeParameter007\TypeParameter007.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter007
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lvrefcnt1.exe_4725]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbggcarr.exe_3616]
+RelativePath=JIT\Methodical\Arrays\misc\_dbggcarr\_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbggcarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread09.exe_124]
+RelativePath=baseservices\threading\generics\threadstart\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread09
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[interlockedaddint_3.exe_152]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_3\InterlockedAddInt_3.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b79418.exe_5421]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418\b79418.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bugwithavx.exe_5743]
+RelativePath=JIT\SIMD\BugWithAVX\BugWithAVX.exe
+WorkingDir=JIT\SIMD\BugWithAVX
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fieldattributesassembly.exe_1954]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly\FieldAttributesAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05214.exe_4999]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214\b05214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareexchangetclass_2.exe_163]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_2\CompareExchangeTClass_2.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTClass_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_relldobj_i8.exe_4700]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8\_il_relldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess4.exe_3086]
+RelativePath=JIT\Directed\StrAccess\straccess4\straccess4.exe
+WorkingDir=JIT\Directed\StrAccess\straccess4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgiface2.exe_3742]
+RelativePath=JIT\Methodical\casts\iface\_il_dbgiface2\_il_dbgiface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_dbgiface2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class03.exe_3128]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03\class03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[memorystreamctor3.exe_1439]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3\MemoryStreamCtor3.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalboolarray.exe_2599]
+RelativePath=Interop\ReversePInvoke\Marshalling\MarshalBoolArray\MarshalBoolArray.exe
+WorkingDir=Interop\ReversePInvoke\Marshalling\MarshalBoolArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[stackbehaviourvarpush.exe_1950]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush\StackBehaviourVarpush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch6.exe_274]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch6\ArrayBinarySearch6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[simpleexpr2.exe_3496]
+RelativePath=JIT\jit64\opt\cse\simpleexpr2\simpleexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletouint64.exe_2178]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt64\SingleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arrayexpr2_r.exe_3480]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r\arrayexpr2_r.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgrecurse.exe_4259]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse\_speed_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filemodetruncate.exe_1422]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeTruncate\FileModeTruncate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeTruncate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06440b.exe_4819]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b\b06440b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletosbyte.exe_1332]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte\Int16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesbge.exe_1666]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge\OpCodesBge.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletotype.exe_2469]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType\UInt16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesimport.exe_2029]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport\TypeAttributesImport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84129.exe_5656]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129\b84129.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct02.exe_3294]
+RelativePath=JIT\Generics\Typeof\struct02\struct02.exe
+WorkingDir=JIT\Generics\Typeof\struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b08944b.exe_5031]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b\b08944b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaaa_d.exe_3440]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d\CGRecurseAAA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b191926.exe_5497]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926\b191926.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;DBG_FAIL
+[charmaxvalue.exe_467]
+RelativePath=CoreMangLib\cti\system\char\CharMaxValue\CharMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[outofmemoryexceptionctor2.exe_1589]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2\OutOfMemoryExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesdirectory.exe_1405]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory\FileAttributesDirectory.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesconv_ovf_i.exe_1708]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I\OpCodesConv_Ovf_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_box_val.exe_3976]
+RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_val\_il_relrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_val
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41488.exe_5092]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488\b41488.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpop1_pop1.exe_1924]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1\StackBehaviourPop1_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charisseparator1.exe_456]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator1\CharIsSeparator1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sp1d.exe_3093]
+RelativePath=JIT\Directed\StructPromote\SP1d\SP1d.exe
+WorkingDir=JIT\Directed\StructPromote\SP1d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetencoding2.exe_2284]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2\EncodingGetEncoding2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev11_5437.exe_5590]
+RelativePath=JIT\Regression\Dev11\Dev11_5437\Dev11_5437\Dev11_5437.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_5437\Dev11_5437
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relldfld_mul.exe_4180]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mul\_speed_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldadd_cs_ro.exe_2863]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro\lclfldadd_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[opcodescall.exe_1692]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall\OpCodesCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class2_cs_r.exe_3159]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_r\class2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_5.exe_3399]
+RelativePath=JIT\jit64\gc\misc\structfp1_5\structfp1_5.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[box_unbox.exe_2985]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\Box_Unbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b69227.exe_5363]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227\b69227.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_and_op_cs_r.exe_2806]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_r\Int_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryprivateuse.exe_1251]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse\UnicodeCategoryPrivateUse.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrefloc_o.exe_3937]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o\_il_dbgrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b464149.exe_4792]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149\b464149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b70994.exe_5376]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994\b70994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b311420.exe_5730]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420\b311420.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_5849]
+RelativePath=Regressions\coreclr\0487\test\test.exe
+WorkingDir=Regressions\coreclr\0487\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test.exe_5848]
+RelativePath=Regressions\coreclr\0433\test\test.exe
+WorkingDir=Regressions\coreclr\0433\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_handler.exe_4743]
+RelativePath=JIT\opt\Inline\Inline_Handler\Inline_Handler.exe
+WorkingDir=JIT\opt\Inline\Inline_Handler
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28596.exe_4942]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596\b28596.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b53942b.exe_5270]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b\b53942b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfoconstructor2.exe_1135]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoConstructor2\CultureInfoConstructor2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoConstructor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw144257.exe_5792]
+RelativePath=Loader\classloader\regressions\144257\vsw144257\vsw144257.exe
+WorkingDir=Loader\classloader\regressions\144257\vsw144257
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b05737.exe_5007]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737\b05737.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b180381b.exe_5496]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b\b180381b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesble.exe_1674]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle\OpCodesBle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reldeep1.exe_4228]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep1\_il_reldeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorydashpunctuation.exe_1231]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation\UnicodeCategoryDashPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[generic_test_csharp_peer_6.exe_2747]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6\Generic_Test_CSharp_Peer_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericexceptions07.exe_11]
+RelativePath=baseservices\exceptions\generics\GenericExceptions07\GenericExceptions07.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions07
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[outattributector.exe_2101]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor\OutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartushort_2.exe_239]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort_2\ThreadStartUShort_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b55216.exe_5283]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216\b55216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[binarywriteroutstream_psc.exe_1393]
+RelativePath=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC\BinaryWriterOutStream_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ilistremoveat.exe_607]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt\IListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblytitleattributetitle.exe_1636]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle\AssemblyTitleAttributeTitle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relchain.exe_3667]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relchain\_il_relchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relchain
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathabs7.exe_1479]
+RelativePath=CoreMangLib\cti\system\math\MathAbs7\MathAbs7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble17.exe_770]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble17\ConvertToDouble17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldloca.exe_3016]
+RelativePath=JIT\Directed\PREFIX\volatile\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\ldloca
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldloc_s.exe_1806]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S\OpCodesLdloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimekind.exe_940]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeKind\DateTimeKind.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeKind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16328.exe_4875]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328\b16328.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcastclass_call.exe_3708]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_call\_il_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[conv_ovf_i1_un.exe_3300]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un\conv_ovf_i1_un.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[useunaligneddouble.exe_5602]
+RelativePath=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble\UseUnalignedDouble.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisletter2.exe_448]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter2\CharIsLetter2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaldivide.exe_987]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalDivide\DecimalDivide.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalDivide
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionissynchronized.exe_562]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetbytes1.exe_2271]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1\EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b26732.exe_4920]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732\b26732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[override.exe_5858]
+RelativePath=Regressions\coreclr\0857\override\override.exe
+WorkingDir=Regressions\coreclr\0857\override
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodessub_ovf_un.exe_1877]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un\OpCodesSub_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch3b.exe_269]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3b\ArrayBinarySearch3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringtrim1b.exe_2244]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1b\StringTrim1b.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanrem_cs_r.exe_4474]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_r\r4NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathpathseparator_psc.exe_1456]
+RelativePath=CoreMangLib\cti\system\io\path\PathPathSeparator_PSC\PathPathSeparator_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathPathSeparator_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gchandletypeweaktrackresurrection.exe_2084]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection\GCHandleTypeWeakTrackResurrection.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[106011.exe_73]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\106011\106011\106011.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\106011\106011
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartstring_4.exe_231]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_4\ThreadStartString_4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b19394.exe_5712]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394\b19394.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44410.exe_5122]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410\b44410.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandlehandle_psc.exe_2109]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC\SafeHandleHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[doublecompareto1.exe_1046]
+RelativePath=CoreMangLib\cti\system\double\DoubleCompareTo1\DoubleCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleCompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3105
+[b70808.exe_5371]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808\b70808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b06680.exe_5017]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680\b06680.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdelegate_2.exe_195]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate_2\ThreadStartDelegate_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b56066.exe_5286]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066\b56066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeformatinfocurrentinfo.exe_1150]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo\DateTimeFormatInfoCurrentInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgisinst_newobj.exe_3732]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj\_speed_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nanrem_cs_d.exe_4492]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_d\r8NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesconv_ovf_u8_un.exe_1726]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un\OpCodesConv_Ovf_U8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b04538.exe_4993]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538\b04538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b02076.exe_4985]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076\b02076.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charenumeratormovenext.exe_477]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext\CharEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint3210.exe_893]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3210\ConvertToUInt3210.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3210
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[packingsizeunspecified.exe_1921]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified\PackingSizeUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblynamesetpublickeytoken.exe_1630]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken\AssemblyNameSetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgunbox.exe_4711]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgunbox\_il_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_conv_ovf_u8_i8.exe_3323]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8\ldc_conv_ovf_u8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpconvi2f.exe_2655]
+RelativePath=JIT\CodeGenBringUpTests\FPConvI2F\FPConvI2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvI2F
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint32.exe_891]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt32\ConvertToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[charissurrogate2.exe_459]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate2\CharIsSurrogate2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[randomnext3.exe_1605]
+RelativePath=CoreMangLib\cti\system\random\RandomNext3\RandomNext3.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax6.exe_1499]
+RelativePath=CoreMangLib\cti\system\math\MathMax6\MathMax6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodouble12.exe_765]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble12\ConvertToDouble12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b37598.exe_5055]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598\b37598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[lclfldmul_cs_r.exe_2870]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_r\lclfldmul_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[floatovftoint2_ro.exe_4519]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_ro\FloatOvfToInt2_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE
+[b14928.exe_4864]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928\b14928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_3.exe_3397]
+RelativePath=JIT\jit64\gc\misc\structfp1_3\structfp1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b416667.exe_5546]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667\b416667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartbyte_3.exe_183]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte_3\ThreadStartByte_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_speed_dbglcsbas.exe_3601]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas\_speed_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaca_ro.exe_3451]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro\CGRecurseACA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartuint_2.exe_233]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUInt_2\ThreadStartUInt_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUInt_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b31878.exe_5040]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878\b31878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackenumeratordispose.exe_687]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose\StackEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structref1_1.exe_3411]
+RelativePath=JIT\jit64\gc\misc\structref1_1\structref1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structref1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47885.exe_5157]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885\b47885.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b15864.exe_4816]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864\b15864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mul_exception_dbg.exe_3523]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg\mul_exception_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43994.exe_5116]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994\b43994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_i4.exe_1756]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4\OpCodesLdc_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosingle.exe_834]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle\ConvertToSingle.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpconvf2lng.exe_2654]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2Lng\FPConvF2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2Lng
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderreplace4.exe_2330]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4\StringBuilderReplace4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstloc.exe_1867]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc\OpCodesStloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareexchangelong_4.exe_161]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4\CompareExchangeLong_4.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_dbgcompat_i4_i1.exe_4543]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1\_il_dbgcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[invalidprogramexceptionctor1.exe_1390]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1\InvalidProgramExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise1b_cs_ro.exe_3773]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_ro\precise1b_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[i4flat_cs_ro.exe_3634]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_ro\i4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeshortinliner.exe_1911]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR\OperandTypeShortInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderremove.exe_2326]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove\StringBuilderRemove.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[double_and_op_cs_d.exe_2772]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_d\Double_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_vfld.exe_3916]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld\_il_relu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b39381.exe_5062]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381\b39381.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[specific_struct_instance02.exe_3218]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance02\specific_struct_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[25param3a_cs_do.exe_4198]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_do\25param3a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46170.exe_5142]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170\b46170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fielda_tests.exe_2999]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\fielda_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10789.exe_5683]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789\b10789.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi_qsort1.exe_3872]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1\_il_dbgi_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgisinst_ldloc.exe_3706]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc\_il_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_flow.exe_3883]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow\_il_dbgu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefloc_o2.exe_3955]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o2\_il_relrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_add_ovf_i4.exe_3303]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4\ldc_add_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b66679.exe_5352]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679\b66679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b173313.exe_5557]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313\b173313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16compareto1.exe_2455]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16CompareTo1\UInt16CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16CompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletouint64.exe_1364]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64\Int64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgcatchfinally.exe_4287]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally\_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33135.exe_5199]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135\b33135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosingle14.exe_836]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle14\ConvertToSingle14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcompat_enum.exe_4566]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_enum\_il_relcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_enum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefloc_r4.exe_3939]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4\_il_dbgrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespantotalminutes.exe_2414]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes\TimeSpanTotalMinutes.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[volatilecpobj_il_r.exe_2905]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_r\volatilecpobj_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt2_cs_do.exe_3168]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_do\vt2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend18.exe_2302]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18\StringBuilderAppend18.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31283.exe_5181]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283\b31283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bbcnt0.exe_4766]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt0\BBCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nestedcall.exe_2712]
+RelativePath=JIT\CodeGenBringUpTests\NestedCall\NestedCall.exe
+WorkingDir=JIT\CodeGenBringUpTests\NestedCall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ovflrem2_il_d.exe_2888]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_d\ovflrem2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try1_d.exe_2952]
+RelativePath=JIT\Directed\leave\try1_d\try1_d.exe
+WorkingDir=JIT\Directed\leave\try1_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcsmax.exe_3595]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmax\_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmax
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3104
+[inline_many.exe_4744]
+RelativePath=JIT\opt\Inline\inline_Many\inline_Many.exe
+WorkingDir=JIT\opt\Inline\inline_Many
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[plainarr_cs_ro.exe_4407]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro\plainarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow3_cs_do.exe_2937]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_do\pow3_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfoname.exe_1203]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName\RegionInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[inline_newobj.exe_4746]
+RelativePath=JIT\opt\Inline\Inline_NewObj\Inline_NewObj.exe
+WorkingDir=JIT\opt\Inline\Inline_NewObj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgptr_types.exe_4315]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgptr_types\_il_dbgptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgptr_types
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldtoken.exe_4313]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtoken\_il_dbgldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtoken
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[enumeratormovenext.exe_673]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext\EnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6411.exe_913]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6411\ConvertToUInt6411.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6411
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relgcval_nested.exe_4580]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_nested\_il_relgcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_nested
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimalnegate.exe_996]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalNegate\DecimalNegate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalNegate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-struct02.exe_30]
+RelativePath=baseservices\exceptions\generics\try-catch-struct02\try-catch-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chartostring1.exe_470]
+RelativePath=CoreMangLib\cti\system\char\CharToString1\CharToString1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgcastclass_ldarg.exe_3726]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg\_speed_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringsubstring2.exe_2240]
+RelativePath=CoreMangLib\cti\system\string\StringSubString2\StringSubString2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraybinarysearch4.exe_270]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4\ArrayBinarySearch4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring4.exe_866]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString4\ConvertToString4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuecount.exe_662]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCount\QueueCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgcastclass_newobj.exe_3694]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_newobj\_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simple1.exe_2736]
+RelativePath=JIT\Directed\Arrays\Simple1\Simple1.exe
+WorkingDir=JIT\Directed\Arrays\Simple1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderreplace2.exe_2328]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2\StringBuilderReplace2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlinetok.exe_1906]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok\OperandTypeInlineTok.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14199.exe_4849]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199\b14199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev10_851479.exe_5797]
+RelativePath=Loader\classloader\regressions\dev10_851479\dev10_851479\dev10_851479.exe
+WorkingDir=Loader\classloader\regressions\dev10_851479\dev10_851479
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgs_ldc_mulovf.exe_4116]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf\_speed_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[testinterface.exe_5863]
+RelativePath=Regressions\coreclr\1333\testInterface\testInterface.exe
+WorkingDir=Regressions\coreclr\1333\testInterface
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackgetenumerator.exe_681]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator\StackGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b17904.exe_5711]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904\b17904.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16881b.exe_4885]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b\b16881b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[118414.exe_3546]
+RelativePath=JIT\jit64\regress\ddb\118414\118414\118414.exe
+WorkingDir=JIT\jit64\regress\ddb\118414\118414
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosbyte5.exe_829]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte5\ConvertToSByte5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldsfld_mulovf.exe_4159]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf\_il_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singleispositiveinfinity.exe_2159]
+RelativePath=CoreMangLib\cti\system\single\SingleIsPositiveInfinity\SingleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsPositiveInfinity
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint6410.exe_912]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6410\ConvertToUInt6410.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6410
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumtostring.exe_1084]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString\EnumToString.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01.exe_3287]
+RelativePath=JIT\Generics\Typeof\class01\class01.exe
+WorkingDir=JIT\Generics\Typeof\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overflowexceptionctor2.exe_1592]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2\OverflowExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[istype.exe_5834]
+RelativePath=Regressions\coreclr\0046\istype\istype.exe
+WorkingDir=Regressions\coreclr\0046\istype
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringiconvertibletochar.exe_2212]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToChar\StringIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fielda_tests.exe_3011]
+RelativePath=JIT\Directed\PREFIX\volatile\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\fielda_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initobj.exe_2979]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\initobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop1_cs_ro.exe_3109]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_ro\loop1_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfocurrentregion.exe_1198]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion\RegionInfoCurrentRegion.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84962.exe_5665]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962\b84962.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[exchangelong.exe_166]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeLong\ExchangeLong.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeLong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblydelaysignattributedelaysign.exe_1620]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign\AssemblyDelaySignAttributeDelaySign.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14716.exe_4859]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716\b14716.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread20.exe_135]
+RelativePath=baseservices\threading\generics\threadstart\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread20
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[double_cs_d.exe_4360]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_d\double_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41234.exe_5087]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234\b41234.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparisoncurrentculture.exe_2253]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture\StringComparisonCurrentCulture.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u8rem_cs_r.exe_3859]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_r\u8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeinlinefield.exe_1897]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField\OperandTypeInlineField.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b102533.exe_5532]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533\b102533.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteiconvertibletochar.exe_2132]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar\SByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31917.exe_5194]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917\b31917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[streamdispose1_psc.exe_1464]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC\StreamDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgi_fld.exe_3868]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld\_il_dbgi_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[guidequals1.exe_1265]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1\GuidEquals1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r4nanmul_cs_d.exe_4468]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_d\r4NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesrtspecialname.exe_1986]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName\MethodAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b54565.exe_5277]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565\b54565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[memorystreamctor6.exe_1442]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6\MemoryStreamCtor6.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06020.exe_5508]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020\b06020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested-try-catch04.exe_16]
+RelativePath=baseservices\exceptions\generics\nested-try-catch04\nested-try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[xor1.exe_2731]
+RelativePath=JIT\CodeGenBringUpTests\Xor1\Xor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Xor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteequals2.exe_398]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals2\ByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b81763.exe_5653]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763\b81763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b89279.exe_5446]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279\b89279.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u8div_cs_ro.exe_3828]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_ro\u8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unbox.exe_2730]
+RelativePath=JIT\CodeGenBringUpTests\Unbox\Unbox.exe
+WorkingDir=JIT\CodeGenBringUpTests\Unbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[multicastdelegatecombineimpl.exe_1550]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl\MulticastDelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise2_cs_d.exe_3778]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_d\precise2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[indexer.exe_4738]
+RelativePath=JIT\opt\Inline\indexer\indexer.exe
+WorkingDir=JIT\opt\Inline\indexer
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32374.exe_4976]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374\b32374.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;ISSUE_2989
+[structlayoutattributector.exe_2115]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor\StructLayoutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listicollectionsyncroot.exe_635]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot\ListICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b475589.exe_5550]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589\b475589.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgs_addsub.exe_4077]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_addsub\_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_addsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relselfref.exe_3623]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relselfref\_il_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint64_16.exe_810]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_16\ConvertToInt64_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relisinst_catch.exe_3759]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch\_il_relisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[osr015.exe_3514]
+RelativePath=JIT\jit64\opt\osr\osr015\osr015.exe
+WorkingDir=JIT\jit64\opt\osr\osr015
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattribytesnotpublic.exe_2047]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic\TypeAttribytesNotPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mul3.exe_2708]
+RelativePath=JIT\CodeGenBringUpTests\mul3\mul3.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesadjusttouniversal.exe_1164]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal\DateTimeStylesAdjustToUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint1614.exe_878]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1614\ConvertToUInt1614.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1614
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16iconvertibletouint16.exe_1335]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16\Int16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[textinfogethashcode.exe_1223]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode\TextInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionarycontainsvalue.exe_492]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue\DictionaryContainsValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct3_5.exe_3378]
+RelativePath=JIT\jit64\gc\misc\struct3_5\struct3_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b309548.exe_5728]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548\b309548.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldind_stind.exe_2980]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\ldind_stind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldarg_1.exe_1752]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1\OpCodesLdarg_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[safehandleisinvalid_psc.exe_2111]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC\SafeHandleIsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread14.exe_99]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[gthread14.exe_129]
+RelativePath=baseservices\threading\generics\threadstart\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttostring16.exe_847]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString16\ConvertToString16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionissynchronized.exe_543]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgnestval_cs.exe_3671]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_cs\_dbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4nanadd_cs_r.exe_4462]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_r\r4NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b66620.exe_5351]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620\b66620.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b405223.exe_5542]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223\b405223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeint32.exe_2442]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt32\TypeCodeInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43963.exe_5115]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963\b43963.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesallowleadingsign.exe_1184]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign\NumberStylesAllowLeadingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32_cs_r.exe_3056]
+RelativePath=JIT\Directed\shift\uint32_cs_r\uint32_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4rem_cs_d.exe_3845]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_d\r4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgbinop.exe_4067]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbinop\_il_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbinop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b69225.exe_5362]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225\b69225.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct3_2.exe_3376]
+RelativePath=JIT\jit64\gc\misc\struct3_2\struct3_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rels_muldiv.exe_4112]
+RelativePath=JIT\Methodical\int64\signed\_rels_muldiv\_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84586.exe_5659]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586\b84586.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relunbox.exe_4719]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_relunbox\_speed_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_relunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraycreateinstance1.exe_280]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1\ArrayCreateInstance1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14264.exe_4851]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264\b14264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringctor5.exe_2199]
+RelativePath=CoreMangLib\cti\system\string\StringCtor5\StringCtor5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtor5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderlength_cti.exe_2325]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti\StringBuilderLength_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_16.exe_795]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_16\ConvertToInt32_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b70967.exe_5374]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967\b70967.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relisinst_ldarg.exe_3722]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldarg\_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimal_cs_ro.exe_4359]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro\decimal_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodinggetbytes3.exe_2273]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3\EncodingGetBytes3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinfogetinstance.exe_1155]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance\DateTimeFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b15155.exe_4810]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155\b15155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesnestedfamorassem.exe_2035]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem\TypeAttributesNestedFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalremainder.exe_1002]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalRemainder\DecimalRemainder.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalRemainder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;UNWIND
+[straccess3_cs_do.exe_3083]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_do\straccess3_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28776.exe_4944]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776\b28776.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcsmixed.exe_3612]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed\_speed_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcatchfinally_jmpind.exe_4294]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind\_il_dbgcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberformatinfoclone.exe_1173]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone\NumberFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convr4a_cs_d.exe_4038]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_d\convr4a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b431098.exe_5734]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098\b431098.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generics2_r.exe_4505]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_r\generics2_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_xor_op_cs_ro.exe_2819]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_ro\Int_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi_vfld.exe_3876]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld\_il_dbgi_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_orelenum_cs.exe_3677]
+RelativePath=JIT\Methodical\Boxing\misc\_orelenum_cs\_orelenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelenum_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[attributeversion.exe_2054]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion\AttributeVersion.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[checkaddlong_1.exe_148]
+RelativePath=baseservices\threading\interlocked\add\CheckAddLong_1\CheckAddLong_1.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddLong_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b19112a.exe_5696]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a\b19112a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint1611.exe_875]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1611\ConvertToUInt1611.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1611
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodinggethashcode.exe_2342]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode\UnicodeEncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgconv_i8_u.exe_3866]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u\_il_dbgconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort13.exe_332]
+RelativePath=CoreMangLib\cti\system\array\ArraySort13\ArraySort13.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint16.exe_776]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16\ConvertToInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileaccessreadwrite.exe_1400]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite\FileAccessReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[val_ctor_il_r.exe_4597]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_r\val_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_il_dbgconst.exe_4707]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgconst\_il_dbgconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgconst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singleparse1.exe_2163]
+RelativePath=CoreMangLib\cti\system\single\SingleParse1\SingleParse1.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pathgetinvalidpathchars.exe_1453]
+RelativePath=CoreMangLib\cti\system\io\path\PathGetInvalidPathChars\PathGetInvalidPathChars.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathGetInvalidPathChars
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullablegetunderlyingtype.exe_1566]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType\NullableGetUnderlyingType.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ambiguousmatchexceptionctor3.exe_1614]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3\AmbiguousMatchExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43719.exe_5113]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719\b43719.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int32_cs_ro.exe_3031]
+RelativePath=JIT\Directed\shift\int32_cs_ro\int32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int32_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[precise1_cs_r.exe_3776]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_r\precise1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesprefix1.exe_1828]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1\OpCodesPrefix1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributesbeforefieldinit.exe_2024]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit\TypeAttributesBeforeFieldInit.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[iconvertibletodecimal.exe_1280]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal\IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structfpseh6_1.exe_3410]
+RelativePath=JIT\jit64\gc\misc\structfpseh6_1\structfpseh6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh6_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[convr8d_il_d.exe_4048]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_d\convr8d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[straccess2_cs_do.exe_3079]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_do\straccess2_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[simpleexpr1.exe_3494]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1\simpleexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b30251.exe_5530]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251\b30251.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictenumidictenumget_key.exe_535]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key\DictEnumIDictEnumget_Key.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[directorynotfoundexceptionctor2.exe_1395]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2\DirectoryNotFoundExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[genericexceptions04.exe_8]
+RelativePath=baseservices\exceptions\generics\GenericExceptions04\GenericExceptions04.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectionsyncroot.exe_692]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test448035.exe_1]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\test448035\test448035.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\test448035
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgtailjump_il.exe_3673]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_il\_dbgtailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_il
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericexceptions01.exe_5]
+RelativePath=baseservices\exceptions\generics\GenericExceptions01\GenericExceptions01.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringreplace1.exe_2236]
+RelativePath=CoreMangLib\cti\system\string\StringReplace1\StringReplace1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[localloc3_cs_ro.exe_2963]
+RelativePath=JIT\Directed\localloc\localloc3_cs_ro\localloc3_cs_ro.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[switchdefaultonly2_il_r.exe_2899]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r\switchdefaultonly2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint64_6.exe_817]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_6\ConvertToInt64_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rels_ldfld_mul.exe_4108]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mul\_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgjumper3.exe_4609]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper3\_il_dbgjumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm32_d.exe_4440]
+RelativePath=JIT\Methodical\NaN\arithm32_d\arithm32_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iconvertibletodouble.exe_1281]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble\IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int16_do.exe_3025]
+RelativePath=JIT\Directed\shift\int16_do\int16_do.exe
+WorkingDir=JIT\Directed\shift\int16_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59319.exe_5305]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319\b59319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charenumeratorienumeratorcurrent.exe_475]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent\CharEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gentogen01.exe_3194]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen01\gentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgs_ldsfld_mul.exe_4092]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul\_il_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesnestedpublic.exe_2037]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic\TypeAttributesNestedPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32_do.exe_3059]
+RelativePath=JIT\Directed\shift\uint32_do\uint32_do.exe
+WorkingDir=JIT\Directed\shift\uint32_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodaccessexceptionctor1.exe_1535]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1\MethodAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[switchdefaultonly1_il_d.exe_2896]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d\switchdefaultonly1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_xor_op_cs_d.exe_2800]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_d\Float_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringarr_cs_d.exe_4336]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[_il_relcatchfault_jmp.exe_4297]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp\_il_relcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mainv2.exe_5810]
+RelativePath=readytorun\mainv2\mainv2.exe
+WorkingDir=readytorun\mainv2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[b39417.exe_5064]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417\b39417.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[debuggingmodesdefault.exe_1035]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault\DebuggingModesDefault.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jtruegedbl.exe_2684]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeDbl\JTrueGeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[loop1_cs_do.exe_3107]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_do\loop1_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64tostring1.exe_1370]
+RelativePath=CoreMangLib\cti\system\int64\Int64ToString1\Int64ToString1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64ToString1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b36030.exe_5048]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030\b36030.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli4u2.exe_4275]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u2\_il_reli4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodesingle.exe_2446]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSingle\TypeCodeSingle.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_odbgenum_cs.exe_3674]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgenum_cs\_odbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgenum_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[packingsizesize32.exe_1918]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32\PackingSizeSize32.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletodouble.exe_2515]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble\UInt64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsinterface.exe_359]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface\AttributeTargetsInterface.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[objectfinalize.exe_1576]
+RelativePath=CoreMangLib\cti\system\object\ObjectFinalize\ObjectFinalize.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectFinalize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[callipinvoke_il_d.exe_2858]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d\callipinvoke_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesvolatile.exe_1887]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile\OpCodesVolatile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcastclass_ldlen.exe_3689]
+RelativePath=JIT\Methodical\casts\array\_il_relcastclass_ldlen\_il_relcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relcastclass_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uintptrgethashcode.exe_2537]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode\UIntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;ISSUE_3511
+[arraylastindexof4.exe_317]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf4\ArrayLastIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[comp32_il_d.exe_4452]
+RelativePath=JIT\Methodical\NaN\comp32_il_d\comp32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[textelementenumeratorelementindex.exe_1217]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex\TextElementEnumeratorElementIndex.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareinfolastindexof.exe_1123]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoLastIndexOf\CompareInfoLastIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoLastIndexOf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldstr.exe_1811]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr\OpCodesLdstr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class01_static.exe_3126]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sp2a.exe_3095]
+RelativePath=JIT\Directed\StructPromote\SP2a\SP2a.exe
+WorkingDir=JIT\Directed\StructPromote\SP2a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3151;REL_PASS
+[b15222.exe_4865]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222\b15222.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_no_op_cs_r.exe_2810]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_r\Int_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filter2_r.exe_2949]
+RelativePath=JIT\Directed\leave\filter2_r\filter2_r.exe
+WorkingDir=JIT\Directed\leave\filter2_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singleparse2.exe_2164]
+RelativePath=CoreMangLib\cti\system\single\SingleParse2\SingleParse2.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgcastclass_ldlen.exe_3686]
+RelativePath=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen\_il_dbgcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b48990a.exe_5168]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a\b48990a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct5.exe_3383]
+RelativePath=JIT\jit64\gc\misc\struct5\struct5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodessizeof.exe_1846]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof\OpCodesSizeof.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldloc_2.exe_1804]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2\OpCodesLdloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimetostring3.exe_964]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString3\DateTimeToString3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderctor3.exe_2317]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3\StringBuilderctor3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_add_ovf_u1.exe_3305]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1\ldc_add_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleantostring.exe_394]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanToString\BooleanToString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartoperations_1.exe_219]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartOperations_1\ThreadStartOperations_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartOperations_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_speed_rellcsbox.exe_3610]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbox\_speed_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartnull2.exe_216]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull2\ThreadStartNull2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eventhandlerinvoke.exe_1094]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eventhandlerinvoke.exe_1090]
+RelativePath=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar.exe_732]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar\ConvertToChar.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;;UNSTABLE;DBG
+[converttosbyte7.exe_831]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte7\ConvertToSByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44297.exe_5121]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297\b44297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvolatile.exe_4671]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgvolatile\_il_dbgvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgvolatile
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileattributestemporary.exe_1415]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary\FileAttributesTemporary.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b433189.exe_3793]
+RelativePath=JIT\Methodical\Coverage\b433189\b433189.exe
+WorkingDir=JIT\Methodical\Coverage\b433189
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodinggetmaxbytecount.exe_2343]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount\UnicodeEncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b111130.exe_5636]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130\b111130.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[debuggingmodesnone.exe_1039]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone\DebuggingModesNone.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgobj.exe_4261]
+RelativePath=JIT\Methodical\Invoke\implicit\_dbgobj\_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_dbgobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b40138.exe_4782]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138\b40138.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryentrykey.exe_482]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey\DictionaryEntryKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret6_3.exe_3429]
+RelativePath=JIT\jit64\gc\misc\structret6_3\structret6_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regalloc2.exe_2926]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc2\regalloc2.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102518.exe_5698]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518\b102518.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[indexminusone.exe_4034]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne\indexMinusOne.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gcmaskforgscookie.exe_4024]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie\GCMaskForGSCookie.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringbuilderappend8.exe_2310]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8\StringBuilderAppend8.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mul_exception_opt.exe_3524]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt\mul_exception_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring31.exe_863]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString31\ConvertToString31.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString31
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32equals1.exe_1291]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals1\Int32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jmp_dbg.exe_3468]
+RelativePath=JIT\jit64\opt\cg\il\jmp_dbg\jmp_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8_cs_d.exe_3659]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_d\r8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltobyte.exe_1005]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte\DecimalToByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relrecurse.exe_4260]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_relrecurse\_speed_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_relrecurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrefloc_u2.exe_3941]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2\_il_dbgrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31289.exe_5182]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289\b31289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_reljumps.exe_4635]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumps\_speed_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumps
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathatan2.exe_1482]
+RelativePath=CoreMangLib\cti\system\math\MathAtan2\MathAtan2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arithm64_r.exe_4450]
+RelativePath=JIT\Methodical\NaN\arithm64_r\arithm64_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionarykeys3.exe_523]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3\DictionaryIDictionaryKeys3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgreference_i.exe_4558]
+RelativePath=JIT\Methodical\tailcall\_il_dbgreference_i\_il_dbgreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgreference_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_i4_1.exe_1758]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1\OpCodesLdc_I4_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[box_unbox01.exe_3193]
+RelativePath=JIT\Generics\Conversions\Boxing\box_unbox01\box_unbox01.exe
+WorkingDir=JIT\Generics\Conversions\Boxing\box_unbox01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesarglist.exe_1663]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist\OpCodesArglist.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributeshidden.exe_1408]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden\FileAttributesHidden.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct02.exe_3252]
+RelativePath=JIT\Generics\Instantiation\Structs\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesunmanagedexport.exe_1989]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport\MethodAttributesUnmanagedExport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b11131.exe_5688]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131\b11131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b429039.exe_5583]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039\b429039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nested-try-catch01.exe_13]
+RelativePath=baseservices\exceptions\generics\nested-try-catch01\nested-try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaltostring3.exe_1018]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString3\DecimalToString3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldftn_opt.exe_3474]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_opt\ldftn_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relexplicit4.exe_3996]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit4\_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandlesethandle_psc.exe_2113]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC\SafeHandleSetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unsafe.exe_5828]
+RelativePath=Regressions\common\Unsafe\Unsafe.exe
+WorkingDir=Regressions\common\Unsafe
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[params-varargs.exe_5480]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs\params-varargs.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[systemcollectionsicollectioncopyto.exe_564]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldsfld_mul.exe_4158]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mul\_il_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b115253.exe_5641]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253\b115253.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b08020.exe_5514]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020\b08020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ng_standard.exe_2568]
+RelativePath=CoreMangLib\system\delegate\generics\NG_Standard\NG_Standard.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NG_Standard
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfoclone.exe_1133]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone\CultureInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32_cs_d.exe_3054]
+RelativePath=JIT\Directed\shift\uint32_cs_d\uint32_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraybinarysearch2b.exe_267]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2b\ArrayBinarySearch2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bytegethashcode.exe_399]
+RelativePath=CoreMangLib\cti\system\byte\ByteGetHashCode\ByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletoint32.exe_1301]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt32\Int32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b91074.exe_5681]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074\b91074.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct1_2.exe_3367]
+RelativePath=JIT\jit64\gc\misc\struct1_2\struct1_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test.exe_5553]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test\test.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsignorewidth.exe_1128]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth\CompareOptionsIgnoreWidth.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cnslng1.exe_2615]
+RelativePath=JIT\CodeGenBringUpTests\CnsLng1\CnsLng1.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsLng1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericexceptions06.exe_10]
+RelativePath=baseservices\exceptions\generics\GenericExceptions06\GenericExceptions06.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread15.exe_100]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[idictionaryisreadonly.exe_699]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly\IDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgctor_recurse.exe_4653]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgctor_recurse\_speed_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgctor_recurse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[interlockedexchange5.exe_2376]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5\InterlockedExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_11.exe_794]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_11\ConvertToInt32_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgs_ldc_mulovf.exe_4080]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf\_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_orelnestval_cs.exe_3678]
+RelativePath=JIT\Methodical\Boxing\misc\_orelnestval_cs\_orelnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelnestval_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64compareto1.exe_1346]
+RelativePath=CoreMangLib\cti\system\int64\Int64CompareTo1\Int64CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64CompareTo1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfonativename.exe_1143]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName\CultureInfoNativeName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributesprivate.exe_1981]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate\MethodAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b36301.exe_5218]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301\b36301.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareinfoindexof.exe_1119]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf\CompareInfoIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[staticcalls.exe_2722]
+RelativePath=JIT\CodeGenBringUpTests\StaticCalls\StaticCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticCalls
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ienumeratorreset.exe_703]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset\IEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeattributeslayoutmask.exe_2031]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask\TypeAttributesLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgexplicit8.exe_3974]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit8\_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread03.exe_88]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[uint32iconvertibletouint64.exe_2498]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64\UInt32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relu_prop.exe_3911]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop\_il_relu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[delegatecombineimpl.exe_1027]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombineImpl\DelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombineImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gcmaxgeneration.exe_1106]
+RelativePath=CoreMangLib\cti\system\gc\GCMaxGeneration\GCMaxGeneration.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCMaxGeneration
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reltest_3b.exe_4587]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_3b\_il_reltest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint164.exe_885]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt164\ConvertToUInt164.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt164
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b10666.exe_4824]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666\b10666.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldftn.exe_1786]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn\OpCodesLdftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[preservesigattributector.exe_2102]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor\PreserveSigAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exitnull.exe_172]
+RelativePath=baseservices\threading\monitor\exit\ExitNull\ExitNull.exe
+WorkingDir=baseservices\threading\monitor\exit\ExitNull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise4_cs_r.exe_3784]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_r\precise4_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structfp1_6.exe_3400]
+RelativePath=JIT\jit64\gc\misc\structfp1_6\structfp1_6.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalasattributemarshaltype.exe_2096]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType\MarshalAsAttributeMarshalType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b44193.exe_5118]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193\b44193.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relvtret.exe_4636]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relvtret\_speed_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuetypeequals.exe_2544]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals\ValueTypeEquals.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charissurrogate1.exe_458]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate1\CharIsSurrogate1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32tryparse.exe_1319]
+RelativePath=CoreMangLib\cti\system\int\Int32TryParse\Int32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgftn_t.exe_4234]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgftn_t\_il_dbgftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-finally02.exe_27]
+RelativePath=baseservices\exceptions\generics\try-catch-finally02\try-catch-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[storeelement.exe_5757]
+RelativePath=JIT\SIMD\StoreElement\StoreElement.exe
+WorkingDir=JIT\SIMD\StoreElement
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59822.exe_5314]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822\b59822.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rellcsbas.exe_3609]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbas\_speed_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbas
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b56349.exe_5292]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349\b56349.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbglcsbox.exe_3602]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox\_speed_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_cs_r.exe_4370]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_r\int_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeparseexact3.exe_951]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact3\DateTimeParseExact3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE;ISSUE_3104;NEED_TRIAGE
+[arraysort1.exe_328]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1\ArraySort1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch-finally01.exe_26]
+RelativePath=baseservices\exceptions\generics\try-catch-finally01\try-catch-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64iconvertibletouint32.exe_1363]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32\Int64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_r.exe_4410]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt4_cs_d.exe_3179]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_d\vt4_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b51575.exe_5257]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575\b51575.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[main.exe_5804]
+RelativePath=Loader\regressions\classloader\main\main.exe
+WorkingDir=Loader\regressions\classloader\main
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41063.exe_5082]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063\b41063.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategorylineseparator.exe_1238]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator\UnicodeCategoryLineSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalctor7.exe_985]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor7\DecimalCtor7.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_xor_op_cs_r.exe_2818]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_r\Int_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_assignment_class01.exe_3221]
+RelativePath=JIT\Generics\Fields\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b12425.exe_5694]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425\b12425.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dev11_617302.exe_5591]
+RelativePath=JIT\Regression\Dev11\Dev11_617302\Dev11_617302\Dev11_617302.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_617302\Dev11_617302
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_ro.exe_4335]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opmembersofstructlocal.exe_2716]
+RelativePath=JIT\CodeGenBringUpTests\OpMembersOfStructLocal\OpMembersOfStructLocal.exe
+WorkingDir=JIT\CodeGenBringUpTests\OpMembersOfStructLocal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cse1_cs_r.exe_2852]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_r\cse1_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iequalitycomparergethashcode.exe_603]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode\IEqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstelem_i4.exe_1853]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4\OpCodesStelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_8.exe_804]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_8\ConvertToInt32_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b141358.exe_5646]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358\b141358.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefloc_i2.exe_3952]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i2\_il_relrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b89506.exe_5448]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506\b89506.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[idictionarycontainskey.exe_595]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey\IDictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b11762.exe_5515]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762\b11762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[overldrem_cs_d.exe_3841]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_d\overldrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[marshalsizeof1_psc.exe_2090]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC\MarshalSizeOf1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalasattributesizeparamindex.exe_2099]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex\MarshalAsAttributeSizeParamIndex.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reltest1.exe_4211]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest1\_il_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b39951.exe_5067]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951\b39951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesfamorassem.exe_1974]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem\MethodAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b26957.exe_4924]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957\b26957.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relunbox.exe_4717]
+RelativePath=JIT\Methodical\xxobj\operand\_relunbox\_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_relunbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodeempty.exe_2440]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeEmpty\TypeCodeEmpty.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeEmpty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8div_cs_ro.exe_3807]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_ro\i8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listlastindexof1.exe_650]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1\ListLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletoint16.exe_2516]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16\UInt64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charunicodeinfogetnumericvalue2.exe_1114]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2\CharUnicodeInfoGetNumericValue2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charissurrogatepair2.exe_461]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair2\CharIsSurrogatePair2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filenotfoundexceptionctor1.exe_1424]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1\FileNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint64_9.exe_820]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_9\ConvertToInt64_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev11_13912.exe_5585]
+RelativePath=JIT\Regression\Dev11\dev11_13912\dev11_13912\dev11_13912.exe
+WorkingDir=JIT\Regression\Dev11\dev11_13912\dev11_13912
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b369916.exe_5548]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916\b369916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r4_cs_r.exe_3653]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_r\r4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread10.exe_125]
+RelativePath=baseservices\threading\generics\threadstart\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_il_dbgldsfld_mulovf.exe_4151]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf\_il_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class02.exe_3242]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32minvalue.exe_2500]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MinValue\UInt32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpush0.exe_1941]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0\StackBehaviourPush0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class05.exe_3130]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05\class05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[deleginstanceftn.exe_4734]
+RelativePath=JIT\opt\Inline\DelegInstanceFtn\DelegInstanceFtn.exe
+WorkingDir=JIT\opt\Inline\DelegInstanceFtn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesnewslot.exe_1979]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot\MethodAttributesNewSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_conv_ovf_u4_u2.exe_3322]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2\ldc_conv_ovf_u4_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b38556.exe_5059]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556\b38556.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b81764.exe_5654]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764\b81764.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_do.exe_4425]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byrefconvert_il_r.exe_3018]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_r\byrefconvert_il_r.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimaltostring2.exe_1017]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString2\DecimalToString2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[testgc.exe_3]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestGC\TestGC.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestGC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[oddsize.exe_3019]
+RelativePath=JIT\Directed\RVAInit\oddsize\oddsize.exe
+WorkingDir=JIT\Directed\RVAInit\oddsize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pinnedint.exe_2583]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedInt\PinnedInt.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedInt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesunbox_any.exe_1886]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any\OpCodesUnbox_Any.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b53980.exe_5273]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980\b53980.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[oomexception01.exe_75]
+RelativePath=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01\OOMException01.exe
+WorkingDir=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b320147.exe_5535]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147\b320147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletoint64.exe_2492]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64\UInt32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[securityexceptionctor1.exe_2150]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1\SecurityExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relval_ctor.exe_4222]
+RelativePath=JIT\Methodical\Invoke\ctor\_relval_ctor\_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_relval_ctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25701.exe_4907]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701\b25701.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuecollgenericienumgetenumerator.exe_569]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator\ValueCollGenericIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[floatovftoint2_d.exe_4516]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_d\FloatOvfToInt2_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25835.exe_4912]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835\b25835.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpopi_popi8.exe_1928]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8\StackBehaviourPopi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b94306.exe_5469]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306\b94306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[b53994.exe_5274]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994\b53994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[b07411.exe_5023]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411\b07411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgjumper5.exe_4611]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper5\_il_dbgjumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b140711.exe_5487]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711\b140711.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_i8.exe_3333]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8\ldc_mul_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[consolesetout_psc.exe_710]
+RelativePath=CoreMangLib\cti\system\console\ConsoleSetOut_PSC\ConsoleSetOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\ConsoleSetOut_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[converttostring21.exe_853]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString21\ConvertToString21.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString21
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimekindunspecified.exe_967]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified\DateTimeKindUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[charisnumber2.exe_454]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber2\CharIsNumber2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstind_r4.exe_1864]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4\OpCodesStind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeequals1.exe_2417]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals1\TypeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter005.exe_57]
+RelativePath=baseservices\exceptions\generics\TypeParameter005\TypeParameter005.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter005
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryenclosingmark.exe_1233]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark\UnicodeCategoryEnclosingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletochar.exe_2460]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar\UInt16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convr4a_cs_do.exe_4039]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_do\convr4a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[propertyattributesnone.exe_2012]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone\PropertyAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalctor1.exe_979]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor1\DecimalCtor1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_odbgnestval_cs.exe_3675]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgnestval_cs\_odbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgnestval_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldc_mulovf.exe_4098]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf\_il_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttouint163.exe_884]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt163\ConvertToUInt163.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt163
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b32551b.exe_4978]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b\b32551b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relisinst_ldlen.exe_3690]
+RelativePath=JIT\Methodical\casts\array\_il_relisinst_ldlen\_il_relisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relisinst_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32parse2.exe_2502]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse2\UInt32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttobyte7.exe_730]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte7\ConvertToByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw491577_1.exe_5788]
+RelativePath=Loader\classloader\nesting\coreclr\VSW491577_1\VSW491577_1.exe
+WorkingDir=Loader\classloader\nesting\coreclr\VSW491577_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[jaggedarr_cs_r.exe_4402]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[nullenum1000.exe_5793]
+RelativePath=Loader\classloader\regressions\245191\nullenum1000\nullenum1000.exe
+WorkingDir=Loader\classloader\regressions\245191\nullenum1000
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodescalli.exe_1693]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli\OpCodesCalli.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalparse4.exe_1001]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse4\DecimalParse4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typemakearraytype2.exe_2430]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType2\TypeMakeArrayType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread26.exe_111]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread26
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[methodimplattributesmanagedmask.exe_1997]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask\MethodImplAttributesManagedMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackcontains.exe_675]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackContains\StackContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackContains
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31448.exe_4967]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448\b31448.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgs_ldc_mul.exe_4079]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mul\_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[convr8a_cs_do.exe_4045]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_do\convr8a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filter.exe_3101]
+RelativePath=JIT\Directed\throwbox\filter\filter.exe
+WorkingDir=JIT\Directed\throwbox\filter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodetostring.exe_1889]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString\OpCodeToString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int_and_op_cs_do.exe_2805]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_do\Int_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfogetcultureinfo2.exe_1138]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2\CultureInfoGetCultureInfo2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_1.exe_792]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_1\ConvertToInt32_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cse1_cs_d.exe_2850]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_d\cse1_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgcall.exe_4599]
+RelativePath=JIT\Methodical\VT\callconv\_dbgcall\_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[intarr_cs_do.exe_4421]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_do\intarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeshortinlinebrtarget.exe_1909]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget\OperandTypeShortInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress3_r.exe_3466]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_r\CgStress3_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class01.exe_3241]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32iconvertibletoboolean.exe_2485]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean\UInt32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-catch01.exe_38]
+RelativePath=baseservices\exceptions\generics\try-catch01\try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_equalnull_struct01.exe_3263]
+RelativePath=JIT\Generics\Locals\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcatchfinally_jmpind.exe_4301]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind\_il_relcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b323557-ret.exe_5538]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret\b323557-ret.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iformatabletostring.exe_1286]
+RelativePath=CoreMangLib\cti\system\iformatable\IFormatableToString\IFormatableToString.exe
+WorkingDir=CoreMangLib\cti\system\iformatable\IFormatableToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackcopyto.exe_676]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo\StackCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b21015.exe_5713]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015\b21015.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b115932a.exe_5525]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a\b115932a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt2_il_d.exe_3171]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_d\vt2_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraygetvalue.exe_288]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue\ArrayGetValue.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_popi_pop1.exe_1935]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1\StackBehaviourPopref_popi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ambiguousmatchexceptionctor2.exe_1613]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2\AmbiguousMatchExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b47022.exe_5152]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022\b47022.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b92614.exe_5465]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614\b92614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unsafe.exe_5846]
+RelativePath=Regressions\coreclr\0342\unsafe\unsafe.exe
+WorkingDir=Regressions\coreclr\0342\unsafe
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax4.exe_1497]
+RelativePath=CoreMangLib\cti\system\math\MathMax4\MathMax4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dllnotfoundexception1.exe_1043]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1\DllNotFoundException1.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[genericstructs.exe_4736]
+RelativePath=JIT\opt\Inline\GenericStructs\GenericStructs.exe
+WorkingDir=JIT\opt\Inline\GenericStructs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstloc_1.exe_1869]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1\OpCodesStloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetbytes2.exe_2354]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2\UTF8EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b43378.exe_5111]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378\b43378.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringindexof10.exe_2221]
+RelativePath=CoreMangLib\cti\system\string\StringIndexOf10\StringIndexOf10.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIndexOf10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_opt_relexplicit2.exe_3986]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit2\_opt_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_376412.exe_4793]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412\DevDiv_376412.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeparameter014.exe_66]
+RelativePath=baseservices\exceptions\generics\TypeParameter014\TypeParameter014.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter014
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relsizeof.exe_3906]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof\_il_relsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpcall1.exe_2649]
+RelativePath=JIT\CodeGenBringUpTests\FPCall1\FPCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackenumeratormovenext.exe_688]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext\StackEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesstarg_s.exe_1848]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S\OpCodesStarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b85565.exe_5671]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565\b85565.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relval_cctor.exe_4220]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_cctor\_il_relval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_cctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathaltdirectoryseparatorchar_psc.exe_1444]
+RelativePath=CoreMangLib\cti\system\io\path\PathAltDirectorySeparatorChar_PSC\PathAltDirectorySeparatorChar_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathAltDirectorySeparatorChar_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gettypetypeofmatrix.exe_2914]
+RelativePath=JIT\Directed\gettypetypeof\gettypetypeofmatrix\gettypetypeofmatrix.exe
+WorkingDir=JIT\Directed\gettypetypeof\gettypetypeofmatrix
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[sbyteequals2.exe_2128]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals2\SByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgldfld_mul.exe_4148]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul\_il_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relarray2.exe_4535]
+RelativePath=JIT\Methodical\refany\_il_relarray2\_il_relarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16iconvertibletotype.exe_1334]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToType\Int16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structret3_1.exe_3418]
+RelativePath=JIT\jit64\gc\misc\structret3_1\structret3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackpop.exe_683]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPop\StackPop.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpopref_pop1.exe_1933]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1\StackBehaviourPopref_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblykeynameattributekeyname.exe_1626]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName\AssemblyKeyNameAttributeKeyName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dev11_646049.exe_5592]
+RelativePath=JIT\Regression\Dev11\Dev11_646049\Dev11_646049\Dev11_646049.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_646049\Dev11_646049
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_i8.exe_1791]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8\OpCodesLdind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relbox.exe_4076]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbox\_speed_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodeencodinggetbytecount2.exe_2336]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2\UnicodeEncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_794115_d.exe_5607]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d\DevDiv_794115_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listilistisreadonly.exe_643]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly\ListIListIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[rotarg_float.exe_4002]
+RelativePath=JIT\Methodical\explicit\rotate\rotarg_float\rotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\rotarg_float
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch04.exe_41]
+RelativePath=baseservices\exceptions\generics\try-catch04\try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringtrim3.exe_2246]
+RelativePath=CoreMangLib\cti\system\string\StringTrim3\StringTrim3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblykeyfileattributector.exe_1623]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor\AssemblyKeyFileAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relii1.exe_4278]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii1\_il_relii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringempty.exe_2201]
+RelativePath=CoreMangLib\cti\system\string\StringEmpty\StringEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEmpty
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[utf8encodinggetstring.exe_2363]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString\UTF8EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b56159.exe_5290]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159\b56159.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8nansub_cs_do.exe_4497]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_do\r8NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relisinst_call.exe_3721]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_call\_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_call
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typetostring.exe_2433]
+RelativePath=CoreMangLib\cti\system\type\TypeToString\TypeToString.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[u4rem_cs_do.exe_3854]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_do\u4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b608066.exe_5565]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066\b608066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[methodattributeshidebysig.exe_1977]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig\MethodAttributesHideBySig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[flowcontrolcall.exe_1647]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall\FlowControlCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[finally.exe_76]
+RelativePath=baseservices\exceptions\simple\finally\finally.exe
+WorkingDir=baseservices\exceptions\simple\finally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arglist.exe_3006]
+RelativePath=JIT\Directed\PREFIX\volatile\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\arglist
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_FAIL;NEED_TRIAGE;ISSUE_2925
+[dictenumidictenumget_entry.exe_534]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry\DictEnumIDictEnumget_Entry.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletouint32.exe_2471]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32\UInt16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rels_ldc_div.exe_4105]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_div\_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringequals3.exe_2204]
+RelativePath=CoreMangLib\cti\system\string\StringEquals3\StringEquals3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[queuepeek.exe_669]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueuePeek\QueuePeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueuePeek
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgjumper.exe_4600]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumper\_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumper
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chartryparse.exe_473]
+RelativePath=CoreMangLib\cti\system\char\CharTryParse\CharTryParse.exe
+WorkingDir=CoreMangLib\cti\system\char\CharTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[classarr_cs_do.exe_4325]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgldsfld_mul.exe_4174]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul\_speed_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgrecurse_tail_calli.exe_4241]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli\_il_dbgrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listicollectionisreadonly.exe_633]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly\ListICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttobase64string2.exe_716]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String2\ConvertToBase64String2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filenotfoundexceptionmessage.exe_1427]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage\FileNotFoundExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_xor_op_cs_r.exe_2770]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_r\Bool_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletochar.exe_402]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToChar\ByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b52572.exe_5259]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572\b52572.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgsuperlong.exe_4135]
+RelativePath=JIT\Methodical\int64\superlong\_speed_dbgsuperlong\_speed_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_dbgsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgcastclass_ldloc.exe_3727]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc\_speed_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgtest_virt.exe_4565]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_virt\_il_dbgtest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_virt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbeq_s.exe_1665]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S\OpCodesBeq_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[attributetargetsstruct.exe_365]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct\AttributeTargetsStruct.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b37131.exe_5054]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131\b37131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfogettextelementenumerator2.exe_1212]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2\StringInfoGetTextElementEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[marshalasattributector1.exe_2093]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1\MarshalAsAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b40347.exe_5074]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[codesize1.exe_4769]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structarr_cs_r.exe_4434]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin10.exe_1504]
+RelativePath=CoreMangLib\cti\system\math\MathMin10\MathMin10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b74937.exe_5404]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937\b74937.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[flowcontrolthrow.exe_1652]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow\FlowControlThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[113574.exe_3545]
+RelativePath=JIT\jit64\regress\ddb\113574\113574\113574.exe
+WorkingDir=JIT\jit64\regress\ddb\113574\113574
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimestylesnocurrentdatedefault.exe_1170]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault\DateTimeStylesNoCurrentDateDefault.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesreadonly.exe_1836]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly\OpCodesReadonly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8flat_cs_r.exe_3641]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_r\i8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimesubtract1.exe_954]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract1\DateTimeSubtract1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[refarg_c.exe_3917]
+RelativePath=JIT\Methodical\explicit\basic\refarg_c\refarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcalli.exe_4615]
+RelativePath=JIT\Methodical\VT\callconv\_il_relcalli\_il_relcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relcalli
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit4_il_d.exe_3790]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_d\prefldinit4_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int_or_op_cs_r.exe_2814]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_r\Int_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdouble_1.exe_197]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_1\ThreadStartDouble_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_relexplicit1.exe_3993]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit1\_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaaa_r.exe_3442]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r\CGRecurseAAA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrotarg_double.exe_4011]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_double\_il_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_double
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringgetenumerator.exe_2208]
+RelativePath=CoreMangLib\cti\system\string\StringGetEnumerator\StringGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimetostring2.exe_963]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString2\DateTimeToString2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b28037.exe_4936]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037\b28037.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[args2.exe_4728]
+RelativePath=JIT\opt\Inline\args2\args2.exe
+WorkingDir=JIT\opt\Inline\args2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_s.exe_3924]
+RelativePath=JIT\Methodical\explicit\basic\refarg_s\refarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_s
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodeopcodetype.exe_1658]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType\OpCodeOpCodeType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodegethashcode.exe_1656]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode\OpCodeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[copyto2.exe_618]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo2\CopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b88793.exe_5443]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793\b88793.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[_il_reldeep_gc.exe_4575]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_gc\_il_reldeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_gc
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26558.exe_4918]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558\b26558.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbrfalse_s.exe_1688]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S\OpCodesBrfalse_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b17751.exe_5710]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751\b17751.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_flood.exe_3909]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood\_il_relu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttostring15.exe_846]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString15\ConvertToString15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString15
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jaggedarr_cs_do.exe_4401]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttosingle17.exe_839]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle17\ConvertToSingle17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle17
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimemaxvalue.exe_941]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMaxValue\DateTimeMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int64tryparse.exe_1373]
+RelativePath=CoreMangLib\cti\system\int64\Int64TryParse\Int64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64TryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[sbyteiconvertibletodecimal.exe_2133]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal\SByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relgcarr.exe_3624]
+RelativePath=JIT\Methodical\Arrays\misc\_relgcarr\_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relgcarr
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relstress2.exe_4539]
+RelativePath=JIT\Methodical\refany\_il_relstress2\_il_relstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_relstress2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b169333.exe_5492]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333\b169333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ienumeratorcurrent.exe_601]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b36470.exe_5051]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470\b36470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct03.exe_3138]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03\struct03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int16_cs_d.exe_3020]
+RelativePath=JIT\Directed\shift\int16_cs_d\int16_cs_d.exe
+WorkingDir=JIT\Directed\shift\int16_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_opt_relexplicit6.exe_3990]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit6\_opt_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pow3_cs_r.exe_2938]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_r\pow3_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28158.exe_5721]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158\b28158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[trycatchinfinally.exe_83]
+RelativePath=baseservices\exceptions\unittests\TryCatchInFinally\TryCatchInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\TryCatchInFinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32parse4.exe_1314]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse4\Int32Parse4.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instrcnt0.exe_4770]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt0\InstrCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt0
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodingequals.exe_2350]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals\UTF8EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletobyte.exe_401]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToByte\ByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetbytes5.exe_2275]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5\EncodingGetBytes5.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_base_2.exe_2749]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_2\Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleanfalsestring.exe_376]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanFalseString\BooleanFalseString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanFalseString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cultureinfotextinfo.exe_1146]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo\CultureInfoTextInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b30630.exe_4955]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630\b30630.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesble_un_s.exe_1677]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S\OpCodesBle_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderreplace3.exe_2329]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3\StringBuilderReplace3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread05.exe_120]
+RelativePath=baseservices\threading\generics\threadstart\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[typeloadexceptionctor2.exe_2452]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2\TypeLoadExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[culturename.exe_2051]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName\CultureName.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint16iconvertibletoint32.exe_2465]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32\UInt16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b091942.exe_5531]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942\b091942.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstind_i4.exe_1862]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4\OpCodesStind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldftn_dbg.exe_3472]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_dbg\ldftn_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisupper1.exe_463]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper1\CharIsUpper1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[conv_dbg.exe_3527]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[r8rem_cs_ro.exe_3852]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_ro\r8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[_dbglcs_ulong.exe_4052]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_ulong\_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_ulong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[converttoint64_7.exe_818]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_7\ConvertToInt64_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartnull.exe_215]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull\ThreadStartNull.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eventhandlerbegininvoke.exe_1091]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke\EventHandlerBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nanmul_cs_do.exe_4489]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_do\r8NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringreplace2.exe_2237]
+RelativePath=CoreMangLib\cti\system\string\StringReplace2\StringReplace2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldfldgeneric.exe_5752]
+RelativePath=JIT\SIMD\LdfldGeneric\LdfldGeneric.exe
+WorkingDir=JIT\SIMD\LdfldGeneric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret4_2.exe_3422]
+RelativePath=JIT\jit64\gc\misc\structret4_2\structret4_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rels_ldsfld_mul.exe_4101]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul\_il_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filenotfoundexceptionctor2.exe_1425]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2\FileNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalparse3.exe_1000]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse3\DecimalParse3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stringbuilderctor4.exe_2318]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4\StringBuilderctor4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttostring20.exe_852]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString20\ConvertToString20.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString20
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberformatinfocurrencydecimalseparator.exe_1175]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator\NumberFormatInfoCurrencyDecimalSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b77713.exe_5416]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713\b77713.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b31749.exe_4970]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749\b31749.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charunicodeinfogetunicodecategory1.exe_1115]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1\CharUnicodeInfoGetUnicodeCategory1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpavg6.exe_2648]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg6\FPAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jaggedarr_cs_r.exe_4426]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[huge_struct.exe_3580]
+RelativePath=JIT\Methodical\Arrays\huge_struct\huge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge_struct
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[byte_cs_d.exe_4348]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_d\byte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[structret1_2.exe_3413]
+RelativePath=JIT\jit64\gc\misc\structret1_2\structret1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stfldstatic2_il_d.exe_2892]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_d\stfldstatic2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16224.exe_5708]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224\b16224.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43313.exe_5110]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313\b43313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldsfld_mul.exe_4150]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul\_il_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[volatilestaticfield.exe_3503]
+RelativePath=JIT\jit64\opt\cse\volatilestaticfield\volatilestaticfield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilestaticfield
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggethashcode.exe_2359]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode\UTF8EncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryremove.exe_532]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove\DictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_rels_ldc_mul.exe_4106]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mul\_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeparse2.exe_947]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse2\DateTimeParse2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_FAIL;NEED_TRIAGE
+[stringcomparerequals1.exe_2250]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1\StringComparerEquals1.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b08797.exe_5029]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797\b08797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_o.exe_3923]
+RelativePath=JIT\Methodical\explicit\basic\refarg_o\refarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[icollectionremove.exe_594]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove\ICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[avtest.exe_5816]
+RelativePath=Regressions\common\avtest\avtest.exe
+WorkingDir=Regressions\common\avtest
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try-finally-struct01.exe_47]
+RelativePath=baseservices\exceptions\generics\try-finally-struct01\try-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[33objref_cs_ro.exe_2846]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_ro\33objref_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[_il_dbgrefloc_o2.exe_3938]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2\_il_dbgrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64iconvertibletoint32.exe_1357]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32\Int64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[icollectioncount.exe_690]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodebyte.exe_2435]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeByte\TypeCodeByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpushr4.exe_1946]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4\StackBehaviourPushr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32parse2.exe_1312]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse2\Int32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_add_ovf_u4.exe_3307]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4\ldc_add_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relaccum.exe_4672]
+RelativePath=JIT\Methodical\VT\identity\_il_relaccum\_il_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relarrays.exe_3688]
+RelativePath=JIT\Methodical\casts\array\_il_relarrays\_il_relarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relarrays
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[pathgetfilename.exe_1450]
+RelativePath=CoreMangLib\cti\system\io\path\PathGetFileName\PathGetFileName.exe
+WorkingDir=CoreMangLib\cti\system\io\path\PathGetFileName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b460385.exe_5736]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385\b460385.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_rellcs_ldlen.exe_3590]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen\_il_rellcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[initobj.exe_2990]
+RelativePath=JIT\Directed\PREFIX\unaligned\2\initobj\initobj.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\2\initobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublenan.exe_1067]
+RelativePath=CoreMangLib\cti\system\double\DoubleNaN\DoubleNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNaN
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dbldivconst.exe_2626]
+RelativePath=JIT\CodeGenBringUpTests\DblDivConst\DblDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDivConst
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartcast_1.exe_184]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartCast_1\ThreadStartCast_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartCast_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[_il_dbgi_ref.exe_3874]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref\_il_dbgi_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetmaxcharcount.exe_2361]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount\UTF8EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesunbox.exe_1885]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox\OpCodesUnbox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fieldexprunchecked1.exe_3484]
+RelativePath=JIT\jit64\opt\cse\fieldExprUnchecked1\fieldExprUnchecked1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldExprUnchecked1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mul4.exe_2709]
+RelativePath=JIT\CodeGenBringUpTests\mul4\mul4.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraylastindexof3b.exe_316]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3b\ArrayLastIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrecurse_ep.exe_4582]
+RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep\_il_relrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgu_flood.exe_3882]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood\_il_dbgu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgaddsub.exe_4137]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgaddsub\_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgaddsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b102615.exe_5676]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615\b102615.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b90129.exe_5452]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129\b90129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgstress3_d.exe_3464]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_d\CgStress3_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relcatchfinally_jmp.exe_4300]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp\_il_relcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgcatchfinally_jmp.exe_4293]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp\_il_dbgcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgconv_i8_i.exe_3865]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i\_il_dbgconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfoisocurrencysymbol.exe_1202]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol\RegionInfoISOCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_peer_3.exe_2754]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3\Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relexplicit5.exe_3997]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit5\_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b28949a.exe_5178]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28949\b28949a\b28949a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28949\b28949a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b37578.exe_5226]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578\b37578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[compareoptionsnone.exe_1129]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone\CompareOptionsNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleantryparse.exe_396]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTryParse\BooleanTryParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTryParse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[devdiv_876169_ro.exe_5606]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro\DevDiv_876169_ro.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesprefix7.exe_1834]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7\OpCodesPrefix7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[asgor1.exe_2609]
+RelativePath=JIT\CodeGenBringUpTests\AsgOr1\AsgOr1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgOr1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodestailcall.exe_1881]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall\OpCodesTailcall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bool_and_op_cs_r.exe_2758]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_r\Bool_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[iconvertibletobyte.exe_1277]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToByte\IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gchandlefree_psc.exe_2079]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC\GCHandleFree_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoboolean8.exe_723]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean8\ConvertToBoolean8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[lclfldrem_cs_do.exe_2873]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_do\lclfldrem_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2849
+[datetimeformatinfogetabbreviateddayname.exe_1151]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedDayName\DateTimeFormatInfoGetAbbreviatedDayName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedDayName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint8_cs_do.exe_3067]
+RelativePath=JIT\Directed\shift\uint8_cs_do\uint8_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b115103.exe_5640]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103\b115103.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relu_native.exe_4540]
+RelativePath=JIT\Methodical\refany\_il_relu_native\_il_relu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_relu_native
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesdiv_un.exe_1739]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un\OpCodesDiv_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_sub_ovf_i8.exe_3350]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8\ldc_sub_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b72160.exe_5390]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160\b72160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[valuecollectionenumeratorienumeratorreset.exe_579]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06440a.exe_4818]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a\b06440a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[safehandledispose2_psc.exe_2108]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC\SafeHandleDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b06440c.exe_4820]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c\b06440c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[packingsize16.exe_1913]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16\PackingSize16.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbgjumper.exe_4630]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumper\_speed_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumper
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relrefarg_c.exe_3942]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_c\_il_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_c
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59320.exe_5306]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320\b59320.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listindexof3.exe_648]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3\ListIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint_cs_ro.exe_4387]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_ro\uint_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794631_ro.exe_5614]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro\DevDiv_794631_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldind_stind.exe_3015]
+RelativePath=JIT\Directed\PREFIX\volatile\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\PREFIX\volatile\1\ldind_stind
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dayofweektuesday.exe_974]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay\DayOfWeekTuesDay.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relu_conv.exe_3907]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv\_il_relu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionaryvalue2.exe_526]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2\DictionaryIDictionaryValue2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[idictionaryremove.exe_700]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove\IDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[byteiconvertibletoboolean.exe_400]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean\ByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class1_cs_d.exe_3153]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_d\class1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b26153.exe_4914]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153\b26153.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relarray3.exe_4536]
+RelativePath=JIT\Methodical\refany\_il_relarray3\_il_relarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueltdbl.exe_2693]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtDbl\JTrueLtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relldfld_mul.exe_4164]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mul\_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionarycontainskey.exe_491]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey\DictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[repro177066.exe_5762]
+RelativePath=Loader\binding\assemblies\assemblybugs\177066w\repro177066\repro177066.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\177066w\repro177066
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[init_byte.exe_3117]
+RelativePath=JIT\Directed\zeroinit\init_byte\init_byte.exe
+WorkingDir=JIT\Directed\zeroinit\init_byte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_arrayssimple3.exe_2733]
+RelativePath=JIT\Directed\array-il\_Arrayssimple3\_Arrayssimple3.exe
+WorkingDir=JIT\Directed\array-il\_Arrayssimple3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b59508.exe_5310]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508\b59508.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relvtret.exe_4628]
+RelativePath=JIT\Methodical\VT\callconv\_relvtret\_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringcomparisonordinalignorecase.exe_2256]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase\StringComparisonOrdinalIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relsuperlong.exe_4134]
+RelativePath=JIT\Methodical\int64\superlong\_relsuperlong\_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_relsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charenumeratorienumgetcurrent.exe_476]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent\CharEnumeratorIEnumgetCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b130333.exe_5484]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333\b130333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[refarg_i4.exe_3922]
+RelativePath=JIT\Methodical\explicit\basic\refarg_i4\refarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\refarg_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16_do.exe_3051]
+RelativePath=JIT\Directed\shift\uint16_do\uint16_do.exe
+WorkingDir=JIT\Directed\shift\uint16_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_u2.exe_3335]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2\ldc_mul_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpavg2.exe_2647]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg2\FPAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_i8.exe_1777]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8\OpCodesLdelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filenotfoundexceptiongetmessage.exe_1426]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage\FileNotFoundExceptionGetMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try2_d.exe_2954]
+RelativePath=JIT\Directed\leave\try2_d\try2_d.exe
+WorkingDir=JIT\Directed\leave\try2_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794115_r.exe_5609]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r\DevDiv_794115_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesneg.exe_1821]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg\OpCodesNeg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listilistisfixedsize.exe_642]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize\ListIListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b79858.exe_5648]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858\b79858.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class06.exe_3131]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06\class06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit4_il_r.exe_3791]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_r\prefldinit4_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[singletosingle.exe_2175]
+RelativePath=CoreMangLib\cti\system\single\SingleToSingle\SingleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgldfld_mulovf.exe_4141]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf\_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ctorfromarray.exe_5746]
+RelativePath=JIT\SIMD\CtorFromArray\CtorFromArray.exe
+WorkingDir=JIT\SIMD\CtorFromArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reldeep_virt.exe_4578]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_virt\_il_reldeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_virt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_2998]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\Desktop\add\add.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\Desktop\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfoname.exe_1142]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName\CultureInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldsflda.exe_1810]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda\OpCodesLdsflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[generics2.exe_4503]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2\generics2.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b46566.exe_5233]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566\b46566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[consoleseterror_psc.exe_709]
+RelativePath=CoreMangLib\cti\system\console\consoleseterror_PSC\consoleseterror_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\consoleseterror_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[opcodesblt_s.exe_1679]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S\OpCodesBlt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b16886.exe_4886]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886\b16886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgs_ldc_div.exe_4087]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_div\_il_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_div
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodeequals1.exe_1653]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1\OpCodeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enumeratordispose.exe_672]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose\EnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaldiv_cs_do.exe_3797]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_do\decimaldiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[regioninfogethashcode.exe_1200]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode\RegionInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jmp_opt.exe_3470]
+RelativePath=JIT\jit64\opt\cg\il\jmp_opt\jmp_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_opt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_i4_8.exe_1765]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8\OpCodesLdc_I4_8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59297.exe_5304]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297\b59297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_reladdsub.exe_4161]
+RelativePath=JIT\Methodical\int64\unsigned\_reladdsub\_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_reladdsub
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayilistset_item.exe_301]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListset_item\ArrayIListset_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListset_item
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ldc_ret_i.exe_3340]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i\ldc_ret_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41627.exe_5095]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627\b41627.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbglcs_long.exe_4051]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_long\_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[_dbgaccum.exe_4667]
+RelativePath=JIT\Methodical\VT\identity\_dbgaccum\_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgaccum
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldarg_3.exe_1754]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3\OpCodesLdarg_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct01_static.exe_3136]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_reltest1.exe_4214]
+RelativePath=JIT\Methodical\Invoke\callvirt\_reltest1\_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_reltest1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanticksperhour.exe_2407]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour\TimeSpanTicksPerHour.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimaldiv_cs_ro.exe_3799]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_ro\decimaldiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[25param1a_cs_do.exe_4186]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_do\25param1a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodingctor2.exe_2348]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2\UTF8EncodingCtor2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[regioninfoismetric.exe_1201]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric\RegionInfoIsMetric.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint64iconvertibletouint16.exe_2522]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16\UInt64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpcall2.exe_2650]
+RelativePath=JIT\CodeGenBringUpTests\FPCall2\FPCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84592.exe_5661]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592\b84592.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[listindexof2.exe_647]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2\ListIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread27.exe_142]
+RelativePath=baseservices\threading\generics\threadstart\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread27
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[_dbgknight.exe_4645]
+RelativePath=JIT\Methodical\VT\etc\_dbgknight\_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgknight
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch05.exe_42]
+RelativePath=baseservices\exceptions\generics\try-catch05\try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch05
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[le1.exe_2699]
+RelativePath=JIT\CodeGenBringUpTests\Le1\Le1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Le1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[vt3_il_r.exe_3178]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_r\vt3_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b36472.exe_5053]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472\b36472.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2925
+[versioncompareto2.exe_2547]
+RelativePath=CoreMangLib\cti\system\version\VersionCompareTo2\VersionCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCompareTo2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcompat_i2_bool.exe_4567]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i2_bool\_il_relcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i2_bool
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[assemblynameversion.exe_1631]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion\AssemblyNameVersion.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgthisnull.exe_4309]
+RelativePath=JIT\Methodical\Invoke\thiscall\_dbgthisnull\_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_dbgthisnull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble13.exe_766]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble13\ConvertToDouble13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[vsw593884.exe_5787]
+RelativePath=Loader\classloader\methodoverriding\regressions\593884\vsw593884\vsw593884.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\593884\vsw593884
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relldobj_v.exe_4704]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_V\_il_relldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_V
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[osraddovershot.exe_4026]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot\osrAddovershot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint32equals2.exe_2483]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals2\UInt32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84958.exe_5663]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958\b84958.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reltest2.exe_4212]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest2\_il_reltest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstind_i8.exe_1863]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8\OpCodesStind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[streamreadernull_psc.exe_1469]
+RelativePath=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC\StreamReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_passing_struct01.exe_3232]
+RelativePath=JIT\Generics\Fields\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartushort_1.exe_238]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartUShort_1\ThreadStartUShort_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartUShort_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[opcodesldc_i4_4.exe_1761]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4\OpCodesLdc_I4_4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[instance_assignment_struct01.exe_3275]
+RelativePath=JIT\Generics\Parameters\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathmin1.exe_1503]
+RelativePath=CoreMangLib\cti\system\math\MathMin1\MathMin1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryotherpunctuation.exe_1248]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation\UnicodeCategoryOtherPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relrefarg_s.exe_3949]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_s\_il_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_s
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charequals2.exe_426]
+RelativePath=CoreMangLib\cti\system\char\CharEquals2\CharEquals2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b89946.exe_5451]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946\b89946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struc01.exe_3133]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01\struc01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-finally-struct02.exe_24]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct02\try-catch-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstartchar_3.exe_189]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartChar_3\ThreadStartChar_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartChar_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[assemblynameflagspublickey.exe_1633]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey\AssemblyNameFlagsPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[compareexchangelong_1.exe_158]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1\CompareExchangeLong_1.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[converttostring12.exe_843]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString12\ConvertToString12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathmax10.exe_1493]
+RelativePath=CoreMangLib\cti\system\math\MathMax10\MathMax10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relcatchfinally_tail.exe_4304]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail\_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[doublearr_cs_do.exe_4329]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b67819.exe_5355]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819\b67819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lcs.exe_4524]
+RelativePath=JIT\Methodical\refany\lcs\lcs.exe
+WorkingDir=JIT\Methodical\refany\lcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[add.exe_3299]
+RelativePath=JIT\IL_Conformance\Old\Base\add\add.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\add
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33361.exe_5201]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361\b33361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[specific_class_instance02.exe_3214]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance02\specific_class_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;UNWIND
+[25param1c_il_d.exe_4191]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_d\25param1c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesshr_un.exe_1845]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un\OpCodesShr_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[operandtypeinlineswitch.exe_1905]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch\OperandTypeInlineSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosbyte2.exe_826]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte2\ConvertToSByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14591.exe_4858]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591\b14591.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b68872.exe_5361]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872\b68872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b176032.exe_5580]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032\b176032.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[enumtostring3.exe_1085]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString3\EnumToString3.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[osr001.exe_3513]
+RelativePath=JIT\jit64\opt\osr\osr001\osr001.exe
+WorkingDir=JIT\jit64\opt\osr\osr001
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[call1.exe_2613]
+RelativePath=JIT\CodeGenBringUpTests\Call1\Call1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Call1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraygetupperbound.exe_287]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetUpperBound\ArrayGetUpperBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetUpperBound
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraysort2.exe_335]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2\ArraySort2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b70335.exe_5369]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335\b70335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_cs_ro.exe_4367]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_ro\float_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgdeep_array_nz.exe_4549]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array_nz\_il_dbgdeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array_nz
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletosingle.exe_410]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle\ByteIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interface_struct02.exe_3271]
+RelativePath=JIT\Generics\MemberAccess\interface_struct02\interface_struct02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgselfref.exe_3617]
+RelativePath=JIT\Methodical\Arrays\misc\_dbgselfref\_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbgselfref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesnewobj.exe_1823]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj\OpCodesNewobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[verify01_large.exe_4320]
+RelativePath=JIT\Methodical\localloc\verify\verify01_large\verify01_large.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_large
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relcastclass_ldarg.exe_3718]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldarg\_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldarg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[booleanequals_object.exe_375]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Object\BooleanEquals_Object.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Object
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[keyvaluepairctor.exe_610]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor\KeyValuePairctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[asgand1.exe_2608]
+RelativePath=JIT\CodeGenBringUpTests\AsgAnd1\AsgAnd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAnd1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[numberstylesallowleadingwhite.exe_1185]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite\NumberStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b41262.exe_5088]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262\b41262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread23.exe_138]
+RelativePath=baseservices\threading\generics\threadstart\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread23
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[vsw405223.exe_5795]
+RelativePath=Loader\classloader\regressions\405223\vsw405223\vsw405223.exe
+WorkingDir=Loader\classloader\regressions\405223\vsw405223
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgarray1.exe_4527]
+RelativePath=JIT\Methodical\refany\_il_dbgarray1\_il_dbgarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort6.exe_341]
+RelativePath=CoreMangLib\cti\system\array\ArraySort6\ArraySort6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort6
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[genericexceptions02.exe_6]
+RelativePath=baseservices\exceptions\generics\GenericExceptions02\GenericExceptions02.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[convr8d_il_r.exe_4049]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_r\convr8d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byte_cs_ro.exe_4351]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_ro\byte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodechar.exe_2436]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeChar\TypeCodeChar.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[regioninfocurrencysymbol.exe_1197]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrencySymbol\RegionInfoCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrencySymbol
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_dbgvcall.exe_4668]
+RelativePath=JIT\Methodical\VT\identity\_dbgvcall\_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgvcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[349379.exe_71]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\349379\349379\349379.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\349379\349379
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryvaluecollectionenumeratormovenext.exe_575]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraycreateinstance2.exe_282]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2\ArrayCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test0828.exe_5856]
+RelativePath=Regressions\coreclr\0828\Test0828\Test0828.exe
+WorkingDir=Regressions\coreclr\0828\Test0828
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b151497.exe_5574]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497\b151497.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryenumeratormovenext.exe_541]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext\DictionaryEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraygetvalue2.exe_290]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2\ArrayGetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;UNSTABLE
+[_il_dbgjumper4.exe_4610]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper4\_il_dbgjumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttoint32_7.exe_803]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_7\ConvertToInt32_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_7
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpmul.exe_2662]
+RelativePath=JIT\CodeGenBringUpTests\FPMul\FPMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arrayindexof1.exe_302]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1\ArrayIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cse_cmpxchg.exe_2922]
+RelativePath=JIT\Directed\intrinsic\interlocked\cse_cmpxchg\cse_cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cse_cmpxchg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2823
+[uint64iconvertibletouint32.exe_2523]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32\UInt64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_do.exe_4341]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtruegtint1.exe_2689]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtInt1\JTrueGtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtInt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arraysort8.exe_343]
+RelativePath=CoreMangLib\cti\system\array\ArraySort8\ArraySort8.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathsign5.exe_1524]
+RelativePath=CoreMangLib\cti\system\math\MathSign5\MathSign5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[call_instance01_do.exe_3185]
+RelativePath=JIT\Generics\Constraints\Call_instance01_do\Call_instance01_do.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread26.exe_141]
+RelativePath=baseservices\threading\generics\threadstart\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread26
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[bool_or_op_cs_r.exe_2766]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_r\Bool_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartbyte_1.exe_181]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartByte_1\ThreadStartByte_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartByte_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[missingmanifestresourceexceptionctor2.exe_2049]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2\MissingManifestResourceExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesnop.exe_1824]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop\OpCodesNop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[chariswhitespace1.exe_465]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace1\CharIsWhiteSpace1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[datetimeformatinforeadonly.exe_1159]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly\DateTimeFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodimplattributesforwardref.exe_1993]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef\MethodImplAttributesForwardRef.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodeencodinggetdecoder.exe_2340]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder\UnicodeEncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b108908.exe_5633]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908\b108908.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[foo2_dbg.exe_3529]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg\foo2_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfostring.exe_1215]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString\StringInfoString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[gthread23.exe_108]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread23
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[opcodesldtoken.exe_1812]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken\OpCodesLdtoken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[assemblyconfigurationattributector.exe_1616]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor\AssemblyConfigurationAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[missingmanifestresourceexceptionctor3.exe_2050]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3\MissingManifestResourceExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[shift_jis.exe_2574]
+RelativePath=CoreMangLib\system\text\encoding\Shift_Jis\Shift_Jis.exe
+WorkingDir=CoreMangLib\system\text\encoding\Shift_Jis
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b62145.exe_5332]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145\b62145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cultureinfoinvariantculture.exe_1140]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture\CultureInfoInvariantCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8rem_cs_r.exe_3839]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_r\i8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtruenedbl.exe_2696]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeDbl\JTrueNeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble11.exe_764]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble11\ConvertToDouble11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble11
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgiu2.exe_4270]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu2\_il_dbgiu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relqperm.exe_3905]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm\_il_relqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b41495.exe_5093]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495\b41495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b07704.exe_5025]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704\b07704.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgi_prop.exe_3871]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop\_il_dbgi_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fileaccessread.exe_1399]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessRead\FileAccessRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessRead
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_dbglcs_long.exe_4061]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_long\_speed_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_long
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE;ISSUE_3515
+[b48797.exe_5164]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797\b48797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[class02.exe_3127]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02\class02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldind_i4.exe_1790]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4\OpCodesLdind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[jump.exe_2968]
+RelativePath=JIT\Directed\pinvoke\jump\jump.exe
+WorkingDir=JIT\Directed\pinvoke\jump
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodimplattributesruntime.exe_2002]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime\MethodImplAttributesRuntime.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[unicodecategoryothernotassigned.exe_1246]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned\UnicodeCategoryOtherNotAssigned.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dividebyzeroexceptionctor.exe_1040]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor\DivideByZeroExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ivtactor.exe_2062]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor\IVTACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[delegate.exe_4501]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate\delegate.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b44657.exe_5123]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657\b44657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldloca_s.exe_1801]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S\OpCodesLdloca_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fileattributesreparsepoint.exe_1413]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint\FileAttributesReparsePoint.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b31102.exe_4963]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102\b31102.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byteiconvertibletodatetime.exe_403]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime\ByteIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b119294.exe_5483]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294\b119294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b119538a.exe_5471]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a\b119538a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm32_cs_ro.exe_4439]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_ro\arithm32_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[textinfotoupper1.exe_1226]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1\TextInfoToUpper1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[init_struct.exe_3120]
+RelativePath=JIT\Directed\zeroinit\init_struct\init_struct.exe
+WorkingDir=JIT\Directed\zeroinit\init_struct
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lclfldadd_cs_d.exe_2860]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_d\lclfldadd_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64gethashcode.exe_1349]
+RelativePath=CoreMangLib\cti\system\int64\Int64GetHashCode\Int64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64GetHashCode
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structva1_1.exe_3430]
+RelativePath=JIT\jit64\gc\misc\structva1_1\structva1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structva1_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ambiguousmatchexceptionctor1.exe_1612]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1\AmbiguousMatchExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgrecurse_jmpi.exe_4239]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi\_il_dbgrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryicollectionsyncroot2.exe_511]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2\DictionaryICollectionSyncRoot2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nongentogen02.exe_3201]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen02\nongentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relvcall.exe_4680]
+RelativePath=JIT\Methodical\VT\identity\_speed_relvcall\_speed_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relvcall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgisinst_newobj.exe_3698]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_newobj\_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_base_2.exe_2739]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2\Generic_Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[deadlock_il_d.exe_3767]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_d\deadlock_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_i2.exe_1775]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2\OpCodesLdelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_rellcs.exe_4687]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodescgt.exe_1697]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt\OpCodesCgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b53977.exe_5272]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977\b53977.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[prefldinit2_il_d.exe_3788]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_d\prefldinit2_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[chariconvertibletosbyte.exe_437]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSByte\CharIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[fpconvdbl2lng.exe_2651]
+RelativePath=JIT\CodeGenBringUpTests\FPConvDbl2Lng\FPConvDbl2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvDbl2Lng
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[decimal_cs_r.exe_4358]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_r\decimal_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b71135.exe_5380]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135\b71135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b16295.exe_4874]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295\b16295.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread21.exe_136]
+RelativePath=baseservices\threading\generics\threadstart\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread21
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[b33922.exe_5044]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922\b33922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33585.exe_5204]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585\b33585.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[timespanzero.exe_2416]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanZero\TimeSpanZero.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanZero
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[struct9.exe_3393]
+RelativePath=JIT\jit64\gc\misc\struct9\struct9.exe
+WorkingDir=JIT\jit64\gc\misc\struct9
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtruenefp.exe_2697]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeFP\JTrueNeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeFP
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[copyto3.exe_619]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo3\CopyTo3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttouint643.exe_922]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt643\ConvertToUInt643.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt643
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[pow0_cs_ro.exe_2930]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_ro\pow0_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[datetimeformatinfosortabledatetimepattern.exe_1161]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern\DateTimeFormatInfoSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_reljumper4.exe_4621]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper4\_il_reljumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b598649.exe_5563]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649\b598649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[encodingwebname.exe_2291]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingWebName\EncodingWebName.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingWebName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[enternull.exe_171]
+RelativePath=baseservices\threading\monitor\enter\EnterNull\EnterNull.exe
+WorkingDir=baseservices\threading\monitor\enter\EnterNull
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[platformnotsupportedexceptionctor2.exe_1596]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2\PlatformNotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b14314.exe_4800]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314\b14314.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesbgt.exe_1670]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt\OpCodesBgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldelem_i1.exe_1774]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1\OpCodesLdelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b59858.exe_5316]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858\b59858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[badmatrixmul_o.exe_3536]
+RelativePath=JIT\jit64\opt\rngchk\BadMatrixMul_o\BadMatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\BadMatrixMul_o
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[genericexceptions03.exe_7]
+RelativePath=baseservices\exceptions\generics\GenericExceptions03\GenericExceptions03.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13522.exe_4839]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522\b13522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[objecttostring.exe_1580]
+RelativePath=CoreMangLib\cti\system\object\ObjectToString\ObjectToString.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectToString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttosingle13.exe_835]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle13\ConvertToSingle13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle13
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[numberstylesallowthousands.exe_1187]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands\NumberStylesAllowThousands.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test2.exe_5554]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2\test2.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14624.exe_4807]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624\b14624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[codesize1.exe_4722]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstsfld.exe_1874]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld\OpCodesStsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[csgen.2.exe_2595]
+RelativePath=hosting\stress\testset1\csgen.2\csgen.2.exe
+WorkingDir=hosting\stress\testset1\csgen.2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[call_instance01_d.exe_3184]
+RelativePath=JIT\Generics\Constraints\Call_instance01_d\Call_instance01_d.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ne1.exe_2710]
+RelativePath=JIT\CodeGenBringUpTests\Ne1\Ne1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ne1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[jtrueledbl.exe_2690]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeDbl\JTrueLeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeDbl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10827.exe_5686]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827\b10827.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b43069.exe_5106]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069\b43069.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[enumiconvertibletoint64.exe_1076]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64\EnumIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgdeep_virt.exe_4553]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_virt\_il_dbgdeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_virt
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct8.exe_3392]
+RelativePath=JIT\jit64\gc\misc\struct8\struct8.exe
+WorkingDir=JIT\jit64\gc\misc\struct8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64iconvertibletosingle.exe_2520]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle\UInt64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[static_equalnull_class01.exe_3282]
+RelativePath=JIT\Generics\Parameters\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_class01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cgrecurseaaa_ro.exe_3443]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro\CGRecurseAAA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b76590.exe_5413]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590\b76590.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[lur_02.exe_3512]
+RelativePath=JIT\jit64\opt\lur\lur_02\lur_02.exe
+WorkingDir=JIT\jit64\opt\lur\lur_02
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldelem_r4.exe_1778]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4\OpCodesLdelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interfacecall.exe_4754]
+RelativePath=JIT\opt\Inline\interfaceCall\interfaceCall.exe
+WorkingDir=JIT\opt\Inline\interfaceCall
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpopref_popi_popi8.exe_1937]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8\StackBehaviourPopref_popi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[r8nanmul_cs_d.exe_4488]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_d\r8NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgldelema.exe_4708]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgldelema\_il_dbgldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgldelema
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[constructorinfotypeconstructorname.exe_1643]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName\ConstructorInfoTypeConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeparameter011.exe_63]
+RelativePath=baseservices\exceptions\generics\TypeParameter011\TypeParameter011.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter011
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dblrem.exe_2631]
+RelativePath=JIT\CodeGenBringUpTests\DblRem\DblRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRem
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[comparisoninvoke.exe_708]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonInvoke\ComparisonInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonInvoke
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dividebyzeroexceptionctor3.exe_1042]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3\DivideByZeroExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_speed_relldsfld_mulovf.exe_4183]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf\_speed_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[long_cs_ro.exe_4375]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_ro\long_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_ro
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbgvalftn.exe_4242]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn\_il_dbgvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[arithm64_do.exe_4449]
+RelativePath=JIT\Methodical\NaN\arithm64_do\arithm64_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[expl_double_1.exe_5832]
+RelativePath=Regressions\coreclr\0041\expl_double_1\expl_double_1.exe
+WorkingDir=Regressions\coreclr\0041\expl_double_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[ifelse.exe_4737]
+RelativePath=JIT\opt\Inline\ifelse\ifelse.exe
+WorkingDir=JIT\opt\Inline\ifelse
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[float_cs_do.exe_4365]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_do\float_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[byte_cs_do.exe_4349]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_do\byte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[test_csharp_peer_2.exe_2753]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2\Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b02345.exe_5505]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345\b02345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;UNSTABLE
+[booleantruestring.exe_395]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTrueString\BooleanTrueString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTrueString
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[bitwiseoperations.exe_5741]
+RelativePath=JIT\SIMD\BitwiseOperations\BitwiseOperations.exe
+WorkingDir=JIT\SIMD\BitwiseOperations
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b85316.exe_5668]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cmpxchg.exe_2921]
+RelativePath=JIT\Directed\intrinsic\interlocked\cmpxchg\cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cmpxchg
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct6_4.exe_3389]
+RelativePath=JIT\jit64\gc\misc\struct6_4\struct6_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_equalnull_struct01.exe_3277]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dayofweeksunday.exe_972]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday\DayOfWeekSunday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b51463.exe_5253]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463\b51463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mul2.exe_2707]
+RelativePath=JIT\CodeGenBringUpTests\mul2\mul2.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[methodattributesfinal.exe_1975]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal\MethodAttributesFinal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b12390.exe_5693]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390\b12390.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[keycollectiongetenumerator.exe_549]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator\KeyCollectionGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structfp2_4.exe_3404]
+RelativePath=JIT\jit64\gc\misc\structfp2_4\structfp2_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b14927.exe_4863]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927\b14927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[cpblk.exe_2974]
+RelativePath=JIT\Directed\PREFIX\unaligned\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\1\cpblk
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesstelem_ref.exe_1857]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref\OpCodesStelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleanequals_boolean.exe_374]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean\BooleanEquals_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryentryctor.exe_481]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor\DictionaryEntryCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttoint32_4.exe_800]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_4\ConvertToInt32_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[specific_struct_static01.exe_3219]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static01\specific_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[operandtypeshortinlinevar.exe_1912]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar\OperandTypeShortInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[structarr_cs_do.exe_4409]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relhan3.exe_4662]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3\_speed_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[try-catch-struct04.exe_32]
+RelativePath=baseservices\exceptions\generics\try-catch-struct04\try-catch-struct04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct04
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b70964.exe_5373]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964\b70964.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ret_struct_test1.exe_3363]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test1\ret_struct_test1.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relcatchfinally.exe_4303]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally\_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryicollectioncopyto.exe_503]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo\DictionaryICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[nullable.exe_5833]
+RelativePath=Regressions\coreclr\0044\nullable\nullable.exe
+WorkingDir=Regressions\coreclr\0044\nullable
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[class1_cs_r.exe_3155]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_r\class1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryicollectionadd.exe_501]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd\DictionaryICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[initobj.exe_2675]
+RelativePath=JIT\CodeGenBringUpTests\InitObj\InitObj.exe
+WorkingDir=JIT\CodeGenBringUpTests\InitObj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33888.exe_5043]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888\b33888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[instance_assignment_struct01.exe_3255]
+RelativePath=JIT\Generics\Locals\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_struct01
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[comp64_il_d.exe_4454]
+RelativePath=JIT\Methodical\NaN\comp64_il_d\comp64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_3105
+[tailcall_av.exe_4593]
+RelativePath=JIT\Methodical\tailcall_v4\tailcall_AV\tailcall_AV.exe
+WorkingDir=JIT\Methodical\tailcall_v4\tailcall_AV
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2987
+[compilation.exe_5808]
+RelativePath=managed\Compilation\Compilation\Compilation.exe
+WorkingDir=managed\Compilation\Compilation
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[opcodesconv_ovf_u_un.exe_1727]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un\OpCodesConv_Ovf_U_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[stackbehaviourpushi8.exe_1945]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8\StackBehaviourPushi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[cgstress1_d.exe_3456]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_d\CgStress1_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;REQ_LARGE_GEN0
+[b50145a.exe_5248]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a\b50145a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesswitch.exe_1878]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch\OpCodesSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[interlock.exe_5837]
+RelativePath=Regressions\coreclr\0077\interlock\interlock.exe
+WorkingDir=Regressions\coreclr\0077\interlock
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[array_tests.exe_2995]
+RelativePath=JIT\Directed\PREFIX\unaligned\4\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\PREFIX\unaligned\4\array_tests
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[utf8encodinggetencoder.exe_2358]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder\UTF8EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[int32iconvertibletochar.exe_1296]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToChar\Int32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToChar
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[arraylastindexof1b.exe_312]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1b\ArrayLastIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b88797.exe_5444]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797\b88797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relvtret.exe_4623]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret\_il_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_neg_i4.exe_3338]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4\ldc_neg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_dbginstftn.exe_4235]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn\_il_dbginstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartdelegate_1.exe_194]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDelegate_1\ThreadStartDelegate_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDelegate_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b09495.exe_4822]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495\b09495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringtrim2.exe_2245]
+RelativePath=CoreMangLib\cti\system\string\StringTrim2\StringTrim2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b84131.exe_5657]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131\b84131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relinstftn.exe_4247]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn\_il_relinstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10841.exe_5687]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841\b10841.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_relnestval_cs.exe_3682]
+RelativePath=JIT\Methodical\Boxing\misc\_relnestval_cs\_relnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_cs
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[outofmemoryexceptionctor3.exe_1590]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3\OutOfMemoryExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dblarray.exe_2619]
+RelativePath=JIT\CodeGenBringUpTests\DblArray\DblArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstatic03.exe_5875]
+RelativePath=Threading\ThreadStatics\ThreadStatic03\ThreadStatic03.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[obsoleteattributector2.exe_1584]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2\ObsoleteAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttochar5.exe_740]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar5\ConvertToChar5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar5
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[booleaniconvertibletobyte.exe_379]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte\BooleanIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesldloc_1.exe_1803]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1\OpCodesLdloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_relcastclass_newobj.exe_3720]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_newobj\_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_newobj
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[int64_r.exe_3038]
+RelativePath=JIT\Directed\shift\int64_r\int64_r.exe
+WorkingDir=JIT\Directed\shift\int64_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringinfoctor2.exe_1207]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2\StringInfoCtor2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35486.exe_5215]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486\b35486.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint16iconvertibletodatetime.exe_2461]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime\UInt16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionarytrygetvalue.exe_533]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue\DictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[opcodesprefix2.exe_1829]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2\OpCodesPrefix2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b27657.exe_4928]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657\b27657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typeattributesunicodeclass.exe_2045]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass\TypeAttributesUnicodeClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[i8_cs_do.exe_3644]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_do\i8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_relsuperlong.exe_4136]
+RelativePath=JIT\Methodical\int64\superlong\_speed_relsuperlong\_speed_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_relsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_relreference_i.exe_4583]
+RelativePath=JIT\Methodical\tailcall\_il_relreference_i\_il_relreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relreference_i
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b10940b.exe_4829]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b\b10940b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fparray.exe_2646]
+RelativePath=JIT\CodeGenBringUpTests\FPArray\FPArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArray
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_rellcs2.exe_3592]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs2\_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesldc_r4.exe_1769]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4\OpCodesLdc_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listgetenumerator.exe_630]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator\ListGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[abovestacklimit.exe_5839]
+RelativePath=Regressions\coreclr\0099\AboveStackLimit\AboveStackLimit.exe
+WorkingDir=Regressions\coreclr\0099\AboveStackLimit
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3032;DBG_FAIL;ISSUE_5814
+[b565808.exe_5560]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808\b565808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charisupper2.exe_464]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper2\CharIsUpper2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[castclasseh.exe_4027]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH\castClassEH.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_mul_ovf_i4.exe_3332]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4\ldc_mul_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[gthread16.exe_131]
+RelativePath=baseservices\threading\generics\threadstart\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread16
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_2823
+[fiborec.exe_2642]
+RelativePath=JIT\CodeGenBringUpTests\FiboRec\FiboRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FiboRec
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_dbgsuperlong.exe_4131]
+RelativePath=JIT\Methodical\int64\superlong\_dbgsuperlong\_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_dbgsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[struct6_2.exe_3388]
+RelativePath=JIT\jit64\gc\misc\struct6_2\struct6_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS;ISSUE_2988
+[interlockedaddint_4.exe_153]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddInt_4\InterlockedAddInt_4.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddInt_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b36471.exe_5052]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471\b36471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33335.exe_5200]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335\b33335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stringpadleft1.exe_2229]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft1\StringPadLeft1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[filemodeappend.exe_1416]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeAppend\FileModeAppend.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeAppend
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uint32iconvertibletotype.exe_2495]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType\UInt32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbggcval.exe_4554]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval\_il_dbggcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathcos.exe_1484]
+RelativePath=CoreMangLib\cti\system\math\MathCos\MathCos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCos
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[uintptrequals.exe_2536]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrEquals\UIntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[badendfinally.exe_2826]
+RelativePath=JIT\Directed\coverage\importer\badendfinally\badendfinally.exe
+WorkingDir=JIT\Directed\coverage\importer\badendfinally
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[devdiv_794631_d.exe_5611]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d\DevDiv_794631_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[charispunctuation2.exe_455]
+RelativePath=CoreMangLib\cti\system\char\CharIsPunctuation2\CharIsPunctuation2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsPunctuation2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryidictionarykeys.exe_521]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys\DictionaryIDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dictionaryclear.exe_489]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear\DictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[dblmul.exe_2628]
+RelativePath=JIT\CodeGenBringUpTests\DblMul\DblMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMul
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b47610.exe_5156]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610\b47610.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b74976.exe_5406]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976\b74976.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b32614.exe_5196]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614\b32614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b60723.exe_5325]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723\b60723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_il_reli4u4.exe_4276]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u4\_il_reli4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryidictionarygetenumerator.exe_514]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator\DictionaryIDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relcompat_i_u2.exe_4570]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i_u2\_il_relcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i_u2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b84136.exe_5658]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136\b84136.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[stackbehaviourpop1.exe_1923]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1\StackBehaviourPop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[threadstatic03.exe_248]
+RelativePath=baseservices\threading\threadstatic\ThreadStatic03\ThreadStatic03.exe
+WorkingDir=baseservices\threading\threadstatic\ThreadStatic03
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[tryenterfailureddbugs124485.exe_242]
+RelativePath=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485\TryEnterFailureDDBugs124485.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[precise2_cs_do.exe_3779]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_do\precise2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_do
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dictionaryenumeratordispose.exe_540]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose\DictionaryEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[guid_parsing.exe_2572]
+RelativePath=CoreMangLib\system\guid\Guid_Parsing\Guid_Parsing.exe
+WorkingDir=CoreMangLib\system\guid\Guid_Parsing
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeisbyrefimpl.exe_2427]
+RelativePath=CoreMangLib\cti\system\type\TypeIsByRefImpl\TypeIsByRefImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsByRefImpl
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[mathsign4.exe_1523]
+RelativePath=CoreMangLib\cti\system\math\MathSign4\MathSign4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[asgxor1.exe_2611]
+RelativePath=JIT\CodeGenBringUpTests\AsgXor1\AsgXor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgXor1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b56174.exe_5291]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174\b56174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b33586.exe_5205]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586\b33586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgbox.exe_4074]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbox\_speed_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbox
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[threadstartlong_1.exe_209]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartLong_1\ThreadStartLong_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartLong_1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[int32minvalue.exe_1310]
+RelativePath=CoreMangLib\cti\system\int\Int32MinValue\Int32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MinValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[encodinggetmaxcharcount.exe_2286]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount\EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_relinstftn_t.exe_4248]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn_t\_il_relinstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn_t
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[actionctor.exe_253]
+RelativePath=CoreMangLib\cti\system\action\ActionCtor\ActionCtor.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionCtor
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b73283.exe_5399]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283\b73283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[mathsign2.exe_1521]
+RelativePath=CoreMangLib\cti\system\math\MathSign2\MathSign2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS;ISSUE_3105
+[threadstartdouble_2.exe_198]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_2\ThreadStartDouble_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;MISSING_EXE
+[b12624.exe_4837]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624\b12624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ldc_c_ret.exe_3328]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret\ldc_c_ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[opcodesrefanytype.exe_1837]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype\OpCodesRefanytype.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[test_csharp_peer_4.exe_2755]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4\Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[filemodeopen.exe_1420]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpen\FileModeOpen.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpen
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[indexoutofrangeexceptionctor2.exe_1288]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2\IndexOutOfRangeExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[case12.exe_5771]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12\case12.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b35351.exe_5212]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351\b35351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[catch3_d.exe_2944]
+RelativePath=JIT\Directed\leave\catch3_d\catch3_d.exe
+WorkingDir=JIT\Directed\leave\catch3_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_dbgiface1.exe_3745]
+RelativePath=JIT\Methodical\casts\iface\_speed_dbgiface1\_speed_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_dbgiface1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b25458.exe_4899]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458\b25458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[typecodesbyte.exe_2445]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSByte\TypeCodeSByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSByte
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[runtimefieldhandleequals.exe_2120]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals\RuntimeFieldHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[listlastindexof3.exe_652]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3\ListLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[exchange.exe_3567]
+RelativePath=JIT\jit64\regress\vsw\534486\exchange\exchange.exe
+WorkingDir=JIT\jit64\regress\vsw\534486\exchange
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[double_xor_op_cs_r.exe_2786]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_r\Double_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[unicodecategoryspaceseparator.exe_1252]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator\UnicodeCategorySpaceSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typecodedatetime.exe_2437]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDateTime\TypeCodeDateTime.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDateTime
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[converttodecimal14.exe_752]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal14\ConvertToDecimal14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal14
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[eh1.exe_3358]
+RelativePath=JIT\jit64\gc\misc\eh1\eh1.exe
+WorkingDir=JIT\jit64\gc\misc\eh1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[b36304.exe_5220]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304\b36304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[generic_test_csharp_peer_3.exe_2745]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3\Generic_Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[enumiconvertibletouint64.exe_1081]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64\EnumIConvertibleToUint64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[try3_d.exe_2956]
+RelativePath=JIT\Directed\leave\try3_d\try3_d.exe
+WorkingDir=JIT\Directed\leave\try3_d
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[dayofweeksaturday.exe_971]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday\DayOfWeekSaturday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[typeloadexceptionmessage.exe_2454]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage\TypeLoadExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[decimalmaxvalue.exe_992]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMaxValue\DecimalMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMaxValue
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[methodattributespublic.exe_1983]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic\MethodAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgsuperlong.exe_4132]
+RelativePath=JIT\Methodical\int64\superlong\_il_dbgsuperlong\_il_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_dbgsuperlong
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[ptuple_lost.exe_4022]
+RelativePath=JIT\Methodical\flowgraph\bug621705\ptuple_lost\ptuple_lost.exe
+WorkingDir=JIT\Methodical\flowgraph\bug621705\ptuple_lost
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[_speed_rels_muldiv.exe_4130]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_muldiv\_speed_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_muldiv
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[csgen.1.exe_5852]
+RelativePath=Regressions\coreclr\0582\csgen.1\csgen.1.exe
+WorkingDir=Regressions\coreclr\0582\csgen.1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b72136.exe_5389]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136\b72136.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[bbcnt1.exe_4721]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[u4div_cs_r.exe_3823]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_r\u4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[fpadd.exe_2643]
+RelativePath=JIT\CodeGenBringUpTests\FPAdd\FPAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAdd
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[uint64_r.exe_3064]
+RelativePath=JIT\Directed\shift\uint64_r\uint64_r.exe
+WorkingDir=JIT\Directed\shift\uint64_r
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[converttodouble10.exe_763]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble10\ConvertToDouble10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble10
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[b13170.exe_4794]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170\b13170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
+[autoreseteventreset.exe_2365]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet\AutoResetEventReSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=RT;EXPECTED_PASS
+[_il_dbgfilter.exe_3753]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgfilter\_il_dbgfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgfilter
+MaxAllowedDurationSeconds=600
+HostStyle=Any
+Expected=100
+Categories=JIT;EXPECTED_PASS
diff --git a/tests/scripts/test/TestsOrig.lst b/tests/scripts/test/TestsOrig.lst
new file mode 100644
index 0000000000..5fba99355e
--- /dev/null
+++ b/tests/scripts/test/TestsOrig.lst
@@ -0,0 +1,59314 @@
+##=== Test Definitions ===============================
+[Finalizer.exe_0]
+RelativePath=Exceptions\Finalization\Finalizer\Finalizer.exe
+WorkingDir=Exceptions\Finalization\Finalizer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LargeObjectAlloc.exe_1]
+RelativePath=GC\Coverage\LargeObjectAlloc\LargeObjectAlloc.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LargeObjectAlloc2.exe_2]
+RelativePath=GC\Coverage\LargeObjectAlloc2\LargeObjectAlloc2.exe
+WorkingDir=GC\Coverage\LargeObjectAlloc2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Finalizer.exe_3]
+RelativePath=GC\Features\HeapExpansion\Finalizer\Finalizer.exe
+WorkingDir=GC\Features\HeapExpansion\Finalizer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Handles.exe_4]
+RelativePath=GC\Features\HeapExpansion\Handles\Handles.exe
+WorkingDir=GC\Features\HeapExpansion\Handles
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedCollect.exe_5]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedCollect\PinnedCollect.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedCollect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedHandle.exe_6]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedHandle\PinnedHandle.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedHandle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedInt.exe_7]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedInt\PinnedInt.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedInt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedMany.exe_8]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMany\PinnedMany.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMany
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedMultiple.exe_9]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedMultiple\PinnedMultiple.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedMultiple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PinnedObject.exe_10]
+RelativePath=GC\Features\Pinning\PinningOther\PinnedObject\PinnedObject.exe
+WorkingDir=GC\Features\Pinning\PinningOther\PinnedObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[149926.exe_11]
+RelativePath=GC\Regressions\v2.0-beta1\149926\149926\149926.exe
+WorkingDir=GC\Regressions\v2.0-beta1\149926\149926
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[289745.exe_12]
+RelativePath=GC\Regressions\v2.0-beta1\289745\289745\289745.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\289745
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[302560.exe_13]
+RelativePath=GC\Regressions\v2.0-beta1\289745\302560\302560.exe
+WorkingDir=GC\Regressions\v2.0-beta1\289745\302560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[426480.exe_14]
+RelativePath=GC\Regressions\v2.0-beta2\426480\426480\426480.exe
+WorkingDir=GC\Regressions\v2.0-beta2\426480\426480
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[471729.exe_15]
+RelativePath=GC\Regressions\v2.0-beta2\471729\471729\471729.exe
+WorkingDir=GC\Regressions\v2.0-beta2\471729\471729
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[494226.exe_16]
+RelativePath=GC\Regressions\v2.0-rtm\494226\494226\494226.exe
+WorkingDir=GC\Regressions\v2.0-rtm\494226\494226
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[544701.exe_17]
+RelativePath=GC\Regressions\v2.0-rtm\544701\544701\544701.exe
+WorkingDir=GC\Regressions\v2.0-rtm\544701\544701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FinalizeTimeout.exe_18]
+RelativePath=GC\Scenarios\FinalizeTimeout\FinalizeTimeout\FinalizeTimeout.exe
+WorkingDir=GC\Scenarios\FinalizeTimeout\FinalizeTimeout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MarshalBoolArrayTest.exe_19]
+RelativePath=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest\MarshalBoolArrayTest.exe
+WorkingDir=Interop\ArrayMarshalling\BoolArray\MarshalBoolArrayTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MarshalArrayByValTest.exe_20]
+RelativePath=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest\MarshalArrayByValTest.exe
+WorkingDir=Interop\ArrayMarshalling\ByValArray\MarshalArrayByValTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Castable.exe_21]
+RelativePath=Interop\ICastable\Castable\Castable.exe
+WorkingDir=Interop\ICastable\Castable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NativeCallableTest.exe_22]
+RelativePath=Interop\NativeCallable\NativeCallableTest\NativeCallableTest.exe
+WorkingDir=Interop\NativeCallable\NativeCallableTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BoolTest.exe_23]
+RelativePath=Interop\PrimitiveMarshalling\Bool\BoolTest\BoolTest.exe
+WorkingDir=Interop\PrimitiveMarshalling\Bool\BoolTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PInvokeUIntPtrTest.exe_24]
+RelativePath=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest\PInvokeUIntPtrTest.exe
+WorkingDir=Interop\PrimitiveMarshalling\UIntPtr\PInvokeUIntPtrTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MarshalBoolArray.exe_25]
+RelativePath=Interop\ReversePInvoke\Marshalling\MarshalBoolArray\MarshalBoolArray.exe
+WorkingDir=Interop\ReversePInvoke\Marshalling\MarshalBoolArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Not-Int32.exe_26]
+RelativePath=JIT\BBT\Scenario4\Not-Int32\Not-Int32.exe
+WorkingDir=JIT\BBT\Scenario4\Not-Int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Add1.exe_27]
+RelativePath=JIT\CodeGenBringUpTests\Add1\Add1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Add1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[addref.exe_28]
+RelativePath=JIT\CodeGenBringUpTests\addref\addref.exe
+WorkingDir=JIT\CodeGenBringUpTests\addref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[And1.exe_29]
+RelativePath=JIT\CodeGenBringUpTests\And1\And1.exe
+WorkingDir=JIT\CodeGenBringUpTests\And1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AndRef.exe_30]
+RelativePath=JIT\CodeGenBringUpTests\AndRef\AndRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\AndRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Args4.exe_31]
+RelativePath=JIT\CodeGenBringUpTests\Args4\Args4.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Args5.exe_32]
+RelativePath=JIT\CodeGenBringUpTests\Args5\Args5.exe
+WorkingDir=JIT\CodeGenBringUpTests\Args5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AsgAdd1.exe_33]
+RelativePath=JIT\CodeGenBringUpTests\AsgAdd1\AsgAdd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AsgAnd1.exe_34]
+RelativePath=JIT\CodeGenBringUpTests\AsgAnd1\AsgAnd1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgAnd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AsgOr1.exe_35]
+RelativePath=JIT\CodeGenBringUpTests\AsgOr1\AsgOr1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgOr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AsgSub1.exe_36]
+RelativePath=JIT\CodeGenBringUpTests\AsgSub1\AsgSub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgSub1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AsgXor1.exe_37]
+RelativePath=JIT\CodeGenBringUpTests\AsgXor1\AsgXor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\AsgXor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BinaryRMW.exe_38]
+RelativePath=JIT\CodeGenBringUpTests\BinaryRMW\BinaryRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\BinaryRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Call1.exe_39]
+RelativePath=JIT\CodeGenBringUpTests\Call1\Call1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Call1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CnsBool.exe_40]
+RelativePath=JIT\CodeGenBringUpTests\CnsBool\CnsBool.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsBool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CnsLng1.exe_41]
+RelativePath=JIT\CodeGenBringUpTests\CnsLng1\CnsLng1.exe
+WorkingDir=JIT\CodeGenBringUpTests\CnsLng1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblAdd.exe_42]
+RelativePath=JIT\CodeGenBringUpTests\DblAdd\DblAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblAddConst.exe_43]
+RelativePath=JIT\CodeGenBringUpTests\DblAddConst\DblAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAddConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblArea.exe_44]
+RelativePath=JIT\CodeGenBringUpTests\DblArea\DblArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArea
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblArray.exe_45]
+RelativePath=JIT\CodeGenBringUpTests\DblArray\DblArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblAvg2.exe_46]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg2\DblAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblAvg6.exe_47]
+RelativePath=JIT\CodeGenBringUpTests\DblAvg6\DblAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblAvg6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblCall1.exe_48]
+RelativePath=JIT\CodeGenBringUpTests\DblCall1\DblCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblCall2.exe_49]
+RelativePath=JIT\CodeGenBringUpTests\DblCall2\DblCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblCall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblDist.exe_50]
+RelativePath=JIT\CodeGenBringUpTests\DblDist\DblDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblDiv.exe_51]
+RelativePath=JIT\CodeGenBringUpTests\DblDiv\DblDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblDivConst.exe_52]
+RelativePath=JIT\CodeGenBringUpTests\DblDivConst\DblDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblDivConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblFillArray.exe_53]
+RelativePath=JIT\CodeGenBringUpTests\DblFillArray\DblFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblFillArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblMul.exe_54]
+RelativePath=JIT\CodeGenBringUpTests\DblMul\DblMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblMulConst.exe_55]
+RelativePath=JIT\CodeGenBringUpTests\DblMulConst\DblMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblMulConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblNeg.exe_56]
+RelativePath=JIT\CodeGenBringUpTests\DblNeg\DblNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblRem.exe_57]
+RelativePath=JIT\CodeGenBringUpTests\DblRem\DblRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblRoots.exe_58]
+RelativePath=JIT\CodeGenBringUpTests\DblRoots\DblRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblRoots
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblSub.exe_59]
+RelativePath=JIT\CodeGenBringUpTests\DblSub\DblSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblSubConst.exe_60]
+RelativePath=JIT\CodeGenBringUpTests\DblSubConst\DblSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblSubConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DblVar.exe_61]
+RelativePath=JIT\CodeGenBringUpTests\DblVar\DblVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\DblVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div1.exe_62]
+RelativePath=JIT\CodeGenBringUpTests\div1\div1.exe
+WorkingDir=JIT\CodeGenBringUpTests\div1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div2.exe_63]
+RelativePath=JIT\CodeGenBringUpTests\div2\div2.exe
+WorkingDir=JIT\CodeGenBringUpTests\div2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[divref.exe_64]
+RelativePath=JIT\CodeGenBringUpTests\divref\divref.exe
+WorkingDir=JIT\CodeGenBringUpTests\divref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Eq1.exe_65]
+RelativePath=JIT\CodeGenBringUpTests\Eq1\Eq1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Eq1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FactorialRec.exe_66]
+RelativePath=JIT\CodeGenBringUpTests\FactorialRec\FactorialRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FactorialRec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FibLoop.exe_67]
+RelativePath=JIT\CodeGenBringUpTests\FibLoop\FibLoop.exe
+WorkingDir=JIT\CodeGenBringUpTests\FibLoop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FiboRec.exe_68]
+RelativePath=JIT\CodeGenBringUpTests\FiboRec\FiboRec.exe
+WorkingDir=JIT\CodeGenBringUpTests\FiboRec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPAdd.exe_69]
+RelativePath=JIT\CodeGenBringUpTests\FPAdd\FPAdd.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPAddConst.exe_70]
+RelativePath=JIT\CodeGenBringUpTests\FPAddConst\FPAddConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAddConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPArea.exe_71]
+RelativePath=JIT\CodeGenBringUpTests\FPArea\FPArea.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArea
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPArray.exe_72]
+RelativePath=JIT\CodeGenBringUpTests\FPArray\FPArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPAvg2.exe_73]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg2\FPAvg2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPAvg6.exe_74]
+RelativePath=JIT\CodeGenBringUpTests\FPAvg6\FPAvg6.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPAvg6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPCall1.exe_75]
+RelativePath=JIT\CodeGenBringUpTests\FPCall1\FPCall1.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPCall2.exe_76]
+RelativePath=JIT\CodeGenBringUpTests\FPCall2\FPCall2.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPCall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPConvDbl2Lng.exe_77]
+RelativePath=JIT\CodeGenBringUpTests\FPConvDbl2Lng\FPConvDbl2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvDbl2Lng
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPConvF2F.exe_78]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2F\FPConvF2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2F
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPConvF2I.exe_79]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2I\FPConvF2I.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPConvF2Lng.exe_80]
+RelativePath=JIT\CodeGenBringUpTests\FPConvF2Lng\FPConvF2Lng.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvF2Lng
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPConvI2F.exe_81]
+RelativePath=JIT\CodeGenBringUpTests\FPConvI2F\FPConvI2F.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPConvI2F
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPDist.exe_82]
+RelativePath=JIT\CodeGenBringUpTests\FPDist\FPDist.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPDiv.exe_83]
+RelativePath=JIT\CodeGenBringUpTests\FPDiv\FPDiv.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPDivConst.exe_84]
+RelativePath=JIT\CodeGenBringUpTests\FPDivConst\FPDivConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPDivConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPError.exe_85]
+RelativePath=JIT\CodeGenBringUpTests\FPError\FPError.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPError
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPFillArray.exe_86]
+RelativePath=JIT\CodeGenBringUpTests\FPFillArray\FPFillArray.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPFillArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPMath.exe_87]
+RelativePath=JIT\CodeGenBringUpTests\FPMath\FPMath.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMath
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPMul.exe_88]
+RelativePath=JIT\CodeGenBringUpTests\FPMul\FPMul.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPMulConst.exe_89]
+RelativePath=JIT\CodeGenBringUpTests\FPMulConst\FPMulConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPMulConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPNeg.exe_90]
+RelativePath=JIT\CodeGenBringUpTests\FPNeg\FPNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPRem.exe_91]
+RelativePath=JIT\CodeGenBringUpTests\FPRem\FPRem.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPRoots.exe_92]
+RelativePath=JIT\CodeGenBringUpTests\FPRoots\FPRoots.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPRoots
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPSmall.exe_93]
+RelativePath=JIT\CodeGenBringUpTests\FPSmall\FPSmall.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSmall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPSub.exe_94]
+RelativePath=JIT\CodeGenBringUpTests\FPSub\FPSub.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPSubConst.exe_95]
+RelativePath=JIT\CodeGenBringUpTests\FPSubConst\FPSubConst.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPSubConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPVar.exe_96]
+RelativePath=JIT\CodeGenBringUpTests\FPVar\FPVar.exe
+WorkingDir=JIT\CodeGenBringUpTests\FPVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Gcd.exe_97]
+RelativePath=JIT\CodeGenBringUpTests\Gcd\Gcd.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gcd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ge1.exe_98]
+RelativePath=JIT\CodeGenBringUpTests\Ge1\Ge1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ge1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Gt1.exe_99]
+RelativePath=JIT\CodeGenBringUpTests\Gt1\Gt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Gt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ind1.exe_100]
+RelativePath=JIT\CodeGenBringUpTests\Ind1\Ind1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ind1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InitObj.exe_101]
+RelativePath=JIT\CodeGenBringUpTests\InitObj\InitObj.exe
+WorkingDir=JIT\CodeGenBringUpTests\InitObj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InstanceCalls.exe_102]
+RelativePath=JIT\CodeGenBringUpTests\InstanceCalls\InstanceCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\InstanceCalls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[IntArraySum.exe_103]
+RelativePath=JIT\CodeGenBringUpTests\IntArraySum\IntArraySum.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntArraySum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[IntConv.exe_104]
+RelativePath=JIT\CodeGenBringUpTests\IntConv\IntConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\IntConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Jmp1.exe_105]
+RelativePath=JIT\CodeGenBringUpTests\Jmp1\Jmp1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Jmp1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrue1.exe_106]
+RelativePath=JIT\CodeGenBringUpTests\JTrue1\JTrue1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueEqDbl.exe_107]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqDbl\JTrueEqDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueEqFP.exe_108]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqFP\JTrueEqFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueEqInt1.exe_109]
+RelativePath=JIT\CodeGenBringUpTests\JTrueEqInt1\JTrueEqInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueEqInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGeDbl.exe_110]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeDbl\JTrueGeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGeFP.exe_111]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeFP\JTrueGeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGeInt1.exe_112]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGeInt1\JTrueGeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGtDbl.exe_113]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtDbl\JTrueGtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGtFP.exe_114]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtFP\JTrueGtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueGtInt1.exe_115]
+RelativePath=JIT\CodeGenBringUpTests\JTrueGtInt1\JTrueGtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueGtInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLeDbl.exe_116]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeDbl\JTrueLeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLeFP.exe_117]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeFP\JTrueLeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLeInt1.exe_118]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLeInt1\JTrueLeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLtDbl.exe_119]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtDbl\JTrueLtDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLtFP.exe_120]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtFP\JTrueLtFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueLtInt1.exe_121]
+RelativePath=JIT\CodeGenBringUpTests\JTrueLtInt1\JTrueLtInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueLtInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueNeDbl.exe_122]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeDbl\JTrueNeDbl.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeDbl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueNeFP.exe_123]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeFP\JTrueNeFP.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeFP
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JTrueNeInt1.exe_124]
+RelativePath=JIT\CodeGenBringUpTests\JTrueNeInt1\JTrueNeInt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\JTrueNeInt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Le1.exe_125]
+RelativePath=JIT\CodeGenBringUpTests\Le1\Le1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Le1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LeftShift.exe_126]
+RelativePath=JIT\CodeGenBringUpTests\LeftShift\LeftShift.exe
+WorkingDir=JIT\CodeGenBringUpTests\LeftShift
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LngConv.exe_127]
+RelativePath=JIT\CodeGenBringUpTests\LngConv\LngConv.exe
+WorkingDir=JIT\CodeGenBringUpTests\LngConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Localloc.exe_128]
+RelativePath=JIT\CodeGenBringUpTests\Localloc\Localloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\Localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LocallocLarge.exe_129]
+RelativePath=JIT\CodeGenBringUpTests\LocallocLarge\LocallocLarge.exe
+WorkingDir=JIT\CodeGenBringUpTests\LocallocLarge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LongArgsAndReturn.exe_130]
+RelativePath=JIT\CodeGenBringUpTests\LongArgsAndReturn\LongArgsAndReturn.exe
+WorkingDir=JIT\CodeGenBringUpTests\LongArgsAndReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Lt1.exe_131]
+RelativePath=JIT\CodeGenBringUpTests\Lt1\Lt1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Lt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul1.exe_132]
+RelativePath=JIT\CodeGenBringUpTests\mul1\mul1.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul2.exe_133]
+RelativePath=JIT\CodeGenBringUpTests\mul2\mul2.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul3.exe_134]
+RelativePath=JIT\CodeGenBringUpTests\mul3\mul3.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul4.exe_135]
+RelativePath=JIT\CodeGenBringUpTests\mul4\mul4.exe
+WorkingDir=JIT\CodeGenBringUpTests\mul4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ne1.exe_136]
+RelativePath=JIT\CodeGenBringUpTests\Ne1\Ne1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Ne1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NegRMW.exe_137]
+RelativePath=JIT\CodeGenBringUpTests\NegRMW\NegRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NegRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NestedCall.exe_138]
+RelativePath=JIT\CodeGenBringUpTests\NestedCall\NestedCall.exe
+WorkingDir=JIT\CodeGenBringUpTests\NestedCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NotAndNeg.exe_139]
+RelativePath=JIT\CodeGenBringUpTests\NotAndNeg\NotAndNeg.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotAndNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NotRMW.exe_140]
+RelativePath=JIT\CodeGenBringUpTests\NotRMW\NotRMW.exe
+WorkingDir=JIT\CodeGenBringUpTests\NotRMW
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ObjAlloc.exe_141]
+RelativePath=JIT\CodeGenBringUpTests\ObjAlloc\ObjAlloc.exe
+WorkingDir=JIT\CodeGenBringUpTests\ObjAlloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[OpMembersOfStructLocal.exe_142]
+RelativePath=JIT\CodeGenBringUpTests\OpMembersOfStructLocal\OpMembersOfStructLocal.exe
+WorkingDir=JIT\CodeGenBringUpTests\OpMembersOfStructLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Or1.exe_143]
+RelativePath=JIT\CodeGenBringUpTests\Or1\Or1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Or1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[OrRef.exe_144]
+RelativePath=JIT\CodeGenBringUpTests\OrRef\OrRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\OrRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RecursiveTailCall.exe_145]
+RelativePath=JIT\CodeGenBringUpTests\RecursiveTailCall\RecursiveTailCall.exe
+WorkingDir=JIT\CodeGenBringUpTests\RecursiveTailCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem1.exe_146]
+RelativePath=JIT\CodeGenBringUpTests\rem1\rem1.exe
+WorkingDir=JIT\CodeGenBringUpTests\rem1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RightShiftRef.exe_147]
+RelativePath=JIT\CodeGenBringUpTests\RightShiftRef\RightShiftRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\RightShiftRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Rotate.exe_148]
+RelativePath=JIT\CodeGenBringUpTests\Rotate\Rotate.exe
+WorkingDir=JIT\CodeGenBringUpTests\Rotate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StaticCalls.exe_149]
+RelativePath=JIT\CodeGenBringUpTests\StaticCalls\StaticCalls.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticCalls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StaticValueField.exe_150]
+RelativePath=JIT\CodeGenBringUpTests\StaticValueField\StaticValueField.exe
+WorkingDir=JIT\CodeGenBringUpTests\StaticValueField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StructFldAddr.exe_151]
+RelativePath=JIT\CodeGenBringUpTests\StructFldAddr\StructFldAddr.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructFldAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StructInstMethod.exe_152]
+RelativePath=JIT\CodeGenBringUpTests\StructInstMethod\StructInstMethod.exe
+WorkingDir=JIT\CodeGenBringUpTests\StructInstMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Sub1.exe_153]
+RelativePath=JIT\CodeGenBringUpTests\Sub1\Sub1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Sub1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SubRef.exe_154]
+RelativePath=JIT\CodeGenBringUpTests\SubRef\SubRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\SubRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Swap.exe_155]
+RelativePath=JIT\CodeGenBringUpTests\Swap\Swap.exe
+WorkingDir=JIT\CodeGenBringUpTests\Swap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Switch.exe_156]
+RelativePath=JIT\CodeGenBringUpTests\Switch\Switch.exe
+WorkingDir=JIT\CodeGenBringUpTests\Switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Unbox.exe_157]
+RelativePath=JIT\CodeGenBringUpTests\Unbox\Unbox.exe
+WorkingDir=JIT\CodeGenBringUpTests\Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Xor1.exe_158]
+RelativePath=JIT\CodeGenBringUpTests\Xor1\Xor1.exe
+WorkingDir=JIT\CodeGenBringUpTests\Xor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[XorRef.exe_159]
+RelativePath=JIT\CodeGenBringUpTests\XorRef\XorRef.exe
+WorkingDir=JIT\CodeGenBringUpTests\XorRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Arrayscomplex3.exe_160]
+RelativePath=JIT\Directed\array-il\_Arrayscomplex3\_Arrayscomplex3.exe
+WorkingDir=JIT\Directed\array-il\_Arrayscomplex3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Arrayssimple3.exe_161]
+RelativePath=JIT\Directed\array-il\_Arrayssimple3\_Arrayssimple3.exe
+WorkingDir=JIT\Directed\array-il\_Arrayssimple3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Complex1.exe_162]
+RelativePath=JIT\Directed\Arrays\Complex1\Complex1.exe
+WorkingDir=JIT\Directed\Arrays\Complex1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Complex2.exe_163]
+RelativePath=JIT\Directed\Arrays\Complex2\Complex2.exe
+WorkingDir=JIT\Directed\Arrays\Complex2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Simple1.exe_164]
+RelativePath=JIT\Directed\Arrays\Simple1\Simple1.exe
+WorkingDir=JIT\Directed\Arrays\Simple1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Simple2.exe_165]
+RelativePath=JIT\Directed\Arrays\Simple2\Simple2.exe
+WorkingDir=JIT\Directed\Arrays\Simple2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Base_1.exe_166]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1\Generic_Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Base_2.exe_167]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2\Generic_Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Base_3.exe_168]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3\Generic_Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Base_4.exe_169]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4\Generic_Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Base_6.exe_170]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6\Generic_Test_CSharp_Base_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Base_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Peer_1.exe_171]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1\Generic_Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Peer_2.exe_172]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2\Generic_Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Peer_3.exe_173]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3\Generic_Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Peer_4.exe_174]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4\Generic_Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Generic_Test_CSharp_Peer_6.exe_175]
+RelativePath=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6\Generic_Test_CSharp_Peer_6.exe
+WorkingDir=JIT\Directed\CheckedCtor\Generic_Test_CSharp_Peer_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Base_1.exe_176]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_1\Test_CSharp_Base_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Base_2.exe_177]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_2\Test_CSharp_Base_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Base_3.exe_178]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_3\Test_CSharp_Base_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Base_4.exe_179]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Base_4\Test_CSharp_Base_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Base_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Peer_1.exe_180]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1\Test_CSharp_Peer_1.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Peer_2.exe_181]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2\Test_CSharp_Peer_2.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Peer_3.exe_182]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3\Test_CSharp_Peer_3.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_CSharp_Peer_4.exe_183]
+RelativePath=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4\Test_CSharp_Peer_4.exe
+WorkingDir=JIT\Directed\CheckedCtor\Test_CSharp_Peer_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_And_Op_cs_d.exe_184]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_d\Bool_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_And_Op_cs_do.exe_185]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_do\Bool_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_And_Op_cs_r.exe_186]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_r\Bool_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_And_Op_cs_ro.exe_187]
+RelativePath=JIT\Directed\cmov\Bool_And_Op_cs_ro\Bool_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_No_Op_cs_d.exe_188]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_d\Bool_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_No_Op_cs_do.exe_189]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_do\Bool_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_No_Op_cs_r.exe_190]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_r\Bool_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_No_Op_cs_ro.exe_191]
+RelativePath=JIT\Directed\cmov\Bool_No_Op_cs_ro\Bool_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Or_Op_cs_d.exe_192]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_d\Bool_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Or_Op_cs_do.exe_193]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_do\Bool_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Or_Op_cs_r.exe_194]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_r\Bool_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Or_Op_cs_ro.exe_195]
+RelativePath=JIT\Directed\cmov\Bool_Or_Op_cs_ro\Bool_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Xor_Op_cs_d.exe_196]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_d\Bool_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Xor_Op_cs_do.exe_197]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_do\Bool_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Xor_Op_cs_r.exe_198]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_r\Bool_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bool_Xor_Op_cs_ro.exe_199]
+RelativePath=JIT\Directed\cmov\Bool_Xor_Op_cs_ro\Bool_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Bool_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_And_Op_cs_d.exe_200]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_d\Double_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_And_Op_cs_do.exe_201]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_do\Double_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_And_Op_cs_r.exe_202]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_r\Double_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_And_Op_cs_ro.exe_203]
+RelativePath=JIT\Directed\cmov\Double_And_Op_cs_ro\Double_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_No_Op_cs_d.exe_204]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_d\Double_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_No_Op_cs_do.exe_205]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_do\Double_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_No_Op_cs_r.exe_206]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_r\Double_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_No_Op_cs_ro.exe_207]
+RelativePath=JIT\Directed\cmov\Double_No_Op_cs_ro\Double_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Or_Op_cs_d.exe_208]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_d\Double_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Or_Op_cs_do.exe_209]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_do\Double_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Or_Op_cs_r.exe_210]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_r\Double_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Or_Op_cs_ro.exe_211]
+RelativePath=JIT\Directed\cmov\Double_Or_Op_cs_ro\Double_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Xor_Op_cs_d.exe_212]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_d\Double_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Xor_Op_cs_do.exe_213]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_do\Double_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Xor_Op_cs_r.exe_214]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_r\Double_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Double_Xor_Op_cs_ro.exe_215]
+RelativePath=JIT\Directed\cmov\Double_Xor_Op_cs_ro\Double_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Double_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_And_Op_cs_d.exe_216]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_d\Float_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_And_Op_cs_do.exe_217]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_do\Float_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_And_Op_cs_r.exe_218]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_r\Float_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_And_Op_cs_ro.exe_219]
+RelativePath=JIT\Directed\cmov\Float_And_Op_cs_ro\Float_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_No_Op_cs_d.exe_220]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_d\Float_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_No_Op_cs_do.exe_221]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_do\Float_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_No_Op_cs_r.exe_222]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_r\Float_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_No_Op_cs_ro.exe_223]
+RelativePath=JIT\Directed\cmov\Float_No_Op_cs_ro\Float_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Or_Op_cs_d.exe_224]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_d\Float_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Or_Op_cs_do.exe_225]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_do\Float_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Or_Op_cs_r.exe_226]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_r\Float_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Or_Op_cs_ro.exe_227]
+RelativePath=JIT\Directed\cmov\Float_Or_Op_cs_ro\Float_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Xor_Op_cs_d.exe_228]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_d\Float_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Xor_Op_cs_do.exe_229]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_do\Float_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Xor_Op_cs_r.exe_230]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_r\Float_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Float_Xor_Op_cs_ro.exe_231]
+RelativePath=JIT\Directed\cmov\Float_Xor_Op_cs_ro\Float_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Float_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_And_Op_cs_d.exe_232]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_d\Int_And_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_And_Op_cs_do.exe_233]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_do\Int_And_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_And_Op_cs_r.exe_234]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_r\Int_And_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_And_Op_cs_ro.exe_235]
+RelativePath=JIT\Directed\cmov\Int_And_Op_cs_ro\Int_And_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_And_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_No_Op_cs_d.exe_236]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_d\Int_No_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_No_Op_cs_do.exe_237]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_do\Int_No_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_No_Op_cs_r.exe_238]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_r\Int_No_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_No_Op_cs_ro.exe_239]
+RelativePath=JIT\Directed\cmov\Int_No_Op_cs_ro\Int_No_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_No_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Or_Op_cs_d.exe_240]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_d\Int_Or_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Or_Op_cs_do.exe_241]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_do\Int_Or_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Or_Op_cs_r.exe_242]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_r\Int_Or_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Or_Op_cs_ro.exe_243]
+RelativePath=JIT\Directed\cmov\Int_Or_Op_cs_ro\Int_Or_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Or_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Xor_Op_cs_d.exe_244]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_d\Int_Xor_Op_cs_d.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Xor_Op_cs_do.exe_245]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_do\Int_Xor_Op_cs_do.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Xor_Op_cs_r.exe_246]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_r\Int_Xor_Op_cs_r.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Int_Xor_Op_cs_ro.exe_247]
+RelativePath=JIT\Directed\cmov\Int_Xor_Op_cs_ro\Int_Xor_Op_cs_ro.exe
+WorkingDir=JIT\Directed\cmov\Int_Xor_Op_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FPZero.exe_248]
+RelativePath=JIT\Directed\Convert\FPZero\FPZero.exe
+WorkingDir=JIT\Directed\Convert\FPZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[implicitConv.exe_249]
+RelativePath=JIT\Directed\Convert\implicitConv\implicitConv.exe
+WorkingDir=JIT\Directed\Convert\implicitConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[minopts_convu1.exe_250]
+RelativePath=JIT\Directed\Convert\minopts_convu1\minopts_convu1.exe
+WorkingDir=JIT\Directed\Convert\minopts_convu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FilterToHandler.exe_251]
+RelativePath=JIT\Directed\coverage\compiler\FilterToHandler\FilterToHandler.exe
+WorkingDir=JIT\Directed\coverage\compiler\FilterToHandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xaddmuly_cs_d.exe_252]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d\xaddmuly_cs_d.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xaddmuly_cs_do.exe_253]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do\xaddmuly_cs_do.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xaddmuly_cs_r.exe_254]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r\xaddmuly_cs_r.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xaddmuly_cs_ro.exe_255]
+RelativePath=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro\xaddmuly_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\flowgraph\xaddmuly_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badendfinally.exe_256]
+RelativePath=JIT\Directed\coverage\importer\badendfinally\badendfinally.exe
+WorkingDir=JIT\Directed\coverage\importer\badendfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badtailcall.exe_257]
+RelativePath=JIT\Directed\coverage\importer\badtailcall\badtailcall.exe
+WorkingDir=JIT\Directed\coverage\importer\badtailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byrefsubbyref1.exe_258]
+RelativePath=JIT\Directed\coverage\importer\byrefsubbyref1\byrefsubbyref1.exe
+WorkingDir=JIT\Directed\coverage\importer\byrefsubbyref1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[calli2.exe_259]
+RelativePath=JIT\Directed\coverage\importer\calli2\calli2.exe
+WorkingDir=JIT\Directed\coverage\importer\calli2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceeillegal.exe_260]
+RelativePath=JIT\Directed\coverage\importer\ceeillegal\ceeillegal.exe
+WorkingDir=JIT\Directed\coverage\importer\ceeillegal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badendfinally_il_d.exe_261]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d\badendfinally_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badendfinally_il_r.exe_262]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r\badendfinally_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badendfinally_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badldsfld_il_d.exe_263]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d\badldsfld_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badldsfld_il_r.exe_264]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r\badldsfld_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badldsfld_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badtailcall_il_d.exe_265]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d\badtailcall_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badtailcall_il_r.exe_266]
+RelativePath=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r\badtailcall_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\badtailcall_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bleref_il_d.exe_267]
+RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_d\bleref_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bleref_il_r.exe_268]
+RelativePath=JIT\Directed\coverage\importer\Desktop\bleref_il_r\bleref_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\bleref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byrefsubbyref1_il_d.exe_269]
+RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d\byrefsubbyref1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byrefsubbyref1_il_r.exe_270]
+RelativePath=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r\byrefsubbyref1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\byrefsubbyref1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[calli2_il_d.exe_271]
+RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_d\calli2_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[calli2_il_r.exe_272]
+RelativePath=JIT\Directed\coverage\importer\Desktop\calli2_il_r\calli2_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\calli2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceeillegal_il_d.exe_273]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d\ceeillegal_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceeillegal_il_r.exe_274]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r\ceeillegal_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ceeillegal_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldelemnullarr1_il_d.exe_275]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d\ldelemnullarr1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldelemnullarr1_il_r.exe_276]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r\ldelemnullarr1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldelemnullarr2_il_d.exe_277]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d\ldelemnullarr2_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldelemnullarr2_il_r.exe_278]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r\ldelemnullarr2_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldelemnullarr2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldr4_il_d.exe_279]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d\ldfldr4_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldr4_il_r.exe_280]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r\ldfldr4_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldr4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldstatic1_il_d.exe_281]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d\ldfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldstatic1_il_r.exe_282]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r\ldfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldunboxedvt_il_d.exe_283]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d\ldfldunboxedvt_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldunboxedvt_il_r.exe_284]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r\ldfldunboxedvt_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldfldunboxedvt_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftnsideeffect_il_d.exe_285]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d\ldvirtftnsideeffect_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftnsideeffect_il_r.exe_286]
+RelativePath=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r\ldvirtftnsideeffect_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\ldvirtftnsideeffect_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonrefsdarr_il_d.exe_287]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d\nonrefsdarr_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonrefsdarr_il_r.exe_288]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r\nonrefsdarr_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nonrefsdarr_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullsdarr_il_d.exe_289]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d\nullsdarr_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullsdarr_il_r.exe_290]
+RelativePath=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r\nullsdarr_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\nullsdarr_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refanytype1_il_d.exe_291]
+RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d\refanytype1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refanytype1_il_r.exe_292]
+RelativePath=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r\refanytype1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\refanytype1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_d.exe_293]
+RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_r.exe_294]
+RelativePath=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subovfun1_il_d.exe_295]
+RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d\subovfun1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subovfun1_il_r.exe_296]
+RelativePath=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r\subovfun1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\subovfun1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilldind_il_d.exe_297]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d\volatilldind_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilldind_il_r.exe_298]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r\volatilldind_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilldind_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilstind_il_d.exe_299]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d\volatilstind_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilstind_il_r.exe_300]
+RelativePath=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r\volatilstind_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\Desktop\volatilstind_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldelemnullarr2.exe_301]
+RelativePath=JIT\Directed\coverage\importer\ldelemnullarr2\ldelemnullarr2.exe
+WorkingDir=JIT\Directed\coverage\importer\ldelemnullarr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldstatic1_il_r.exe_302]
+RelativePath=JIT\Directed\coverage\importer\ldfldstatic1_il_r\ldfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldunboxedvt.exe_303]
+RelativePath=JIT\Directed\coverage\importer\ldfldunboxedvt\ldfldunboxedvt.exe
+WorkingDir=JIT\Directed\coverage\importer\ldfldunboxedvt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftnsideeffect.exe_304]
+RelativePath=JIT\Directed\coverage\importer\ldvirtftnsideeffect\ldvirtftnsideeffect.exe
+WorkingDir=JIT\Directed\coverage\importer\ldvirtftnsideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullsdarr.exe_305]
+RelativePath=JIT\Directed\coverage\importer\nullsdarr\nullsdarr.exe
+WorkingDir=JIT\Directed\coverage\importer\nullsdarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refanytype1.exe_306]
+RelativePath=JIT\Directed\coverage\importer\refanytype1\refanytype1.exe
+WorkingDir=JIT\Directed\coverage\importer\refanytype1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_d.exe_307]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_r.exe_308]
+RelativePath=JIT\Directed\coverage\importer\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subovfun1_il_d.exe_309]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_d\subovfun1_il_d.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subovfun1_il_r.exe_310]
+RelativePath=JIT\Directed\coverage\importer\subovfun1_il_r\subovfun1_il_r.exe
+WorkingDir=JIT\Directed\coverage\importer\subovfun1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilldind.exe_311]
+RelativePath=JIT\Directed\coverage\importer\volatilldind\volatilldind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilldind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilstind.exe_312]
+RelativePath=JIT\Directed\coverage\importer\volatilstind\volatilstind.exe
+WorkingDir=JIT\Directed\coverage\importer\volatilstind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[33objref_cs_d.exe_313]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_d\33objref_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[33objref_cs_do.exe_314]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_do\33objref_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[33objref_cs_r.exe_315]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_r\33objref_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[33objref_cs_ro.exe_316]
+RelativePath=JIT\Directed\coverage\oldtests\33objref_cs_ro\33objref_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\33objref_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrgetlen_il_d.exe_317]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_d\arrgetlen_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrgetlen_il_r.exe_318]
+RelativePath=JIT\Directed\coverage\oldtests\arrgetlen_il_r\arrgetlen_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\arrgetlen_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callipinvoke.exe_319]
+RelativePath=JIT\Directed\coverage\oldtests\callipinvoke\callipinvoke.exe
+WorkingDir=JIT\Directed\coverage\oldtests\callipinvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse1_cs_d.exe_320]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_d\cse1_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse1_cs_do.exe_321]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_do\cse1_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse1_cs_r.exe_322]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_r\cse1_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse1_cs_ro.exe_323]
+RelativePath=JIT\Directed\coverage\oldtests\cse1_cs_ro\cse1_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse2_cs_d.exe_324]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_d\cse2_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse2_cs_do.exe_325]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_do\cse2_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse2_cs_r.exe_326]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_r\cse2_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse2_cs_ro.exe_327]
+RelativePath=JIT\Directed\coverage\oldtests\cse2_cs_ro\cse2_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\cse2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callipinvoke_il_d.exe_328]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d\callipinvoke_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callipinvoke_il_r.exe_329]
+RelativePath=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r\callipinvoke_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\Desktop\callipinvoke_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldadd_cs_d.exe_330]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_d\lclfldadd_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldadd_cs_do.exe_331]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_do\lclfldadd_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldadd_cs_r.exe_332]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_r\lclfldadd_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldadd_cs_ro.exe_333]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro\lclfldadd_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclflddiv_cs_d.exe_334]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_d\lclflddiv_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclflddiv_cs_do.exe_335]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_do\lclflddiv_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclflddiv_cs_r.exe_336]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_r\lclflddiv_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclflddiv_cs_ro.exe_337]
+RelativePath=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro\lclflddiv_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclflddiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldmul_cs_d.exe_338]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_d\lclfldmul_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldmul_cs_do.exe_339]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_do\lclfldmul_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldmul_cs_r.exe_340]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_r\lclfldmul_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldmul_cs_ro.exe_341]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro\lclfldmul_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldrem_cs_d.exe_342]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_d\lclfldrem_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldrem_cs_do.exe_343]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_do\lclfldrem_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldrem_cs_r.exe_344]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_r\lclfldrem_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldrem_cs_ro.exe_345]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro\lclfldrem_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldsub_cs_d.exe_346]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_d\lclfldsub_cs_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldsub_cs_do.exe_347]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_do\lclfldsub_cs_do.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldsub_cs_r.exe_348]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_r\lclfldsub_cs_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lclfldsub_cs_ro.exe_349]
+RelativePath=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro\lclfldsub_cs_ro.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lclfldsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lcliimpl_il_d.exe_350]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_d\lcliimpl_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lcliimpl_il_r.exe_351]
+RelativePath=JIT\Directed\coverage\oldtests\lcliimpl_il_r\lcliimpl_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\lcliimpl_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldstatic_il_d.exe_352]
+RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_d\ldfldstatic_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldfldstatic_il_r.exe_353]
+RelativePath=JIT\Directed\coverage\oldtests\ldfldstatic_il_r\ldfldstatic_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldfldstatic_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldsshrstsfld_il_d.exe_354]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d\ldsshrstsfld_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldsshrstsfld_il_r.exe_355]
+RelativePath=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r\ldsshrstsfld_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldsshrstsfld_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftncalli_il_d.exe_356]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d\ldvirtftncalli_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftncalli_il_r.exe_357]
+RelativePath=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r\ldvirtftncalli_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ldvirtftncalli_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovfldiv1_il_d.exe_358]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_d\ovfldiv1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovfldiv1_il_r.exe_359]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv1_il_r\ovfldiv1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovfldiv2_il_d.exe_360]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_d\ovfldiv2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovfldiv2_il_r.exe_361]
+RelativePath=JIT\Directed\coverage\oldtests\ovfldiv2_il_r\ovfldiv2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovfldiv2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovflrem1_il_d.exe_362]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_d\ovflrem1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovflrem1_il_r.exe_363]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem1_il_r\ovflrem1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovflrem2_il_d.exe_364]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_d\ovflrem2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ovflrem2_il_r.exe_365]
+RelativePath=JIT\Directed\coverage\oldtests\ovflrem2_il_r\ovflrem2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\ovflrem2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_d.exe_366]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_d\stfldstatic1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic1_il_r.exe_367]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic1_il_r\stfldstatic1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic2_il_d.exe_368]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_d\stfldstatic2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stfldstatic2_il_r.exe_369]
+RelativePath=JIT\Directed\coverage\oldtests\stfldstatic2_il_r\stfldstatic2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\stfldstatic2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subbyref_il_d.exe_370]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_d\subbyref_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[subbyref_il_r.exe_371]
+RelativePath=JIT\Directed\coverage\oldtests\subbyref_il_r\subbyref_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\subbyref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly1_il_d.exe_372]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d\switchdefaultonly1_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly1_il_r.exe_373]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r\switchdefaultonly1_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly2_il_d.exe_374]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d\switchdefaultonly2_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly2_il_r.exe_375]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r\switchdefaultonly2_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly3_il_d.exe_376]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d\switchdefaultonly3_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchdefaultonly3_il_r.exe_377]
+RelativePath=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r\switchdefaultonly3_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\switchdefaultonly3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tlstest_il_d.exe_378]
+RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_d\tlstest_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tlstest_il_r.exe_379]
+RelativePath=JIT\Directed\coverage\oldtests\tlstest_il_r\tlstest_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\tlstest_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trashreg_il_d.exe_380]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_d\trashreg_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trashreg_il_r.exe_381]
+RelativePath=JIT\Directed\coverage\oldtests\trashreg_il_r\trashreg_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\trashreg_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilecpobj_il_d.exe_382]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_d\volatilecpobj_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilecpobj_il_r.exe_383]
+RelativePath=JIT\Directed\coverage\oldtests\volatilecpobj_il_r\volatilecpobj_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\volatilecpobj_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroinit_il_d.exe_384]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_d\zeroinit_il_d.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroinit_il_r.exe_385]
+RelativePath=JIT\Directed\coverage\oldtests\zeroinit_il_r\zeroinit_il_r.exe
+WorkingDir=JIT\Directed\coverage\oldtests\zeroinit_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[excepobj.exe_386]
+RelativePath=JIT\Directed\ExcepFilters\excepobj\excepobj\excepobj.exe
+WorkingDir=JIT\Directed\ExcepFilters\excepobj\excepobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fault.exe_387]
+RelativePath=JIT\Directed\ExcepFilters\fault\fault\fault.exe
+WorkingDir=JIT\Directed\ExcepFilters\fault\fault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed.exe_388]
+RelativePath=JIT\Directed\ExcepFilters\mixed\mixed\mixed.exe
+WorkingDir=JIT\Directed\ExcepFilters\mixed\mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed3.exe_389]
+RelativePath=JIT\Directed\ExcepFilters\mixed3\mixed3\mixed3.exe
+WorkingDir=JIT\Directed\ExcepFilters\mixed3\mixed3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CallOrder.exe_390]
+RelativePath=JIT\Directed\FaultHandlers\CallOrder\CallOrder\CallOrder.exe
+WorkingDir=JIT\Directed\FaultHandlers\CallOrder\CallOrder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Nesting.exe_391]
+RelativePath=JIT\Directed\FaultHandlers\Nesting\Nesting\Nesting.exe
+WorkingDir=JIT\Directed\FaultHandlers\Nesting\Nesting
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Simple.exe_392]
+RelativePath=JIT\Directed\FaultHandlers\Simple\Simple\Simple.exe
+WorkingDir=JIT\Directed\FaultHandlers\Simple\Simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AttributeConflict.exe_393]
+RelativePath=JIT\Directed\forceinlining\AttributeConflict\AttributeConflict.exe
+WorkingDir=JIT\Directed\forceinlining\AttributeConflict
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LargeNumberOfArgs.exe_394]
+RelativePath=JIT\Directed\forceinlining\LargeNumberOfArgs\LargeNumberOfArgs.exe
+WorkingDir=JIT\Directed\forceinlining\LargeNumberOfArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NegativeCases.exe_395]
+RelativePath=JIT\Directed\forceinlining\NegativeCases\NegativeCases.exe
+WorkingDir=JIT\Directed\forceinlining\NegativeCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NoMetaData.exe_396]
+RelativePath=JIT\Directed\forceinlining\NoMetaData\NoMetaData.exe
+WorkingDir=JIT\Directed\forceinlining\NoMetaData
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PositiveCases.exe_397]
+RelativePath=JIT\Directed\forceinlining\PositiveCases\PositiveCases.exe
+WorkingDir=JIT\Directed\forceinlining\PositiveCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Recursion.exe_398]
+RelativePath=JIT\Directed\forceinlining\Recursion\Recursion.exe
+WorkingDir=JIT\Directed\forceinlining\Recursion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gettypetypeofmatrix.exe_399]
+RelativePath=JIT\Directed\gettypetypeof\gettypetypeofmatrix\gettypetypeofmatrix.exe
+WorkingDir=JIT\Directed\gettypetypeof\gettypetypeofmatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[leave1.exe_400]
+RelativePath=JIT\Directed\IL\leave\leave1\leave1.exe
+WorkingDir=JIT\Directed\IL\leave\leave1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MutualRecur-TailCall.exe_401]
+RelativePath=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall\MutualRecur-TailCall.exe
+WorkingDir=JIT\Directed\IL\mutualrecur-tailcall\MutualRecur-TailCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[PInvokeTail.exe_402]
+RelativePath=JIT\Directed\IL\PInvokeTail\PInvokeTail\PInvokeTail.exe
+WorkingDir=JIT\Directed\IL\PInvokeTail\PInvokeTail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TailWinApi.exe_403]
+RelativePath=JIT\Directed\IL\PInvokeTail\TailWinApi\TailWinApi.exe
+WorkingDir=JIT\Directed\IL\PInvokeTail\TailWinApi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Rethrow1.exe_404]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow1\Rethrow1.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Rethrow2.exe_405]
+RelativePath=JIT\Directed\IL\rethrow\Rethrow2\Rethrow2.exe
+WorkingDir=JIT\Directed\IL\rethrow\Rethrow2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jitTailcall1.exe_406]
+RelativePath=JIT\Directed\IL\Tailcall\jitTailcall1\jitTailcall1.exe
+WorkingDir=JIT\Directed\IL\Tailcall\jitTailcall1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JitTailcall2.exe_407]
+RelativePath=JIT\Directed\IL\Tailcall\JitTailcall2\JitTailcall2.exe
+WorkingDir=JIT\Directed\IL\Tailcall\JitTailcall2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cmpxchg.exe_408]
+RelativePath=JIT\Directed\intrinsic\interlocked\cmpxchg\cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cmpxchg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cse_cmpxchg.exe_409]
+RelativePath=JIT\Directed\intrinsic\interlocked\cse_cmpxchg\cse_cmpxchg.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\cse_cmpxchg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[IntrinsicTest_Overflow.exe_410]
+RelativePath=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow\IntrinsicTest_Overflow.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\IntrinsicTest_Overflow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullchecksuppress.exe_411]
+RelativePath=JIT\Directed\intrinsic\interlocked\nullchecksuppress\nullchecksuppress.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\nullchecksuppress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[regalloc1.exe_412]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc1\regalloc1.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[regalloc2.exe_413]
+RelativePath=JIT\Directed\intrinsic\interlocked\regalloc2\regalloc2.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\regalloc2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rva_rvastatic1.exe_414]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic1\rva_rvastatic1.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rva_rvastatic2.exe_415]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic2\rva_rvastatic2.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rva_rvastatic3.exe_416]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic3\rva_rvastatic3.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rva_rvastatic4.exe_417]
+RelativePath=JIT\Directed\intrinsic\interlocked\rva_rvastatic4\rva_rvastatic4.exe
+WorkingDir=JIT\Directed\intrinsic\interlocked\rva_rvastatic4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow0_cs_d.exe_418]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_d\pow0_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow0_cs_do.exe_419]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_do\pow0_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow0_cs_r.exe_420]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_r\pow0_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow0_cs_ro.exe_421]
+RelativePath=JIT\Directed\intrinsic\pow\pow0_cs_ro\pow0_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow0_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow1.exe_422]
+RelativePath=JIT\Directed\intrinsic\pow\pow1\pow1.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow2_cs_d.exe_423]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_d\pow2_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow2_cs_do.exe_424]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_do\pow2_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow2_cs_r.exe_425]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_r\pow2_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow2_cs_ro.exe_426]
+RelativePath=JIT\Directed\intrinsic\pow\pow2_cs_ro\pow2_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow3_cs_d.exe_427]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_d\pow3_cs_d.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow3_cs_do.exe_428]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_do\pow3_cs_do.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow3_cs_r.exe_429]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_r\pow3_cs_r.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow3_cs_ro.exe_430]
+RelativePath=JIT\Directed\intrinsic\pow\pow3_cs_ro\pow3_cs_ro.exe
+WorkingDir=JIT\Directed\intrinsic\pow\pow3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch1_d.exe_431]
+RelativePath=JIT\Directed\leave\catch1_d\catch1_d.exe
+WorkingDir=JIT\Directed\leave\catch1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch1_r.exe_432]
+RelativePath=JIT\Directed\leave\catch1_r\catch1_r.exe
+WorkingDir=JIT\Directed\leave\catch1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch2_d.exe_433]
+RelativePath=JIT\Directed\leave\catch2_d\catch2_d.exe
+WorkingDir=JIT\Directed\leave\catch2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch2_r.exe_434]
+RelativePath=JIT\Directed\leave\catch2_r\catch2_r.exe
+WorkingDir=JIT\Directed\leave\catch2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch3_d.exe_435]
+RelativePath=JIT\Directed\leave\catch3_d\catch3_d.exe
+WorkingDir=JIT\Directed\leave\catch3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catch3_r.exe_436]
+RelativePath=JIT\Directed\leave\catch3_r\catch3_r.exe
+WorkingDir=JIT\Directed\leave\catch3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter1_d.exe_437]
+RelativePath=JIT\Directed\leave\filter1_d\filter1_d.exe
+WorkingDir=JIT\Directed\leave\filter1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter1_r.exe_438]
+RelativePath=JIT\Directed\leave\filter1_r\filter1_r.exe
+WorkingDir=JIT\Directed\leave\filter1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter2_d.exe_439]
+RelativePath=JIT\Directed\leave\filter2_d\filter2_d.exe
+WorkingDir=JIT\Directed\leave\filter2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter2_r.exe_440]
+RelativePath=JIT\Directed\leave\filter2_r\filter2_r.exe
+WorkingDir=JIT\Directed\leave\filter2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter3_d.exe_441]
+RelativePath=JIT\Directed\leave\filter3_d\filter3_d.exe
+WorkingDir=JIT\Directed\leave\filter3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter3_r.exe_442]
+RelativePath=JIT\Directed\leave\filter3_r\filter3_r.exe
+WorkingDir=JIT\Directed\leave\filter3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try1_d.exe_443]
+RelativePath=JIT\Directed\leave\try1_d\try1_d.exe
+WorkingDir=JIT\Directed\leave\try1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try1_r.exe_444]
+RelativePath=JIT\Directed\leave\try1_r\try1_r.exe
+WorkingDir=JIT\Directed\leave\try1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try2_d.exe_445]
+RelativePath=JIT\Directed\leave\try2_d\try2_d.exe
+WorkingDir=JIT\Directed\leave\try2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try2_r.exe_446]
+RelativePath=JIT\Directed\leave\try2_r\try2_r.exe
+WorkingDir=JIT\Directed\leave\try2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try3_d.exe_447]
+RelativePath=JIT\Directed\leave\try3_d\try3_d.exe
+WorkingDir=JIT\Directed\leave\try3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[try3_r.exe_448]
+RelativePath=JIT\Directed\leave\try3_r\try3_r.exe
+WorkingDir=JIT\Directed\leave\try3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lifetime1.exe_449]
+RelativePath=JIT\Directed\lifetime\lifetime1\lifetime1.exe
+WorkingDir=JIT\Directed\lifetime\lifetime1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lifetime2.exe_450]
+RelativePath=JIT\Directed\lifetime\lifetime2\lifetime2.exe
+WorkingDir=JIT\Directed\lifetime\lifetime2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc3_cs_d.exe_451]
+RelativePath=JIT\Directed\localloc\localloc3_cs_d\localloc3_cs_d.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc3_cs_do.exe_452]
+RelativePath=JIT\Directed\localloc\localloc3_cs_do\localloc3_cs_do.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc3_cs_r.exe_453]
+RelativePath=JIT\Directed\localloc\localloc3_cs_r\localloc3_cs_r.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc3_cs_ro.exe_454]
+RelativePath=JIT\Directed\localloc\localloc3_cs_ro\localloc3_cs_ro.exe
+WorkingDir=JIT\Directed\localloc\localloc3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[funcptrtest.exe_455]
+RelativePath=JIT\Directed\Misc\function_pointer\funcptrtest\funcptrtest.exe
+WorkingDir=JIT\Directed\Misc\function_pointer\funcptrtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gettypetypeofmatrix.exe_456]
+RelativePath=JIT\Directed\Misc\gettype\gettypetypeofmatrix\gettypetypeofmatrix.exe
+WorkingDir=JIT\Directed\Misc\gettype\gettypetypeofmatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BadRegArgs.exe_457]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs\BadRegArgs.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\BadRegArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SideEffects.exe_458]
+RelativePath=JIT\Directed\Misc\SIDEEFFECTS\SideEffects\SideEffects.exe
+WorkingDir=JIT\Directed\Misc\SIDEEFFECTS\SideEffects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[newarr.exe_459]
+RelativePath=JIT\Directed\newarr\newarr\newarr.exe
+WorkingDir=JIT\Directed\newarr\newarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxenum_d.exe_460]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_d\boxunboxenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxenum_do.exe_461]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_do\boxunboxenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxenum_r.exe_462]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_r\boxunboxenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxenum_ro.exe_463]
+RelativePath=JIT\Directed\nullabletypes\boxunboxenum_ro\boxunboxenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxinterface_d.exe_464]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_d\boxunboxinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxinterface_do.exe_465]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_do\boxunboxinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxinterface_r.exe_466]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_r\boxunboxinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxinterface_ro.exe_467]
+RelativePath=JIT\Directed\nullabletypes\boxunboxinterface_ro\boxunboxinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\boxunboxinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassenum_d.exe_468]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_d\castclassenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassenum_do.exe_469]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_do\castclassenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassenum_r.exe_470]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_r\castclassenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassenum_ro.exe_471]
+RelativePath=JIT\Directed\nullabletypes\castclassenum_ro\castclassenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassinterface_d.exe_472]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_d\castclassinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassinterface_do.exe_473]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_do\castclassinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassinterface_r.exe_474]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_r\castclassinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassinterface_ro.exe_475]
+RelativePath=JIT\Directed\nullabletypes\castclassinterface_ro\castclassinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassvaluetype_d.exe_476]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_d\castclassvaluetype_d.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassvaluetype_do.exe_477]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_do\castclassvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassvaluetype_r.exe_478]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_r\castclassvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclassvaluetype_ro.exe_479]
+RelativePath=JIT\Directed\nullabletypes\castclassvaluetype_ro\castclassvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\castclassvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[constructor_d.exe_480]
+RelativePath=JIT\Directed\nullabletypes\constructor_d\constructor_d.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[constructor_do.exe_481]
+RelativePath=JIT\Directed\nullabletypes\constructor_do\constructor_do.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[constructor_r.exe_482]
+RelativePath=JIT\Directed\nullabletypes\constructor_r\constructor_r.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[constructor_ro.exe_483]
+RelativePath=JIT\Directed\nullabletypes\constructor_ro\constructor_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\constructor_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxvaluetype_do.exe_484]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do\boxunboxvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxvaluetype_r.exe_485]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r\boxunboxvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[boxunboxvaluetype_ro.exe_486]
+RelativePath=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro\boxunboxvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\boxunboxvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullcomparaison_d.exe_487]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d\nullcomparaison_d.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullcomparaison_do.exe_488]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do\nullcomparaison_do.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullcomparaison_r.exe_489]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r\nullcomparaison_r.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nullcomparaison_ro.exe_490]
+RelativePath=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro\nullcomparaison_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\Desktop\nullcomparaison_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hashcode_d.exe_491]
+RelativePath=JIT\Directed\nullabletypes\hashcode_d\hashcode_d.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hashcode_do.exe_492]
+RelativePath=JIT\Directed\nullabletypes\hashcode_do\hashcode_do.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hashcode_r.exe_493]
+RelativePath=JIT\Directed\nullabletypes\hashcode_r\hashcode_r.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hashcode_ro.exe_494]
+RelativePath=JIT\Directed\nullabletypes\hashcode_ro\hashcode_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\hashcode_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hasvalue_d.exe_495]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_d\hasvalue_d.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hasvalue_do.exe_496]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_do\hasvalue_do.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hasvalue_r.exe_497]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_r\hasvalue_r.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hasvalue_ro.exe_498]
+RelativePath=JIT\Directed\nullabletypes\hasvalue_ro\hasvalue_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\hasvalue_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[invocation_d.exe_499]
+RelativePath=JIT\Directed\nullabletypes\invocation_d\invocation_d.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[invocation_do.exe_500]
+RelativePath=JIT\Directed\nullabletypes\invocation_do\invocation_do.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[invocation_r.exe_501]
+RelativePath=JIT\Directed\nullabletypes\invocation_r\invocation_r.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[invocation_ro.exe_502]
+RelativePath=JIT\Directed\nullabletypes\invocation_ro\invocation_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\invocation_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst2_d.exe_503]
+RelativePath=JIT\Directed\nullabletypes\isinst2_d\isinst2_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst2_do.exe_504]
+RelativePath=JIT\Directed\nullabletypes\isinst2_do\isinst2_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst2_r.exe_505]
+RelativePath=JIT\Directed\nullabletypes\isinst2_r\isinst2_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst2_ro.exe_506]
+RelativePath=JIT\Directed\nullabletypes\isinst2_ro\isinst2_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstboxed_d.exe_507]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_d\isinstboxed_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstboxed_do.exe_508]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_do\isinstboxed_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstboxed_r.exe_509]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_r\isinstboxed_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstboxed_ro.exe_510]
+RelativePath=JIT\Directed\nullabletypes\isinstboxed_ro\isinstboxed_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstboxed_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstenum_d.exe_511]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_d\isinstenum_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstenum_do.exe_512]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_do\isinstenum_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstenum_r.exe_513]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_r\isinstenum_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstenum_ro.exe_514]
+RelativePath=JIT\Directed\nullabletypes\isinstenum_ro\isinstenum_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstenum_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstgenerics_d.exe_515]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_d\isinstgenerics_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstgenerics_do.exe_516]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_do\isinstgenerics_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstgenerics_r.exe_517]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_r\isinstgenerics_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstgenerics_ro.exe_518]
+RelativePath=JIT\Directed\nullabletypes\isinstgenerics_ro\isinstgenerics_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstgenerics_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstinterface_d.exe_519]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_d\isinstinterface_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstinterface_do.exe_520]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_do\isinstinterface_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstinterface_r.exe_521]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_r\isinstinterface_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstinterface_ro.exe_522]
+RelativePath=JIT\Directed\nullabletypes\isinstinterface_ro\isinstinterface_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstinterface_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstvaluetype_d.exe_523]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_d\isinstvaluetype_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstvaluetype_do.exe_524]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_do\isinstvaluetype_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstvaluetype_r.exe_525]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_r\isinstvaluetype_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinstvaluetype_ro.exe_526]
+RelativePath=JIT\Directed\nullabletypes\isinstvaluetype_ro\isinstvaluetype_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinstvaluetype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst_d.exe_527]
+RelativePath=JIT\Directed\nullabletypes\isinst_d\isinst_d.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst_do.exe_528]
+RelativePath=JIT\Directed\nullabletypes\isinst_do\isinst_do.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst_r.exe_529]
+RelativePath=JIT\Directed\nullabletypes\isinst_r\isinst_r.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst_ro.exe_530]
+RelativePath=JIT\Directed\nullabletypes\isinst_ro\isinst_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\isinst_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tostring_d.exe_531]
+RelativePath=JIT\Directed\nullabletypes\tostring_d\tostring_d.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tostring_do.exe_532]
+RelativePath=JIT\Directed\nullabletypes\tostring_do\tostring_do.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tostring_r.exe_533]
+RelativePath=JIT\Directed\nullabletypes\tostring_r\tostring_r.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tostring_ro.exe_534]
+RelativePath=JIT\Directed\nullabletypes\tostring_ro\tostring_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\tostring_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unboxnullable_d.exe_535]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_d\unboxnullable_d.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unboxnullable_do.exe_536]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_do\unboxnullable_do.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unboxnullable_r.exe_537]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_r\unboxnullable_r.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unboxnullable_ro.exe_538]
+RelativePath=JIT\Directed\nullabletypes\unboxnullable_ro\unboxnullable_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\unboxnullable_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[value_d.exe_539]
+RelativePath=JIT\Directed\nullabletypes\value_d\value_d.exe
+WorkingDir=JIT\Directed\nullabletypes\value_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[value_do.exe_540]
+RelativePath=JIT\Directed\nullabletypes\value_do\value_do.exe
+WorkingDir=JIT\Directed\nullabletypes\value_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[value_r.exe_541]
+RelativePath=JIT\Directed\nullabletypes\value_r\value_r.exe
+WorkingDir=JIT\Directed\nullabletypes\value_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[value_ro.exe_542]
+RelativePath=JIT\Directed\nullabletypes\value_ro\value_ro.exe
+WorkingDir=JIT\Directed\nullabletypes\value_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ccse_cs_d.exe_543]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_d\ccse_cs_d.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ccse_cs_do.exe_544]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_do\ccse_cs_do.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ccse_cs_r.exe_545]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_r\ccse_cs_r.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ccse_cs_ro.exe_546]
+RelativePath=JIT\Directed\perffix\commutativecse\ccse_cs_ro\ccse_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\commutativecse\ccse_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_d.exe_547]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_d\callconv1_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_do.exe_548]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_do\callconv1_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_r.exe_549]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_r\callconv1_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_ro.exe_550]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv1_cs_ro\callconv1_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_d.exe_551]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_d\callconv2_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_do.exe_552]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_do\callconv2_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_r.exe_553]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_r\callconv2_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_ro.exe_554]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv2_cs_ro\callconv2_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv3_il_d.exe_555]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_d\callconv3_il_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv3_il_r.exe_556]
+RelativePath=JIT\Directed\perffix\primitivevt\callconv3_il_r\callconv3_il_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\callconv3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[identity3_il_d.exe_557]
+RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_d\identity3_il_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[identity3_il_r.exe_558]
+RelativePath=JIT\Directed\perffix\primitivevt\identity3_il_r\identity3_il_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\identity3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed1_cs_d.exe_559]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_d\mixed1_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed1_cs_do.exe_560]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_do\mixed1_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed1_cs_r.exe_561]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_r\mixed1_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed1_cs_ro.exe_562]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed1_cs_ro\mixed1_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed2_cs_d.exe_563]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_d\mixed2_cs_d.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed2_cs_do.exe_564]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_do\mixed2_cs_do.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed2_cs_r.exe_565]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_r\mixed2_cs_r.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed2_cs_ro.exe_566]
+RelativePath=JIT\Directed\perffix\primitivevt\mixed2_cs_ro\mixed2_cs_ro.exe
+WorkingDir=JIT\Directed\perffix\primitivevt\mixed2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[object-pin.exe_567]
+RelativePath=JIT\Directed\pinning\object-pin\object-pin\object-pin.exe
+WorkingDir=JIT\Directed\pinning\object-pin\object-pin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[calli_excep.exe_568]
+RelativePath=JIT\Directed\pinvoke\calli_excep\calli_excep.exe
+WorkingDir=JIT\Directed\pinvoke\calli_excep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jump.exe_569]
+RelativePath=JIT\Directed\pinvoke\jump\jump.exe
+WorkingDir=JIT\Directed\pinvoke\jump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[preemptive_cooperative.exe_570]
+RelativePath=JIT\Directed\pinvoke\preemptive_cooperative\preemptive_cooperative.exe
+WorkingDir=JIT\Directed\pinvoke\preemptive_cooperative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sin.exe_571]
+RelativePath=JIT\Directed\pinvoke\sin\sin.exe
+WorkingDir=JIT\Directed\pinvoke\sin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sysinfo_cs.exe_572]
+RelativePath=JIT\Directed\pinvoke\sysinfo_cs\sysinfo_cs.exe
+WorkingDir=JIT\Directed\pinvoke\sysinfo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sysinfo_il.exe_573]
+RelativePath=JIT\Directed\pinvoke\sysinfo_il\sysinfo_il.exe
+WorkingDir=JIT\Directed\pinvoke\sysinfo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tail.exe_574]
+RelativePath=JIT\Directed\pinvoke\tail\tail.exe
+WorkingDir=JIT\Directed\pinvoke\tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_d.exe_575]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_d\callconv1_cs_d.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_do.exe_576]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_do\callconv1_cs_do.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_r.exe_577]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_r\callconv1_cs_r.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv1_cs_ro.exe_578]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv1_cs_ro\callconv1_cs_ro.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_d.exe_579]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_d\callconv2_cs_d.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_do.exe_580]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_do\callconv2_cs_do.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_r.exe_581]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_r\callconv2_cs_r.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callconv2_cs_ro.exe_582]
+RelativePath=JIT\Directed\prefix\primitivevt\callconv2_cs_ro\callconv2_cs_ro.exe
+WorkingDir=JIT\Directed\prefix\primitivevt\callconv2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_583]
+RelativePath=JIT\Directed\prefix\unaligned\1\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arglist.exe_584]
+RelativePath=JIT\Directed\prefix\unaligned\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array_tests.exe_585]
+RelativePath=JIT\Directed\prefix\unaligned\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Box_Unbox.exe_586]
+RelativePath=JIT\Directed\prefix\unaligned\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_587]
+RelativePath=JIT\Directed\prefix\unaligned\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpobj.exe_588]
+RelativePath=JIT\Directed\prefix\unaligned\1\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_589]
+RelativePath=JIT\Directed\prefix\unaligned\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fielda_tests.exe_590]
+RelativePath=JIT\Directed\prefix\unaligned\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[field_tests.exe_591]
+RelativePath=JIT\Directed\prefix\unaligned\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_592]
+RelativePath=JIT\Directed\prefix\unaligned\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initobj.exe_593]
+RelativePath=JIT\Directed\prefix\unaligned\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_stind.exe_594]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca.exe_595]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldobj.exe_596]
+RelativePath=JIT\Directed\prefix\unaligned\1\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_597]
+RelativePath=JIT\Directed\prefix\unaligned\1\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\1\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_598]
+RelativePath=JIT\Directed\prefix\unaligned\2\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arglist.exe_599]
+RelativePath=JIT\Directed\prefix\unaligned\2\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array_tests.exe_600]
+RelativePath=JIT\Directed\prefix\unaligned\2\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Box_Unbox.exe_601]
+RelativePath=JIT\Directed\prefix\unaligned\2\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_602]
+RelativePath=JIT\Directed\prefix\unaligned\2\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpobj.exe_603]
+RelativePath=JIT\Directed\prefix\unaligned\2\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fielda_tests.exe_604]
+RelativePath=JIT\Directed\prefix\unaligned\2\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[field_tests.exe_605]
+RelativePath=JIT\Directed\prefix\unaligned\2\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_606]
+RelativePath=JIT\Directed\prefix\unaligned\2\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initobj.exe_607]
+RelativePath=JIT\Directed\prefix\unaligned\2\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_stind.exe_608]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca.exe_609]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldobj.exe_610]
+RelativePath=JIT\Directed\prefix\unaligned\2\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_611]
+RelativePath=JIT\Directed\prefix\unaligned\2\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\2\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_612]
+RelativePath=JIT\Directed\prefix\unaligned\4\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arglist.exe_613]
+RelativePath=JIT\Directed\prefix\unaligned\4\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array_tests.exe_614]
+RelativePath=JIT\Directed\prefix\unaligned\4\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Box_Unbox.exe_615]
+RelativePath=JIT\Directed\prefix\unaligned\4\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_616]
+RelativePath=JIT\Directed\prefix\unaligned\4\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpobj.exe_617]
+RelativePath=JIT\Directed\prefix\unaligned\4\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_618]
+RelativePath=JIT\Directed\prefix\unaligned\4\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fielda_tests.exe_619]
+RelativePath=JIT\Directed\prefix\unaligned\4\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[field_tests.exe_620]
+RelativePath=JIT\Directed\prefix\unaligned\4\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_621]
+RelativePath=JIT\Directed\prefix\unaligned\4\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initobj.exe_622]
+RelativePath=JIT\Directed\prefix\unaligned\4\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_stind.exe_623]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca.exe_624]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldobj.exe_625]
+RelativePath=JIT\Directed\prefix\unaligned\4\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_626]
+RelativePath=JIT\Directed\prefix\unaligned\4\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\unaligned\4\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_627]
+RelativePath=JIT\Directed\prefix\volatile\1\add\add.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arglist.exe_628]
+RelativePath=JIT\Directed\prefix\volatile\1\arglist\arglist.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\arglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array_tests.exe_629]
+RelativePath=JIT\Directed\prefix\volatile\1\array_tests\array_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Box_Unbox.exe_630]
+RelativePath=JIT\Directed\prefix\volatile\1\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_631]
+RelativePath=JIT\Directed\prefix\volatile\1\cpblk\cpblk.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpobj.exe_632]
+RelativePath=JIT\Directed\prefix\volatile\1\cpobj\cpobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_633]
+RelativePath=JIT\Directed\prefix\volatile\1\Desktop\add\add.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\Desktop\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fielda_tests.exe_634]
+RelativePath=JIT\Directed\prefix\volatile\1\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[field_tests.exe_635]
+RelativePath=JIT\Directed\prefix\volatile\1\field_tests\field_tests.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_636]
+RelativePath=JIT\Directed\prefix\volatile\1\initblk\initblk.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initobj.exe_637]
+RelativePath=JIT\Directed\prefix\volatile\1\initobj\initobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_stind.exe_638]
+RelativePath=JIT\Directed\prefix\volatile\1\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca.exe_639]
+RelativePath=JIT\Directed\prefix\volatile\1\ldloca\ldloca.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldobj.exe_640]
+RelativePath=JIT\Directed\prefix\volatile\1\ldobj\ldobj.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_641]
+RelativePath=JIT\Directed\prefix\volatile\1\localloc\localloc.exe
+WorkingDir=JIT\Directed\prefix\volatile\1\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byref2iu_il_d.exe_642]
+RelativePath=JIT\Directed\refbyref\byref2iu_il_d\byref2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\byref2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byref2iu_il_r.exe_643]
+RelativePath=JIT\Directed\refbyref\byref2iu_il_r\byref2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\byref2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byrefconvert_il_d.exe_644]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_d\byrefconvert_il_d.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byrefconvert_il_r.exe_645]
+RelativePath=JIT\Directed\refbyref\byrefconvert_il_r\byrefconvert_il_r.exe
+WorkingDir=JIT\Directed\refbyref\byrefconvert_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ref2byref_il_d.exe_646]
+RelativePath=JIT\Directed\refbyref\ref2byref_il_d\ref2byref_il_d.exe
+WorkingDir=JIT\Directed\refbyref\ref2byref_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ref2byref_il_r.exe_647]
+RelativePath=JIT\Directed\refbyref\ref2byref_il_r\ref2byref_il_r.exe
+WorkingDir=JIT\Directed\refbyref\ref2byref_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ref2iu_il_d.exe_648]
+RelativePath=JIT\Directed\refbyref\ref2iu_il_d\ref2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\ref2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ref2iu_il_r.exe_649]
+RelativePath=JIT\Directed\refbyref\ref2iu_il_r\ref2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\ref2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refpinned2iu_il_d.exe_650]
+RelativePath=JIT\Directed\refbyref\refpinned2iu_il_d\refpinned2iu_il_d.exe
+WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refpinned2iu_il_r.exe_651]
+RelativePath=JIT\Directed\refbyref\refpinned2iu_il_r\refpinned2iu_il_r.exe
+WorkingDir=JIT\Directed\refbyref\refpinned2iu_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[extended.exe_652]
+RelativePath=JIT\Directed\RVAInit\extended\extended.exe
+WorkingDir=JIT\Directed\RVAInit\extended
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcref1.exe_653]
+RelativePath=JIT\Directed\RVAInit\gcref1\gcref1.exe
+WorkingDir=JIT\Directed\RVAInit\gcref1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcref2.exe_654]
+RelativePath=JIT\Directed\RVAInit\gcref2\gcref2.exe
+WorkingDir=JIT\Directed\RVAInit\gcref2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nested.exe_655]
+RelativePath=JIT\Directed\RVAInit\nested\nested.exe
+WorkingDir=JIT\Directed\RVAInit\nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[oddsize.exe_656]
+RelativePath=JIT\Directed\RVAInit\oddsize\oddsize.exe
+WorkingDir=JIT\Directed\RVAInit\oddsize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overlap.exe_657]
+RelativePath=JIT\Directed\RVAInit\overlap\overlap.exe
+WorkingDir=JIT\Directed\RVAInit\overlap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simple.exe_658]
+RelativePath=JIT\Directed\RVAInit\simple\simple.exe
+WorkingDir=JIT\Directed\RVAInit\simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rvastatic1.exe_659]
+RelativePath=JIT\Directed\rvastatics\rvastatic1\rvastatic1.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rvastatic2.exe_660]
+RelativePath=JIT\Directed\rvastatics\rvastatic2\rvastatic2.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rvastatic3.exe_661]
+RelativePath=JIT\Directed\rvastatics\rvastatic3\rvastatic3.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rvastatic4.exe_662]
+RelativePath=JIT\Directed\rvastatics\rvastatic4\rvastatic4.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rvastatic5.exe_663]
+RelativePath=JIT\Directed\rvastatics\rvastatic5\rvastatic5.exe
+WorkingDir=JIT\Directed\rvastatics\rvastatic5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_cs_d.exe_664]
+RelativePath=JIT\Directed\shift\int16_cs_d\int16_cs_d.exe
+WorkingDir=JIT\Directed\shift\int16_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_cs_do.exe_665]
+RelativePath=JIT\Directed\shift\int16_cs_do\int16_cs_do.exe
+WorkingDir=JIT\Directed\shift\int16_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_cs_r.exe_666]
+RelativePath=JIT\Directed\shift\int16_cs_r\int16_cs_r.exe
+WorkingDir=JIT\Directed\shift\int16_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_cs_ro.exe_667]
+RelativePath=JIT\Directed\shift\int16_cs_ro\int16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int16_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_d.exe_668]
+RelativePath=JIT\Directed\shift\int16_d\int16_d.exe
+WorkingDir=JIT\Directed\shift\int16_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_do.exe_669]
+RelativePath=JIT\Directed\shift\int16_do\int16_do.exe
+WorkingDir=JIT\Directed\shift\int16_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_r.exe_670]
+RelativePath=JIT\Directed\shift\int16_r\int16_r.exe
+WorkingDir=JIT\Directed\shift\int16_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int16_ro.exe_671]
+RelativePath=JIT\Directed\shift\int16_ro\int16_ro.exe
+WorkingDir=JIT\Directed\shift\int16_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_cs_d.exe_672]
+RelativePath=JIT\Directed\shift\int32_cs_d\int32_cs_d.exe
+WorkingDir=JIT\Directed\shift\int32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_cs_do.exe_673]
+RelativePath=JIT\Directed\shift\int32_cs_do\int32_cs_do.exe
+WorkingDir=JIT\Directed\shift\int32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_cs_r.exe_674]
+RelativePath=JIT\Directed\shift\int32_cs_r\int32_cs_r.exe
+WorkingDir=JIT\Directed\shift\int32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_cs_ro.exe_675]
+RelativePath=JIT\Directed\shift\int32_cs_ro\int32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\int32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_d.exe_676]
+RelativePath=JIT\Directed\shift\int32_d\int32_d.exe
+WorkingDir=JIT\Directed\shift\int32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_do.exe_677]
+RelativePath=JIT\Directed\shift\int32_do\int32_do.exe
+WorkingDir=JIT\Directed\shift\int32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_r.exe_678]
+RelativePath=JIT\Directed\shift\int32_r\int32_r.exe
+WorkingDir=JIT\Directed\shift\int32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int32_ro.exe_679]
+RelativePath=JIT\Directed\shift\int32_ro\int32_ro.exe
+WorkingDir=JIT\Directed\shift\int32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int64_d.exe_680]
+RelativePath=JIT\Directed\shift\int64_d\int64_d.exe
+WorkingDir=JIT\Directed\shift\int64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int64_do.exe_681]
+RelativePath=JIT\Directed\shift\int64_do\int64_do.exe
+WorkingDir=JIT\Directed\shift\int64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int64_r.exe_682]
+RelativePath=JIT\Directed\shift\int64_r\int64_r.exe
+WorkingDir=JIT\Directed\shift\int64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int64_ro.exe_683]
+RelativePath=JIT\Directed\shift\int64_ro\int64_ro.exe
+WorkingDir=JIT\Directed\shift\int64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int8_il_d.exe_684]
+RelativePath=JIT\Directed\shift\int8_il_d\int8_il_d.exe
+WorkingDir=JIT\Directed\shift\int8_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int8_il_r.exe_685]
+RelativePath=JIT\Directed\shift\int8_il_r\int8_il_r.exe
+WorkingDir=JIT\Directed\shift\int8_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nativeint_il_d.exe_686]
+RelativePath=JIT\Directed\shift\nativeint_il_d\nativeint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nativeint_il_r.exe_687]
+RelativePath=JIT\Directed\shift\nativeint_il_r\nativeint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeint_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nativeuint_il_d.exe_688]
+RelativePath=JIT\Directed\shift\nativeuint_il_d\nativeuint_il_d.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nativeuint_il_r.exe_689]
+RelativePath=JIT\Directed\shift\nativeuint_il_r\nativeuint_il_r.exe
+WorkingDir=JIT\Directed\shift\nativeuint_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_cs_d.exe_690]
+RelativePath=JIT\Directed\shift\uint16_cs_d\uint16_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_cs_do.exe_691]
+RelativePath=JIT\Directed\shift\uint16_cs_do\uint16_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_cs_r.exe_692]
+RelativePath=JIT\Directed\shift\uint16_cs_r\uint16_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_cs_ro.exe_693]
+RelativePath=JIT\Directed\shift\uint16_cs_ro\uint16_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_d.exe_694]
+RelativePath=JIT\Directed\shift\uint16_d\uint16_d.exe
+WorkingDir=JIT\Directed\shift\uint16_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_do.exe_695]
+RelativePath=JIT\Directed\shift\uint16_do\uint16_do.exe
+WorkingDir=JIT\Directed\shift\uint16_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_r.exe_696]
+RelativePath=JIT\Directed\shift\uint16_r\uint16_r.exe
+WorkingDir=JIT\Directed\shift\uint16_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint16_ro.exe_697]
+RelativePath=JIT\Directed\shift\uint16_ro\uint16_ro.exe
+WorkingDir=JIT\Directed\shift\uint16_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_cs_d.exe_698]
+RelativePath=JIT\Directed\shift\uint32_cs_d\uint32_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_cs_do.exe_699]
+RelativePath=JIT\Directed\shift\uint32_cs_do\uint32_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_cs_r.exe_700]
+RelativePath=JIT\Directed\shift\uint32_cs_r\uint32_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_cs_ro.exe_701]
+RelativePath=JIT\Directed\shift\uint32_cs_ro\uint32_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_d.exe_702]
+RelativePath=JIT\Directed\shift\uint32_d\uint32_d.exe
+WorkingDir=JIT\Directed\shift\uint32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_do.exe_703]
+RelativePath=JIT\Directed\shift\uint32_do\uint32_do.exe
+WorkingDir=JIT\Directed\shift\uint32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_r.exe_704]
+RelativePath=JIT\Directed\shift\uint32_r\uint32_r.exe
+WorkingDir=JIT\Directed\shift\uint32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint32_ro.exe_705]
+RelativePath=JIT\Directed\shift\uint32_ro\uint32_ro.exe
+WorkingDir=JIT\Directed\shift\uint32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint64_d.exe_706]
+RelativePath=JIT\Directed\shift\uint64_d\uint64_d.exe
+WorkingDir=JIT\Directed\shift\uint64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint64_do.exe_707]
+RelativePath=JIT\Directed\shift\uint64_do\uint64_do.exe
+WorkingDir=JIT\Directed\shift\uint64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint64_r.exe_708]
+RelativePath=JIT\Directed\shift\uint64_r\uint64_r.exe
+WorkingDir=JIT\Directed\shift\uint64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint64_ro.exe_709]
+RelativePath=JIT\Directed\shift\uint64_ro\uint64_ro.exe
+WorkingDir=JIT\Directed\shift\uint64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_cs_d.exe_710]
+RelativePath=JIT\Directed\shift\uint8_cs_d\uint8_cs_d.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_cs_do.exe_711]
+RelativePath=JIT\Directed\shift\uint8_cs_do\uint8_cs_do.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_cs_r.exe_712]
+RelativePath=JIT\Directed\shift\uint8_cs_r\uint8_cs_r.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_cs_ro.exe_713]
+RelativePath=JIT\Directed\shift\uint8_cs_ro\uint8_cs_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_d.exe_714]
+RelativePath=JIT\Directed\shift\uint8_d\uint8_d.exe
+WorkingDir=JIT\Directed\shift\uint8_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_do.exe_715]
+RelativePath=JIT\Directed\shift\uint8_do\uint8_do.exe
+WorkingDir=JIT\Directed\shift\uint8_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_r.exe_716]
+RelativePath=JIT\Directed\shift\uint8_r\uint8_r.exe
+WorkingDir=JIT\Directed\shift\uint8_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint8_ro.exe_717]
+RelativePath=JIT\Directed\shift\uint8_ro\uint8_ro.exe
+WorkingDir=JIT\Directed\shift\uint8_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess1_cs_d.exe_718]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_d\straccess1_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess1_cs_do.exe_719]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_do\straccess1_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess1_cs_r.exe_720]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_r\straccess1_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess1_cs_ro.exe_721]
+RelativePath=JIT\Directed\StrAccess\straccess1_cs_ro\straccess1_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess2_cs_d.exe_722]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_d\straccess2_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess2_cs_do.exe_723]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_do\straccess2_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess2_cs_r.exe_724]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_r\straccess2_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess2_cs_ro.exe_725]
+RelativePath=JIT\Directed\StrAccess\straccess2_cs_ro\straccess2_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess3_cs_d.exe_726]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_d\straccess3_cs_d.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess3_cs_do.exe_727]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_do\straccess3_cs_do.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess3_cs_r.exe_728]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_r\straccess3_cs_r.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess3_cs_ro.exe_729]
+RelativePath=JIT\Directed\StrAccess\straccess3_cs_ro\straccess3_cs_ro.exe
+WorkingDir=JIT\Directed\StrAccess\straccess3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[straccess4.exe_730]
+RelativePath=JIT\Directed\StrAccess\straccess4\straccess4.exe
+WorkingDir=JIT\Directed\StrAccess\straccess4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StructABI.exe_731]
+RelativePath=JIT\Directed\StructABI\StructABI\StructABI.exe
+WorkingDir=JIT\Directed\StructABI\StructABI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1.exe_732]
+RelativePath=JIT\Directed\StructPromote\SP1\SP1.exe
+WorkingDir=JIT\Directed\StructPromote\SP1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1a.exe_733]
+RelativePath=JIT\Directed\StructPromote\SP1a\SP1a.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1a2.exe_734]
+RelativePath=JIT\Directed\StructPromote\SP1a2\SP1a2.exe
+WorkingDir=JIT\Directed\StructPromote\SP1a2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1b.exe_735]
+RelativePath=JIT\Directed\StructPromote\SP1b\SP1b.exe
+WorkingDir=JIT\Directed\StructPromote\SP1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1c.exe_736]
+RelativePath=JIT\Directed\StructPromote\SP1c\SP1c.exe
+WorkingDir=JIT\Directed\StructPromote\SP1c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP1d.exe_737]
+RelativePath=JIT\Directed\StructPromote\SP1d\SP1d.exe
+WorkingDir=JIT\Directed\StructPromote\SP1d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP2.exe_738]
+RelativePath=JIT\Directed\StructPromote\SP2\SP2.exe
+WorkingDir=JIT\Directed\StructPromote\SP2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP2a.exe_739]
+RelativePath=JIT\Directed\StructPromote\SP2a\SP2a.exe
+WorkingDir=JIT\Directed\StructPromote\SP2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP2b.exe_740]
+RelativePath=JIT\Directed\StructPromote\SP2b\SP2b.exe
+WorkingDir=JIT\Directed\StructPromote\SP2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SP2c.exe_741]
+RelativePath=JIT\Directed\StructPromote\SP2c\SP2c.exe
+WorkingDir=JIT\Directed\StructPromote\SP2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SpAddr.exe_742]
+RelativePath=JIT\Directed\StructPromote\SpAddr\SpAddr.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SpAddrAT.exe_743]
+RelativePath=JIT\Directed\StructPromote\SpAddrAT\SpAddrAT.exe
+WorkingDir=JIT\Directed\StructPromote\SpAddrAT
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall.exe_744]
+RelativePath=JIT\Directed\tailcall\tailcall\tailcall.exe
+WorkingDir=JIT\Directed\tailcall\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fault.exe_745]
+RelativePath=JIT\Directed\throwbox\fault\fault.exe
+WorkingDir=JIT\Directed\throwbox\fault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter.exe_746]
+RelativePath=JIT\Directed\throwbox\filter\filter.exe
+WorkingDir=JIT\Directed\throwbox\filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finally.exe_747]
+RelativePath=JIT\Directed\throwbox\finally\finally.exe
+WorkingDir=JIT\Directed\throwbox\finally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrow.exe_748]
+RelativePath=JIT\Directed\throwbox\rethrow\rethrow.exe
+WorkingDir=JIT\Directed\throwbox\rethrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mutualrecurthd-tls.exe_749]
+RelativePath=JIT\Directed\tls\mutualrecurthd-tls\mutualrecurthd-tls.exe
+WorkingDir=JIT\Directed\tls\mutualrecurthd-tls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test-tls.exe_750]
+RelativePath=JIT\Directed\tls\test-tls\test-tls.exe
+WorkingDir=JIT\Directed\tls\test-tls
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TypedReference.exe_751]
+RelativePath=JIT\Directed\TypedReference\TypedReference\TypedReference.exe
+WorkingDir=JIT\Directed\TypedReference\TypedReference
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev10_846218.exe_752]
+RelativePath=JIT\Directed\UnrollLoop\Dev10_846218\Dev10_846218.exe
+WorkingDir=JIT\Directed\UnrollLoop\Dev10_846218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop1_cs_d.exe_753]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_d\loop1_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop1_cs_do.exe_754]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_do\loop1_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop1_cs_r.exe_755]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_r\loop1_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop1_cs_ro.exe_756]
+RelativePath=JIT\Directed\UnrollLoop\loop1_cs_ro\loop1_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop2_cs_d.exe_757]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_d\loop2_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop2_cs_do.exe_758]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_do\loop2_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop2_cs_r.exe_759]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_r\loop2_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop2_cs_ro.exe_760]
+RelativePath=JIT\Directed\UnrollLoop\loop2_cs_ro\loop2_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop3_il_d.exe_761]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_d\loop3_il_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop3_il_r.exe_762]
+RelativePath=JIT\Directed\UnrollLoop\loop3_il_r\loop3_il_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop4_cs_d.exe_763]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_d\loop4_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop4_cs_do.exe_764]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_do\loop4_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop4_cs_r.exe_765]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_r\loop4_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop4_cs_ro.exe_766]
+RelativePath=JIT\Directed\UnrollLoop\loop4_cs_ro\loop4_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop6_cs_d.exe_767]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_d\loop6_cs_d.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop6_cs_do.exe_768]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_do\loop6_cs_do.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop6_cs_r.exe_769]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_r\loop6_cs_r.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loop6_cs_ro.exe_770]
+RelativePath=JIT\Directed\UnrollLoop\loop6_cs_ro\loop6_cs_ro.exe
+WorkingDir=JIT\Directed\UnrollLoop\loop6_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev10_863995.exe_771]
+RelativePath=JIT\Directed\zeroinit\Dev10_863995\Dev10_863995.exe
+WorkingDir=JIT\Directed\zeroinit\Dev10_863995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_byte.exe_772]
+RelativePath=JIT\Directed\zeroinit\init_byte\init_byte.exe
+WorkingDir=JIT\Directed\zeroinit\init_byte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_int32.exe_773]
+RelativePath=JIT\Directed\zeroinit\init_int32\init_int32.exe
+WorkingDir=JIT\Directed\zeroinit\init_int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_int64.exe_774]
+RelativePath=JIT\Directed\zeroinit\init_int64\init_int64.exe
+WorkingDir=JIT\Directed\zeroinit\init_int64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_struct.exe_775]
+RelativePath=JIT\Directed\zeroinit\init_struct\init_struct.exe
+WorkingDir=JIT\Directed\zeroinit\init_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_uint32.exe_776]
+RelativePath=JIT\Directed\zeroinit\init_uint32\init_uint32.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[init_uint64.exe_777]
+RelativePath=JIT\Directed\zeroinit\init_uint64\init_uint64.exe
+WorkingDir=JIT\Directed\zeroinit\init_uint64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tail.exe_778]
+RelativePath=JIT\Directed\zeroinit\tail\tail.exe
+WorkingDir=JIT\Directed\zeroinit\tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_779]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01_instance.exe_780]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01_static.exe_781]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class02.exe_782]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02\class02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class03.exe_783]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03\class03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class04.exe_784]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04\class04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class05.exe_785]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05\class05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class06.exe_786]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06\class06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class07.exe_787]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07\class07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\class07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struc01.exe_788]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01\struc01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struc01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Struct01.exe_789]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01\Struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Struct01_instance.exe_790]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance\Struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\Struct01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01_static.exe_791]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct02.exe_792]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02\struct02.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct03.exe_793]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03\struct03.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct04.exe_794]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04\struct04.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct05.exe_795]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05\struct05.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct06.exe_796]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06\struct06.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct07.exe_797]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07\struct07.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\Jagged\struct07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_798]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01_instance.exe_799]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance\class01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01_static.exe_800]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static\class01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\class01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_801]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01_instance.exe_802]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance\struct01_instance.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_instance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01_static.exe_803]
+RelativePath=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static\struct01_static.exe
+WorkingDir=JIT\Generics\Arrays\ConstructedTypes\MultiDim\struct01_static
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_804]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_805]
+RelativePath=JIT\Generics\Arrays\TypeParameters\Jagged\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\Jagged\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_806]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\class01\class01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_807]
+RelativePath=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01\struct01.exe
+WorkingDir=JIT\Generics\Arrays\TypeParameters\MultiDim\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_cs_d.exe_808]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_d\class1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_cs_do.exe_809]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_do\class1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_cs_r.exe_810]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_r\class1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_cs_ro.exe_811]
+RelativePath=JIT\Generics\ConstrainedCall\class1_cs_ro\class1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_il_d.exe_812]
+RelativePath=JIT\Generics\ConstrainedCall\class1_il_d\class1_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class1_il_r.exe_813]
+RelativePath=JIT\Generics\ConstrainedCall\class1_il_r\class1_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_cs_d.exe_814]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_d\class2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_cs_do.exe_815]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_do\class2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_cs_r.exe_816]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_r\class2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_cs_ro.exe_817]
+RelativePath=JIT\Generics\ConstrainedCall\class2_cs_ro\class2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_il_d.exe_818]
+RelativePath=JIT\Generics\ConstrainedCall\class2_il_d\class2_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class2_il_r.exe_819]
+RelativePath=JIT\Generics\ConstrainedCall\class2_il_r\class2_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\class2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_cs_d.exe_820]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_d\vt1_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_cs_do.exe_821]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_do\vt1_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_cs_r.exe_822]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_r\vt1_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_cs_ro.exe_823]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_cs_ro\vt1_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_il_d.exe_824]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_d\vt1_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt1_il_r.exe_825]
+RelativePath=JIT\Generics\ConstrainedCall\vt1_il_r\vt1_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_cs_d.exe_826]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_d\vt2_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_cs_do.exe_827]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_do\vt2_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_cs_r.exe_828]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_r\vt2_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_cs_ro.exe_829]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_cs_ro\vt2_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_il_d.exe_830]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_d\vt2_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt2_il_r.exe_831]
+RelativePath=JIT\Generics\ConstrainedCall\vt2_il_r\vt2_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_cs_d.exe_832]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_d\vt3_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_cs_do.exe_833]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_do\vt3_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_cs_r.exe_834]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_r\vt3_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_cs_ro.exe_835]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_cs_ro\vt3_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_il_d.exe_836]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_d\vt3_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt3_il_r.exe_837]
+RelativePath=JIT\Generics\ConstrainedCall\vt3_il_r\vt3_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_cs_d.exe_838]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_d\vt4_cs_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_cs_do.exe_839]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_do\vt4_cs_do.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_cs_r.exe_840]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_r\vt4_cs_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_cs_ro.exe_841]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_cs_ro\vt4_cs_ro.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_il_d.exe_842]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_il_d\vt4_il_d.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vt4_il_r.exe_843]
+RelativePath=JIT\Generics\ConstrainedCall\vt4_il_r\vt4_il_r.exe
+WorkingDir=JIT\Generics\ConstrainedCall\vt4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call_instance01.exe_844]
+RelativePath=JIT\Generics\Constraints\call_instance01\call_instance01.exe
+WorkingDir=JIT\Generics\Constraints\call_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Call_instance01_d.exe_845]
+RelativePath=JIT\Generics\Constraints\Call_instance01_d\Call_instance01_d.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Call_instance01_do.exe_846]
+RelativePath=JIT\Generics\Constraints\Call_instance01_do\Call_instance01_do.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Call_instance01_r.exe_847]
+RelativePath=JIT\Generics\Constraints\Call_instance01_r\Call_instance01_r.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Call_instance01_ro.exe_848]
+RelativePath=JIT\Generics\Constraints\Call_instance01_ro\Call_instance01_ro.exe
+WorkingDir=JIT\Generics\Constraints\Call_instance01_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call_static01.exe_849]
+RelativePath=JIT\Generics\Constraints\call_static01\call_static01.exe
+WorkingDir=JIT\Generics\Constraints\call_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convert_instance01.exe_850]
+RelativePath=JIT\Generics\Constraints\convert_instance01\convert_instance01.exe
+WorkingDir=JIT\Generics\Constraints\convert_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convert_static01.exe_851]
+RelativePath=JIT\Generics\Constraints\convert_static01\convert_static01.exe
+WorkingDir=JIT\Generics\Constraints\convert_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[transitive_instance01.exe_852]
+RelativePath=JIT\Generics\Constraints\transitive_instance01\transitive_instance01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[transitive_static01.exe_853]
+RelativePath=JIT\Generics\Constraints\transitive_static01\transitive_static01.exe
+WorkingDir=JIT\Generics\Constraints\transitive_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box_unbox01.exe_854]
+RelativePath=JIT\Generics\Conversions\Boxing\box_unbox01\box_unbox01.exe
+WorkingDir=JIT\Generics\Conversions\Boxing\box_unbox01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentogen01.exe_855]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen01\gentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentogen02.exe_856]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen02\gentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentogen03.exe_857]
+RelativePath=JIT\Generics\Conversions\Reference\gentogen03\gentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentogen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentonongen01.exe_858]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen01\gentonongen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentonongen02.exe_859]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen02\gentonongen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gentonongen03.exe_860]
+RelativePath=JIT\Generics\Conversions\Reference\gentonongen03\gentonongen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\gentonongen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nongentogen01.exe_861]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen01\nongentogen01.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nongentogen02.exe_862]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen02\nongentogen02.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nongentogen03.exe_863]
+RelativePath=JIT\Generics\Conversions\Reference\nongentogen03\nongentogen03.exe
+WorkingDir=JIT\Generics\Conversions\Reference\nongentogen03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos55915408cs.exe_864]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs\chaos55915408cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos55915408cs_o.exe_865]
+RelativePath=JIT\Generics\Coverage\chaos55915408cs_o\chaos55915408cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos55915408cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos56200037cs.exe_866]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs\chaos56200037cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos56200037cs_o.exe_867]
+RelativePath=JIT\Generics\Coverage\chaos56200037cs_o\chaos56200037cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos56200037cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos65204782cs.exe_868]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs\chaos65204782cs.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[chaos65204782cs_o.exe_869]
+RelativePath=JIT\Generics\Coverage\chaos65204782cs_o\chaos65204782cs_o.exe
+WorkingDir=JIT\Generics\Coverage\chaos65204782cs_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[general_class_instance01.exe_870]
+RelativePath=JIT\Generics\Exceptions\general_class_instance01\general_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[general_class_static01.exe_871]
+RelativePath=JIT\Generics\Exceptions\general_class_static01\general_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[general_struct_instance01.exe_872]
+RelativePath=JIT\Generics\Exceptions\general_struct_instance01\general_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[general_struct_static01.exe_873]
+RelativePath=JIT\Generics\Exceptions\general_struct_static01\general_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\general_struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_class_instance01.exe_874]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance01\specific_class_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_class_instance02.exe_875]
+RelativePath=JIT\Generics\Exceptions\specific_class_instance02\specific_class_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_class_static01.exe_876]
+RelativePath=JIT\Generics\Exceptions\specific_class_static01\specific_class_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_class_static02.exe_877]
+RelativePath=JIT\Generics\Exceptions\specific_class_static02\specific_class_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_class_static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_struct_instance01.exe_878]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance01\specific_struct_instance01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_struct_instance02.exe_879]
+RelativePath=JIT\Generics\Exceptions\specific_struct_instance02\specific_struct_instance02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_struct_static01.exe_880]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static01\specific_struct_static01.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[specific_struct_static02.exe_881]
+RelativePath=JIT\Generics\Exceptions\specific_struct_static02\specific_struct_static02.exe
+WorkingDir=JIT\Generics\Exceptions\specific_struct_static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[getclassfrommethodparam.exe_882]
+RelativePath=JIT\Generics\Fields\getclassfrommethodparam\getclassfrommethodparam.exe
+WorkingDir=JIT\Generics\Fields\getclassfrommethodparam
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_class01.exe_883]
+RelativePath=JIT\Generics\Fields\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_struct01.exe_884]
+RelativePath=JIT\Generics\Fields\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_class01.exe_885]
+RelativePath=JIT\Generics\Fields\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_struct01.exe_886]
+RelativePath=JIT\Generics\Fields\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_class01.exe_887]
+RelativePath=JIT\Generics\Fields\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_struct01.exe_888]
+RelativePath=JIT\Generics\Fields\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_class01.exe_889]
+RelativePath=JIT\Generics\Fields\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_struct01.exe_890]
+RelativePath=JIT\Generics\Fields\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_class01.exe_891]
+RelativePath=JIT\Generics\Fields\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_struct01.exe_892]
+RelativePath=JIT\Generics\Fields\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_class01.exe_893]
+RelativePath=JIT\Generics\Fields\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_struct01.exe_894]
+RelativePath=JIT\Generics\Fields\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Fields\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baseclass01.exe_895]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass01\baseclass01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baseclass02.exe_896]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass02\baseclass02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baseclass03.exe_897]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass03\baseclass03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baseclass04.exe_898]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass04\baseclass04.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baseclass05.exe_899]
+RelativePath=JIT\Generics\Instantiation\Classes\baseclass05\baseclass05.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\baseclass05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_900]
+RelativePath=JIT\Generics\Instantiation\Classes\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class02.exe_901]
+RelativePath=JIT\Generics\Instantiation\Classes\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class03.exe_902]
+RelativePath=JIT\Generics\Instantiation\Classes\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Classes\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate001.exe_903]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate001\Delegate001.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate002.exe_904]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate002\Delegate002.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate003.exe_905]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate003\Delegate003.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate004.exe_906]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate004\Delegate004.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate005.exe_907]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate005\Delegate005.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate006.exe_908]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate006\Delegate006.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate007.exe_909]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate007\Delegate007.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate008.exe_910]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate008\Delegate008.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate009.exe_911]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate009\Delegate009.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate010.exe_912]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate010\Delegate010.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate011.exe_913]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate011\Delegate011.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate012.exe_914]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate012\Delegate012.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate013.exe_915]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate013\Delegate013.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate014.exe_916]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate014\Delegate014.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate015.exe_917]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate015\Delegate015.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate016.exe_918]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate016\Delegate016.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate017.exe_919]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate017\Delegate017.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate018.exe_920]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate018\Delegate018.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate019.exe_921]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate019\Delegate019.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate020.exe_922]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate020\Delegate020.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate021.exe_923]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate021\Delegate021.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate022.exe_924]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate022\Delegate022.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate023.exe_925]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate023\Delegate023.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate024.exe_926]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate024\Delegate024.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate025.exe_927]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate025\Delegate025.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate026.exe_928]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate026\Delegate026.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate027.exe_929]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate027\Delegate027.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate028.exe_930]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate028\Delegate028.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate029.exe_931]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate029\Delegate029.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate030.exe_932]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate030\Delegate030.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate031.exe_933]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate031\Delegate031.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Delegate032.exe_934]
+RelativePath=JIT\Generics\Instantiation\delegates\Delegate032\Delegate032.exe
+WorkingDir=JIT\Generics\Instantiation\delegates\Delegate032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_935]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class01\class01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class02.exe_936]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class02\class02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class03.exe_937]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class03\class03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class04.exe_938]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class04\class04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class05.exe_939]
+RelativePath=JIT\Generics\Instantiation\Interfaces\class05\class05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\class05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_940]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct02.exe_941]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct03.exe_942]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct04.exe_943]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct04\struct04.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct05.exe_944]
+RelativePath=JIT\Generics\Instantiation\Interfaces\struct05\struct05.exe
+WorkingDir=JIT\Generics\Instantiation\Interfaces\struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_945]
+RelativePath=JIT\Generics\Instantiation\Structs\struct01\struct01.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct02.exe_946]
+RelativePath=JIT\Generics\Instantiation\Structs\struct02\struct02.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct03.exe_947]
+RelativePath=JIT\Generics\Instantiation\Structs\struct03\struct03.exe
+WorkingDir=JIT\Generics\Instantiation\Structs\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_class01.exe_948]
+RelativePath=JIT\Generics\Locals\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_struct01.exe_949]
+RelativePath=JIT\Generics\Locals\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_class01.exe_950]
+RelativePath=JIT\Generics\Locals\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_struct01.exe_951]
+RelativePath=JIT\Generics\Locals\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_class01.exe_952]
+RelativePath=JIT\Generics\Locals\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_struct01.exe_953]
+RelativePath=JIT\Generics\Locals\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_class01.exe_954]
+RelativePath=JIT\Generics\Locals\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_struct01.exe_955]
+RelativePath=JIT\Generics\Locals\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_class01.exe_956]
+RelativePath=JIT\Generics\Locals\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_struct01.exe_957]
+RelativePath=JIT\Generics\Locals\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_class01.exe_958]
+RelativePath=JIT\Generics\Locals\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_struct01.exe_959]
+RelativePath=JIT\Generics\Locals\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Locals\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class_instance01.exe_960]
+RelativePath=JIT\Generics\MemberAccess\class_instance01\class_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class_static01.exe_961]
+RelativePath=JIT\Generics\MemberAccess\class_static01\class_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\class_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interface_class01.exe_962]
+RelativePath=JIT\Generics\MemberAccess\interface_class01\interface_class01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interface_class02.exe_963]
+RelativePath=JIT\Generics\MemberAccess\interface_class02\interface_class02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interface_struct01.exe_964]
+RelativePath=JIT\Generics\MemberAccess\interface_struct01\interface_struct01.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interface_struct02.exe_965]
+RelativePath=JIT\Generics\MemberAccess\interface_struct02\interface_struct02.exe
+WorkingDir=JIT\Generics\MemberAccess\interface_struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct_instance01.exe_966]
+RelativePath=JIT\Generics\MemberAccess\struct_instance01\struct_instance01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct_static01.exe_967]
+RelativePath=JIT\Generics\MemberAccess\struct_static01\struct_static01.exe
+WorkingDir=JIT\Generics\MemberAccess\struct_static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_class01.exe_968]
+RelativePath=JIT\Generics\Parameters\instance_assignment_class01\instance_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_assignment_struct01.exe_969]
+RelativePath=JIT\Generics\Parameters\instance_assignment_struct01\instance_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_class01.exe_970]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_class01\instance_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_equalnull_struct01.exe_971]
+RelativePath=JIT\Generics\Parameters\instance_equalnull_struct01\instance_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_class01.exe_972]
+RelativePath=JIT\Generics\Parameters\instance_passing_class01\instance_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance_passing_struct01.exe_973]
+RelativePath=JIT\Generics\Parameters\instance_passing_struct01\instance_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\instance_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_class01.exe_974]
+RelativePath=JIT\Generics\Parameters\static_assignment_class01\static_assignment_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_assignment_struct01.exe_975]
+RelativePath=JIT\Generics\Parameters\static_assignment_struct01\static_assignment_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_assignment_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_class01.exe_976]
+RelativePath=JIT\Generics\Parameters\static_equalnull_class01\static_equalnull_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_equalnull_struct01.exe_977]
+RelativePath=JIT\Generics\Parameters\static_equalnull_struct01\static_equalnull_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_equalnull_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_class01.exe_978]
+RelativePath=JIT\Generics\Parameters\static_passing_class01\static_passing_class01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static_passing_struct01.exe_979]
+RelativePath=JIT\Generics\Parameters\static_passing_struct01\static_passing_struct01.exe
+WorkingDir=JIT\Generics\Parameters\static_passing_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance01.exe_980]
+RelativePath=JIT\Generics\pinvoke\instance01\instance01.exe
+WorkingDir=JIT\Generics\pinvoke\instance01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance02.exe_981]
+RelativePath=JIT\Generics\pinvoke\instance02\instance02.exe
+WorkingDir=JIT\Generics\pinvoke\instance02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[instance03.exe_982]
+RelativePath=JIT\Generics\pinvoke\instance03\instance03.exe
+WorkingDir=JIT\Generics\pinvoke\instance03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static01.exe_983]
+RelativePath=JIT\Generics\pinvoke\static01\static01.exe
+WorkingDir=JIT\Generics\pinvoke\static01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static02.exe_984]
+RelativePath=JIT\Generics\pinvoke\static02\static02.exe
+WorkingDir=JIT\Generics\pinvoke\static02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ddb148379.exe_985]
+RelativePath=JIT\Generics\regression\DDB148379\ddb148379\ddb148379.exe
+WorkingDir=JIT\Generics\regression\DDB148379\ddb148379
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class01.exe_986]
+RelativePath=JIT\Generics\Typeof\class01\class01.exe
+WorkingDir=JIT\Generics\Typeof\class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class02.exe_987]
+RelativePath=JIT\Generics\Typeof\class02\class02.exe
+WorkingDir=JIT\Generics\Typeof\class02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[class03.exe_988]
+RelativePath=JIT\Generics\Typeof\class03\class03.exe
+WorkingDir=JIT\Generics\Typeof\class03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dynamicTypes.exe_989]
+RelativePath=JIT\Generics\Typeof\dynamicTypes\dynamicTypes.exe
+WorkingDir=JIT\Generics\Typeof\dynamicTypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[objectBoxing.exe_990]
+RelativePath=JIT\Generics\Typeof\objectBoxing\objectBoxing.exe
+WorkingDir=JIT\Generics\Typeof\objectBoxing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refTypesdynamic.exe_991]
+RelativePath=JIT\Generics\Typeof\refTypesdynamic\refTypesdynamic.exe
+WorkingDir=JIT\Generics\Typeof\refTypesdynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct01.exe_992]
+RelativePath=JIT\Generics\Typeof\struct01\struct01.exe
+WorkingDir=JIT\Generics\Typeof\struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct02.exe_993]
+RelativePath=JIT\Generics\Typeof\struct02\struct02.exe
+WorkingDir=JIT\Generics\Typeof\struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct03.exe_994]
+RelativePath=JIT\Generics\Typeof\struct03\struct03.exe
+WorkingDir=JIT\Generics\Typeof\struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[valueTypeBoxing.exe_995]
+RelativePath=JIT\Generics\Typeof\valueTypeBoxing\valueTypeBoxing.exe
+WorkingDir=JIT\Generics\Typeof\valueTypeBoxing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[default_class01.exe_996]
+RelativePath=JIT\Generics\TypeParameters\default_class01\default_class01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_class01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[default_struct01.exe_997]
+RelativePath=JIT\Generics\TypeParameters\default_struct01\default_struct01.exe
+WorkingDir=JIT\Generics\TypeParameters\default_struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add.exe_998]
+RelativePath=JIT\IL_Conformance\Old\Base\add\add.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf.exe_999]
+RelativePath=JIT\IL_Conformance\Old\Base\add_ovf\add_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\add_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[and.exe_1000]
+RelativePath=JIT\IL_Conformance\Old\Base\and\and.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\and
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq.exe_1001]
+RelativePath=JIT\IL_Conformance\Old\Base\beq\beq.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\beq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_s.exe_1002]
+RelativePath=JIT\IL_Conformance\Old\Base\beq_s\beq_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\beq_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge.exe_1003]
+RelativePath=JIT\IL_Conformance\Old\Base\bge\bge.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_s.exe_1004]
+RelativePath=JIT\IL_Conformance\Old\Base\bge_s\bge_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bge_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt.exe_1005]
+RelativePath=JIT\IL_Conformance\Old\Base\bgt\bgt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_s.exe_1006]
+RelativePath=JIT\IL_Conformance\Old\Base\bgt_s\bgt_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bgt_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble.exe_1007]
+RelativePath=JIT\IL_Conformance\Old\Base\ble\ble.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_s.exe_1008]
+RelativePath=JIT\IL_Conformance\Old\Base\ble_s\ble_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ble_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt.exe_1009]
+RelativePath=JIT\IL_Conformance\Old\Base\blt\blt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\blt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_s.exe_1010]
+RelativePath=JIT\IL_Conformance\Old\Base\blt_s\blt_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\blt_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne.exe_1011]
+RelativePath=JIT\IL_Conformance\Old\Base\bne\bne.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_s.exe_1012]
+RelativePath=JIT\IL_Conformance\Old\Base\bne_s\bne_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\bne_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[br.exe_1013]
+RelativePath=JIT\IL_Conformance\Old\Base\br\br.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brfalse.exe_1014]
+RelativePath=JIT\IL_Conformance\Old\Base\brfalse\brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brfalse_s.exe_1015]
+RelativePath=JIT\IL_Conformance\Old\Base\brfalse_s\brfalse_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brfalse_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brtrue.exe_1016]
+RelativePath=JIT\IL_Conformance\Old\Base\brtrue\brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brtrue_s.exe_1017]
+RelativePath=JIT\IL_Conformance\Old\Base\brtrue_s\brtrue_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\brtrue_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[br_s.exe_1018]
+RelativePath=JIT\IL_Conformance\Old\Base\br_s\br_s.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\br_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call.exe_1019]
+RelativePath=JIT\IL_Conformance\Old\Base\call\call.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq.exe_1020]
+RelativePath=JIT\IL_Conformance\Old\Base\ceq\ceq.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ceq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt.exe_1021]
+RelativePath=JIT\IL_Conformance\Old\Base\cgt\cgt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\cgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ckfinite.exe_1022]
+RelativePath=JIT\IL_Conformance\Old\Base\ckfinite\ckfinite.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ckfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt.exe_1023]
+RelativePath=JIT\IL_Conformance\Old\Base\clt\clt.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\clt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv.exe_1024]
+RelativePath=JIT\IL_Conformance\Old\Base\conv\conv.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf.exe_1025]
+RelativePath=JIT\IL_Conformance\Old\Base\conv_ovf\conv_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\conv_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_1026]
+RelativePath=JIT\IL_Conformance\Old\Base\cpblk\cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div.exe_1027]
+RelativePath=JIT\IL_Conformance\Old\Base\div\div.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dup.exe_1028]
+RelativePath=JIT\IL_Conformance\Old\Base\dup\dup.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\dup
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_1029]
+RelativePath=JIT\IL_Conformance\Old\Base\initblk\initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jmp.exe_1030]
+RelativePath=JIT\IL_Conformance\Old\Base\jmp\jmp.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldargs_stargs.exe_1031]
+RelativePath=JIT\IL_Conformance\Old\Base\ldargs_stargs\ldargs_stargs.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldargs_stargs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_n.exe_1032]
+RelativePath=JIT\IL_Conformance\Old\Base\ldarg_n\ldarg_n.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_n
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_starg.exe_1033]
+RelativePath=JIT\IL_Conformance\Old\Base\ldarg_starg\ldarg_starg.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldarg_starg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc.exe_1034]
+RelativePath=JIT\IL_Conformance\Old\Base\ldc\ldc.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_i4_n.exe_1035]
+RelativePath=JIT\IL_Conformance\Old\Base\ldc_i4_n\ldc_i4_n.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldc_i4_n
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn_calli.exe_1036]
+RelativePath=JIT\IL_Conformance\Old\Base\ldftn_calli\ldftn_calli.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldftn_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_stind.exe_1037]
+RelativePath=JIT\IL_Conformance\Old\Base\ldind_stind\ldind_stind.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldind_stind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca.exe_1038]
+RelativePath=JIT\IL_Conformance\Old\Base\ldloca\ldloca.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_stloc.exe_1039]
+RelativePath=JIT\IL_Conformance\Old\Base\ldloc_stloc\ldloc_stloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldloc_stloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldnull.exe_1040]
+RelativePath=JIT\IL_Conformance\Old\Base\ldnull\ldnull.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul.exe_1041]
+RelativePath=JIT\IL_Conformance\Old\Base\mul\mul.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf.exe_1042]
+RelativePath=JIT\IL_Conformance\Old\Base\mul_ovf\mul_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\mul_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[neg.exe_1043]
+RelativePath=JIT\IL_Conformance\Old\Base\neg\neg.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nop.exe_1044]
+RelativePath=JIT\IL_Conformance\Old\Base\nop\nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[not.exe_1045]
+RelativePath=JIT\IL_Conformance\Old\Base\not\not.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\not
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[or.exe_1046]
+RelativePath=JIT\IL_Conformance\Old\Base\or\or.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\or
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pop.exe_1047]
+RelativePath=JIT\IL_Conformance\Old\Base\pop\pop.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\pop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem.exe_1048]
+RelativePath=JIT\IL_Conformance\Old\Base\rem\rem.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\rem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret.exe_1049]
+RelativePath=JIT\IL_Conformance\Old\Base\ret\ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shl.exe_1050]
+RelativePath=JIT\IL_Conformance\Old\Base\shl\shl.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\shl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shr.exe_1051]
+RelativePath=JIT\IL_Conformance\Old\Base\shr\shr.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\shr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub.exe_1052]
+RelativePath=JIT\IL_Conformance\Old\Base\sub\sub.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf.exe_1053]
+RelativePath=JIT\IL_Conformance\Old\Base\sub_ovf\sub_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\sub_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch.exe_1054]
+RelativePath=JIT\IL_Conformance\Old\Base\switch\switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall.exe_1055]
+RelativePath=JIT\IL_Conformance\Old\Base\tailcall\tailcall.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unaligned.exe_1056]
+RelativePath=JIT\IL_Conformance\Old\Base\unaligned\unaligned.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\unaligned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatile.exe_1057]
+RelativePath=JIT\IL_Conformance\Old\Base\volatile\volatile.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\volatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xor.exe_1058]
+RelativePath=JIT\IL_Conformance\Old\Base\xor\xor.exe
+WorkingDir=JIT\IL_Conformance\Old\Base\xor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_i.exe_1059]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i\add_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_I4.exe_1060]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_I4\add_I4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_i8.exe_1061]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_i8\add_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_i1.exe_1062]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1\add_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_i2.exe_1063]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2\add_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_i4.exe_1064]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4\add_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_i8.exe_1065]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8\add_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_u1.exe_1066]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1\add_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_u2.exe_1067]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2\add_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_u4.exe_1068]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4\add_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_ovf_u8.exe_1069]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8\add_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_r4.exe_1070]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r4\add_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[add_r8.exe_1071]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\add_r8\add_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\add_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[and_u4.exe_1072]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u4\and_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[and_u8.exe_1073]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\and_u8\and_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\and_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_i.exe_1074]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i\beq_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_i4.exe_1075]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i4\beq_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_i8.exe_1076]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_i8\beq_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_r4.exe_1077]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r4\beq_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[beq_r8.exe_1078]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\beq_r8\beq_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\beq_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_i4.exe_1079]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i4\bge_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_i8.exe_1080]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_i8\bge_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_r4.exe_1081]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r4\bge_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_r8.exe_1082]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_r8\bge_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_u.exe_1083]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_u\bge_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_un_i4.exe_1084]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4\bge_un_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_un_i8.exe_1085]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8\bge_un_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_un_r4.exe_1086]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4\bge_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bge_un_r8.exe_1087]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8\bge_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bge_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_i4.exe_1088]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4\bgt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_i8.exe_1089]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8\bgt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_r4.exe_1090]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4\bgt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_r8.exe_1091]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8\bgt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_u.exe_1092]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u\bgt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_u4.exe_1093]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4\bgt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_u8.exe_1094]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8\bgt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_un_r4.exe_1095]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4\bgt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bgt_un_r8.exe_1096]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8\bgt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bgt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_i4.exe_1097]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i4\ble_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_i8.exe_1098]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_i8\ble_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_r4.exe_1099]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r4\ble_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_r8.exe_1100]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_r8\ble_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_u.exe_1101]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u\ble_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_u4.exe_1102]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u4\ble_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_u8.exe_1103]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_u8\ble_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_un_r4.exe_1104]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4\ble_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ble_un_r8.exe_1105]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8\ble_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ble_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_i4.exe_1106]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i4\blt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_i8.exe_1107]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_i8\blt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_r4.exe_1108]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r4\blt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_r8.exe_1109]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_r8\blt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_u.exe_1110]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u\blt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_u4.exe_1111]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u4\blt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_u8.exe_1112]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_u8\blt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_un_r4.exe_1113]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4\blt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[blt_un_r8.exe_1114]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8\blt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\blt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_u.exe_1115]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u\bne_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_u4.exe_1116]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u4\bne_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_u8.exe_1117]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_u8\bne_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_un_r4.exe_1118]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4\bne_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_un_r8.exe_1119]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8\bne_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\bne_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[br.exe_1120]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\br\br.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brfalse.exe_1121]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brfalse\brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[brtrue.exe_1122]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\brtrue\brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call.exe_1123]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\call\call.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq_i.exe_1124]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i\ceq_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq_i4.exe_1125]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4\ceq_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq_i8.exe_1126]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8\ceq_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq_r4.exe_1127]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4\ceq_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ceq_r8.exe_1128]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8\ceq_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ceq_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_i4.exe_1129]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4\cgt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_i8.exe_1130]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8\cgt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_r4.exe_1131]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4\cgt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_r8.exe_1132]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8\cgt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_u.exe_1133]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u\cgt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_u4.exe_1134]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4\cgt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_u8.exe_1135]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8\cgt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_un_r4.exe_1136]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4\cgt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cgt_un_r8.exe_1137]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8\cgt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cgt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ckfinite_r4.exe_1138]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4\ckfinite_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ckfinite_r8.exe_1139]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8\ckfinite_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ckfinite_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_i4.exe_1140]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i4\clt_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_i8.exe_1141]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_i8\clt_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_r4.exe_1142]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r4\clt_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_r8.exe_1143]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_r8\clt_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_u.exe_1144]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u\clt_u.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_u4.exe_1145]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u4\clt_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_u8.exe_1146]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_u8\clt_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_un_r4.exe_1147]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4\clt_un_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[clt_un_r8.exe_1148]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8\clt_un_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\clt_un_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Conv_I4.exe_1149]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4\Conv_I4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Conv_I8.exe_1150]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8\Conv_I8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i1_un.exe_1151]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un\conv_ovf_i1_un.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i1_un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i4_i1.exe_1152]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1\conv_ovf_i4_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i4_i2.exe_1153]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2\conv_ovf_i4_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i4_u4.exe_1154]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4\conv_ovf_i4_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i4_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i8_i.exe_1155]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i\conv_ovf_i8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i8_i4.exe_1156]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4\conv_ovf_i8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i8_u8.exe_1157]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8\conv_ovf_i8_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_i8_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_r8_i.exe_1158]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i\conv_ovf_r8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_r8_i4.exe_1159]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4\conv_ovf_r8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_r8_i8.exe_1160]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8\conv_ovf_r8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_r8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u4_i.exe_1161]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i\conv_ovf_u4_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u4_i4.exe_1162]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4\conv_ovf_u4_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u4_u1.exe_1163]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1\conv_ovf_u4_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u4_u2.exe_1164]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2\conv_ovf_u4_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u4_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u8_i8.exe_1165]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8\conv_ovf_u8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_u8_u4.exe_1166]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4\conv_ovf_u8_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\conv_ovf_u8_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Conv_R4.exe_1167]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4\Conv_R4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\Conv_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk.exe_1168]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\cpblk\cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_br.exe_1169]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_br\c_br.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_br
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_brfalse.exe_1170]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse\c_brfalse.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_brtrue.exe_1171]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue\c_brtrue.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_brtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_call.exe_1172]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_call\c_call.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_cpblk.exe_1173]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk\c_cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_initblk.exe_1174]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_initblk\c_initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_ldvirtftn.exe_1175]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn\c_ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_localloc.exe_1176]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_localloc\c_localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_nop.exe_1177]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_nop\c_nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_ret.exe_1178]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_ret\c_ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[c_switch.exe_1179]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\c_switch\c_switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\c_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_i4.exe_1180]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i4\div_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_i8.exe_1181]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_i8\div_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_r4.exe_1182]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r4\div_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_r8.exe_1183]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_r8\div_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_u4.exe_1184]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u4\div_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_u8.exe_1185]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\div_u8\div_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\div_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dup4.exe_1186]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup4\dup4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dup8.exe_1187]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dup8\dup8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dup8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dupi.exe_1188]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\dupi\dupi.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\dupi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk.exe_1189]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\initblk\initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_i.exe_1190]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i\ldarga_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_i4.exe_1191]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4\ldarga_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_i8.exe_1192]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8\ldarga_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_r4.exe_1193]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4\ldarga_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_r8.exe_1194]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8\ldarga_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarga_ref.exe_1195]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref\ldarga_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarga_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_i.exe_1196]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i\ldarg_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_i4.exe_1197]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4\ldarg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_i8.exe_1198]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8\ldarg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_r4.exe_1199]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4\ldarg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_r8.exe_1200]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8\ldarg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_ref.exe_1201]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref\ldarg_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldarg_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_i1.exe_1202]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1\ldc_add_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_i2.exe_1203]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2\ldc_add_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_i4.exe_1204]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4\ldc_add_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_i8.exe_1205]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8\ldc_add_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_u1.exe_1206]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1\ldc_add_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_u2.exe_1207]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2\ldc_add_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_u4.exe_1208]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4\ldc_add_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_add_ovf_u8.exe_1209]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8\ldc_add_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_add_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ckfinite_r4.exe_1210]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4\ldc_ckfinite_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ckfinite_r8.exe_1211]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8\ldc_ckfinite_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ckfinite_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_i4_i1.exe_1212]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1\ldc_conv_ovf_i4_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_i4_i2.exe_1213]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2\ldc_conv_ovf_i4_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_i4_u4.exe_1214]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4\ldc_conv_ovf_i4_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i4_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_i8_i4.exe_1215]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4\ldc_conv_ovf_i8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_i8_u8.exe_1216]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8\ldc_conv_ovf_i8_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_i8_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_r8_i.exe_1217]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i\ldc_conv_ovf_r8_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_r8_i4.exe_1218]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4\ldc_conv_ovf_r8_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_r8_i8.exe_1219]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8\ldc_conv_ovf_r8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_r8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u4_i.exe_1220]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i\ldc_conv_ovf_u4_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u4_i4.exe_1221]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4\ldc_conv_ovf_u4_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u4_u1.exe_1222]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1\ldc_conv_ovf_u4_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u4_u2.exe_1223]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2\ldc_conv_ovf_u4_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u4_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u8_i8.exe_1224]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8\ldc_conv_ovf_u8_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_conv_ovf_u8_u4.exe_1225]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4\ldc_conv_ovf_u8_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_conv_ovf_u8_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_c_cpblk.exe_1226]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk\ldc_c_cpblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_cpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_c_initblk.exe_1227]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk\ldc_c_initblk.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_initblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_c_nop.exe_1228]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop\ldc_c_nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_c_ret.exe_1229]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret\ldc_c_ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_c_switch.exe_1230]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch\ldc_c_switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_c_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_i4.exe_1231]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4\ldc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_i8.exe_1232]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8\ldc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_i1.exe_1233]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1\ldc_mul_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_i2.exe_1234]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2\ldc_mul_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_i4.exe_1235]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4\ldc_mul_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_i8.exe_1236]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8\ldc_mul_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_u1.exe_1237]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1\ldc_mul_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_u2.exe_1238]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2\ldc_mul_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_u4.exe_1239]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4\ldc_mul_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_mul_ovf_u8.exe_1240]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8\ldc_mul_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_mul_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_neg_i4.exe_1241]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4\ldc_neg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_neg_i8.exe_1242]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8\ldc_neg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_neg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_r4.exe_1243]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4\ldc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_r8.exe_1244]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8\ldc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_i.exe_1245]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i\ldc_ret_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_i4.exe_1246]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4\ldc_ret_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_i8.exe_1247]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8\ldc_ret_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_r4.exe_1248]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4\ldc_ret_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_r8.exe_1249]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8\ldc_ret_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_ret_ref.exe_1250]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref\ldc_ret_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_ret_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_i.exe_1251]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i\ldc_sub_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_i1.exe_1252]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1\ldc_sub_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_i2.exe_1253]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2\ldc_sub_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_i4.exe_1254]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4\ldc_sub_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_i8.exe_1255]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8\ldc_sub_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_u1.exe_1256]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1\ldc_sub_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_u2.exe_1257]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2\ldc_sub_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_u4.exe_1258]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4\ldc_sub_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldc_sub_ovf_u8.exe_1259]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8\ldc_sub_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldc_sub_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn.exe_1260]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldftn\ldftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_i.exe_1261]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i\ldind_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_i1.exe_1262]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1\ldind_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_i2.exe_1263]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2\ldind_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_i4.exe_1264]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4\ldind_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_i8.exe_1265]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8\ldind_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_r4.exe_1266]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4\ldind_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_r8.exe_1267]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8\ldind_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_ref.exe_1268]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref\ldind_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_u1.exe_1269]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1\ldind_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_u2.exe_1270]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2\ldind_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldind_u4.exe_1271]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4\ldind_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldind_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_i.exe_1272]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i\ldloc_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_i4.exe_1273]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4\ldloc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_i8.exe_1274]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8\ldloc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_r4.exe_1275]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4\ldloc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_r8.exe_1276]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8\ldloc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_ref.exe_1277]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref\ldloc_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldloc_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldnull_i.exe_1278]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i\ldnull_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldnull_ref.exe_1279]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref\ldnull_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldnull_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftn.exe_1280]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn\ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_1281]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\localloc\localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_i4.exe_1282]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i4\mul_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_i8.exe_1283]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_i8\mul_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_i1.exe_1284]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1\mul_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_i2.exe_1285]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2\mul_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_i4.exe_1286]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4\mul_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_i8.exe_1287]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8\mul_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_u1.exe_1288]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1\mul_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_u2.exe_1289]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2\mul_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_u4.exe_1290]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4\mul_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_ovf_u8.exe_1291]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8\mul_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_r4.exe_1292]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r4\mul_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_r8.exe_1293]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\mul_r8\mul_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\mul_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[neg_i4.exe_1294]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i4\neg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[neg_i8.exe_1295]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_i8\neg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[neg_r4.exe_1296]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r4\neg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[neg_r8.exe_1297]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\neg_r8\neg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\neg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nop.exe_1298]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\nop\nop.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\nop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[not_u4.exe_1299]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u4\not_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[not_u8.exe_1300]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\not_u8\not_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\not_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[or_u4.exe_1301]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u4\or_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[or_u8.exe_1302]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\or_u8\or_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\or_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pop4.exe_1303]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop4\pop4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pop8.exe_1304]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\pop8\pop8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\pop8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[popi.exe_1305]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\popi\popi.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refs.exe_1306]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\refs\refs.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\refs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_i4.exe_1307]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i4\rem_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_i8.exe_1308]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_i8\rem_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_r4.exe_1309]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r4\rem_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_r8.exe_1310]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_r8\rem_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_u4.exe_1311]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u4\rem_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_u8.exe_1312]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\rem_u8\rem_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\rem_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret.exe_1313]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret\ret.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_i.exe_1314]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i\ret_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_i4.exe_1315]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i4\ret_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_i8.exe_1316]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_i8\ret_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_r4.exe_1317]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r4\ret_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_r8.exe_1318]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_r8\ret_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_ref.exe_1319]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\ret_ref\ret_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\ret_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shl_u4.exe_1320]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u4\shl_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shl_u8.exe_1321]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shl_u8\shl_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shl_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shr_i4.exe_1322]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i4\shr_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shr_i8.exe_1323]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_i8\shr_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shr_u4.exe_1324]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u4\shr_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[shr_u8.exe_1325]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\shr_u8\shr_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\shr_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sizeof.exe_1326]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sizeof\sizeof.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_i.exe_1327]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i\starg_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_i4.exe_1328]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i4\starg_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_i8.exe_1329]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_i8\starg_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_r4.exe_1330]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r4\starg_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_r8.exe_1331]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_r8\starg_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[starg_ref.exe_1332]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\starg_ref\starg_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\starg_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_i1.exe_1333]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i1\stind_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_i2.exe_1334]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i2\stind_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_i4.exe_1335]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i4\stind_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_i8.exe_1336]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_i8\stind_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_r8.exe_1337]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_r8\stind_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stind_ref.exe_1338]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stind_ref\stind_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stind_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_i.exe_1339]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i\stloc_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_i4.exe_1340]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4\stloc_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_i8.exe_1341]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8\stloc_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_r4.exe_1342]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4\stloc_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_r8.exe_1343]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8\stloc_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stloc_ref.exe_1344]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref\stloc_ref.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\stloc_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_i.exe_1345]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i\sub_i.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_i4.exe_1346]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i4\sub_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_i8.exe_1347]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_i8\sub_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_i1.exe_1348]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1\sub_ovf_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_i2.exe_1349]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2\sub_ovf_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_i4.exe_1350]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4\sub_ovf_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_i8.exe_1351]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8\sub_ovf_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_u1.exe_1352]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1\sub_ovf_u1.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_u2.exe_1353]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2\sub_ovf_u2.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_u4.exe_1354]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4\sub_ovf_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_ovf_u8.exe_1355]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8\sub_ovf_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_ovf_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_r4.exe_1356]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r4\sub_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sub_r8.exe_1357]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\sub_r8\sub_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\sub_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch.exe_1358]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\switch\switch.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xor_u4.exe_1359]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u4\xor_u4.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xor_u8.exe_1360]
+RelativePath=JIT\IL_Conformance\Old\Conformance_Base\xor_u8\xor_u8.exe
+WorkingDir=JIT\IL_Conformance\Old\Conformance_Base\xor_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AutoInit.exe_1361]
+RelativePath=JIT\IL_Conformance\Old\directed\AutoInit\AutoInit.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\AutoInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[heap_ovf.exe_1362]
+RelativePath=JIT\IL_Conformance\Old\directed\heap_ovf\heap_ovf.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\heap_ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_i1.exe_1363]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i1\ldarg_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_i2.exe_1364]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i2\ldarg_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_i4.exe_1365]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i4\ldarg_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_i8.exe_1366]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_i8\ldarg_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_r4.exe_1367]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r4\ldarg_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldarg_s_r8.exe_1368]
+RelativePath=JIT\IL_Conformance\Old\directed\ldarg_s_r8\ldarg_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldarg_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_i1.exe_1369]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i1\ldloca_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_i2.exe_1370]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i2\ldloca_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_i4.exe_1371]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i4\ldloca_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_i8.exe_1372]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_i8\ldloca_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_r4.exe_1373]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r4\ldloca_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloca_s_r8.exe_1374]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloca_s_r8\ldloca_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloca_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_i1.exe_1375]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i1\ldloc_s_i1.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_i2.exe_1376]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i2\ldloc_s_i2.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_i4.exe_1377]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i4\ldloc_s_i4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_i8.exe_1378]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_i8\ldloc_s_i8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_i8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_r4.exe_1379]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r4\ldloc_s_r4.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldloc_s_r8.exe_1380]
+RelativePath=JIT\IL_Conformance\Old\directed\ldloc_s_r8\ldloc_s_r8.exe
+WorkingDir=JIT\IL_Conformance\Old\directed\ldloc_s_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array_tests.exe_1381]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\array_tests\array_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\array_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Box_Unbox.exe_1382]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\Box_Unbox\Box_Unbox.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\Box_Unbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callintf.exe_1383]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callintf\callintf.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callintf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callnonvirt.exe_1384]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callnonvirt\callnonvirt.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callnonvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callstatic.exe_1385]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callstatic\callstatic.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callstatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callsuper.exe_1386]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callsuper\callsuper.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callsuper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[callvirt.exe_1387]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\callvirt\callvirt.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\callvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass.exe_1388]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\castclass\castclass.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\castclass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpobj.exe_1389]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\cpobj\cpobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\cpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fielda_tests.exe_1390]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\fielda_tests\fielda_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\fielda_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[field_tests.exe_1391]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\field_tests\field_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\field_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initobj.exe_1392]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\initobj\initobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\initobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[isinst.exe_1393]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\isinst\isinst.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\isinst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldlen.exe_1394]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldlen\ldlen.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldobj.exe_1395]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldobj\ldobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldstr.exe_1396]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldstr\ldstr.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldstr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldtoken.exe_1397]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldtoken\ldtoken.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldvirtftn.exe_1398]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\ldvirtftn\ldvirtftn.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\ldvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localloc.exe_1399]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\localloc\localloc.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\localloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[newobj.exe_1400]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\newobj\newobj.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seh_tests.exe_1401]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\seh_tests\seh_tests.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\seh_tests
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw.exe_1402]
+RelativePath=JIT\IL_Conformance\Old\objectmodel\throw\throw.exe
+WorkingDir=JIT\IL_Conformance\Old\objectmodel\throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[repro52.exe_1403]
+RelativePath=JIT\jit64\ebvts\cs\generics\generics\repro52\repro52.exe
+WorkingDir=JIT\jit64\ebvts\cs\generics\generics\repro52
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopEH.exe_1404]
+RelativePath=JIT\jit64\eh\basics\loopEH\loopEH.exe
+WorkingDir=JIT\jit64\eh\basics\loopEH
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter1.exe_1405]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter1\throwinfinallyintryfilter1.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter2.exe_1406]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter2\throwinfinallyintryfilter2.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter3.exe_1407]
+RelativePath=JIT\jit64\eh\basics\throwinfinallyintryfilter3\throwinfinallyintryfilter3.exe
+WorkingDir=JIT\jit64\eh\basics\throwinfinallyintryfilter3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwisfirstinstruction.exe_1408]
+RelativePath=JIT\jit64\eh\basics\throwisfirstinstruction\throwisfirstinstruction.exe
+WorkingDir=JIT\jit64\eh\basics\throwisfirstinstruction
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset1.exe_1409]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1\nestedTryRegionsWithSameOffset1.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset1_o.exe_1410]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o\nestedTryRegionsWithSameOffset1_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset1_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset2.exe_1411]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2\nestedTryRegionsWithSameOffset2.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset2_o.exe_1412]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o\nestedTryRegionsWithSameOffset2_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset2_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset3.exe_1413]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3\nestedTryRegionsWithSameOffset3.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedTryRegionsWithSameOffset3_o.exe_1414]
+RelativePath=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o\nestedTryRegionsWithSameOffset3_o.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nestedTryRegionsWithSameOffset3_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitincatch.exe_1415]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitincatch\nonlocalexitincatch.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitincatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitinfinally.exe_1416]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally\nonlocalexitinfinally.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitinhandler.exe_1417]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler\nonlocalexitinhandler.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinhandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitinroot.exe_1418]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitinroot\nonlocalexitinroot.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitinroot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitintry.exe_1419]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalexitintry\nonlocalexitintry.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalexitintry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler.exe_1420]
+RelativePath=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler\nonlocalgotoinatryblockinahandler.exe
+WorkingDir=JIT\jit64\eh\FinallyExec\nonlocalgotoinatryblockinahandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitfromnestedcatch.exe_1421]
+RelativePath=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch\nonlocalexitfromnestedcatch.exe
+WorkingDir=JIT\jit64\eh\Leaves\nonlocalexitfromnestedcatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[148343.exe_1422]
+RelativePath=JIT\jit64\gc\misc\148343\148343.exe
+WorkingDir=JIT\jit64\gc\misc\148343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[9param.exe_1423]
+RelativePath=JIT\jit64\gc\misc\9param\9param.exe
+WorkingDir=JIT\jit64\gc\misc\9param
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[9_and_alloca2.exe_1424]
+RelativePath=JIT\jit64\gc\misc\9_and_alloca2\9_and_alloca2.exe
+WorkingDir=JIT\jit64\gc\misc\9_and_alloca2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[alloca3.exe_1425]
+RelativePath=JIT\jit64\gc\misc\alloca3\alloca3.exe
+WorkingDir=JIT\jit64\gc\misc\alloca3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh1.exe_1426]
+RelativePath=JIT\jit64\gc\misc\eh1\eh1.exe
+WorkingDir=JIT\jit64\gc\misc\eh1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fgtest1.exe_1427]
+RelativePath=JIT\jit64\gc\misc\fgtest1\fgtest1.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fgtest2.exe_1428]
+RelativePath=JIT\jit64\gc\misc\fgtest2\fgtest2.exe
+WorkingDir=JIT\jit64\gc\misc\fgtest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[funclet.exe_1429]
+RelativePath=JIT\jit64\gc\misc\funclet\funclet.exe
+WorkingDir=JIT\jit64\gc\misc\funclet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gc-pinned-code-motion.exe_1430]
+RelativePath=JIT\jit64\gc\misc\gc-pinned-code-motion\gc-pinned-code-motion.exe
+WorkingDir=JIT\jit64\gc\misc\gc-pinned-code-motion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcparaminreg.exe_1431]
+RelativePath=JIT\jit64\gc\misc\gcparaminreg\gcparaminreg.exe
+WorkingDir=JIT\jit64\gc\misc\gcparaminreg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_struct_test1.exe_1432]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test1\ret_struct_test1.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ret_struct_test4.exe_1433]
+RelativePath=JIT\jit64\gc\misc\ret_struct_test4\ret_struct_test4.exe
+WorkingDir=JIT\jit64\gc\misc\ret_struct_test4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simple1.exe_1434]
+RelativePath=JIT\jit64\gc\misc\simple1\simple1.exe
+WorkingDir=JIT\jit64\gc\misc\simple1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct1.exe_1435]
+RelativePath=JIT\jit64\gc\misc\struct1\struct1.exe
+WorkingDir=JIT\jit64\gc\misc\struct1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct1_2.exe_1436]
+RelativePath=JIT\jit64\gc\misc\struct1_2\struct1_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct1_4.exe_1437]
+RelativePath=JIT\jit64\gc\misc\struct1_4\struct1_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct1_5.exe_1438]
+RelativePath=JIT\jit64\gc\misc\struct1_5\struct1_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct1_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct2.exe_1439]
+RelativePath=JIT\jit64\gc\misc\struct2\struct2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct2_2.exe_1440]
+RelativePath=JIT\jit64\gc\misc\struct2_2\struct2_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct2_4.exe_1441]
+RelativePath=JIT\jit64\gc\misc\struct2_4\struct2_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct2_5.exe_1442]
+RelativePath=JIT\jit64\gc\misc\struct2_5\struct2_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct2_5_2.exe_1443]
+RelativePath=JIT\jit64\gc\misc\struct2_5_2\struct2_5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct2_5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct3.exe_1444]
+RelativePath=JIT\jit64\gc\misc\struct3\struct3.exe
+WorkingDir=JIT\jit64\gc\misc\struct3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct3_2.exe_1445]
+RelativePath=JIT\jit64\gc\misc\struct3_2\struct3_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct3_4.exe_1446]
+RelativePath=JIT\jit64\gc\misc\struct3_4\struct3_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct3_5.exe_1447]
+RelativePath=JIT\jit64\gc\misc\struct3_5\struct3_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct3_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct4.exe_1448]
+RelativePath=JIT\jit64\gc\misc\struct4\struct4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct4_2.exe_1449]
+RelativePath=JIT\jit64\gc\misc\struct4_2\struct4_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct4_4.exe_1450]
+RelativePath=JIT\jit64\gc\misc\struct4_4\struct4_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct4_5.exe_1451]
+RelativePath=JIT\jit64\gc\misc\struct4_5\struct4_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct4_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct5.exe_1452]
+RelativePath=JIT\jit64\gc\misc\struct5\struct5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct5_2.exe_1453]
+RelativePath=JIT\jit64\gc\misc\struct5_2\struct5_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct5_4.exe_1454]
+RelativePath=JIT\jit64\gc\misc\struct5_4\struct5_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct5_5.exe_1455]
+RelativePath=JIT\jit64\gc\misc\struct5_5\struct5_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct5_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct6.exe_1456]
+RelativePath=JIT\jit64\gc\misc\struct6\struct6.exe
+WorkingDir=JIT\jit64\gc\misc\struct6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct6_2.exe_1457]
+RelativePath=JIT\jit64\gc\misc\struct6_2\struct6_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct6_4.exe_1458]
+RelativePath=JIT\jit64\gc\misc\struct6_4\struct6_4.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct6_5.exe_1459]
+RelativePath=JIT\jit64\gc\misc\struct6_5\struct6_5.exe
+WorkingDir=JIT\jit64\gc\misc\struct6_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct7_1.exe_1460]
+RelativePath=JIT\jit64\gc\misc\struct7_1\struct7_1.exe
+WorkingDir=JIT\jit64\gc\misc\struct7_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct8.exe_1461]
+RelativePath=JIT\jit64\gc\misc\struct8\struct8.exe
+WorkingDir=JIT\jit64\gc\misc\struct8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct9.exe_1462]
+RelativePath=JIT\jit64\gc\misc\struct9\struct9.exe
+WorkingDir=JIT\jit64\gc\misc\struct9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct9_2.exe_1463]
+RelativePath=JIT\jit64\gc\misc\struct9_2\struct9_2.exe
+WorkingDir=JIT\jit64\gc\misc\struct9_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_1.exe_1464]
+RelativePath=JIT\jit64\gc\misc\structfp1_1\structfp1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_2.exe_1465]
+RelativePath=JIT\jit64\gc\misc\structfp1_2\structfp1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_3.exe_1466]
+RelativePath=JIT\jit64\gc\misc\structfp1_3\structfp1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_4.exe_1467]
+RelativePath=JIT\jit64\gc\misc\structfp1_4\structfp1_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_5.exe_1468]
+RelativePath=JIT\jit64\gc\misc\structfp1_5\structfp1_5.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp1_6.exe_1469]
+RelativePath=JIT\jit64\gc\misc\structfp1_6\structfp1_6.exe
+WorkingDir=JIT\jit64\gc\misc\structfp1_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp2_1.exe_1470]
+RelativePath=JIT\jit64\gc\misc\structfp2_1\structfp2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp2_2.exe_1471]
+RelativePath=JIT\jit64\gc\misc\structfp2_2\structfp2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp2_3.exe_1472]
+RelativePath=JIT\jit64\gc\misc\structfp2_3\structfp2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp2_4.exe_1473]
+RelativePath=JIT\jit64\gc\misc\structfp2_4\structfp2_4.exe
+WorkingDir=JIT\jit64\gc\misc\structfp2_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp3_1.exe_1474]
+RelativePath=JIT\jit64\gc\misc\structfp3_1\structfp3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp3_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp4_1.exe_1475]
+RelativePath=JIT\jit64\gc\misc\structfp4_1\structfp4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp5_1.exe_1476]
+RelativePath=JIT\jit64\gc\misc\structfp5_1\structfp5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfp6_1.exe_1477]
+RelativePath=JIT\jit64\gc\misc\structfp6_1\structfp6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfp6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfpseh5_1.exe_1478]
+RelativePath=JIT\jit64\gc\misc\structfpseh5_1\structfpseh5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structfpseh6_1.exe_1479]
+RelativePath=JIT\jit64\gc\misc\structfpseh6_1\structfpseh6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structfpseh6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structref1_1.exe_1480]
+RelativePath=JIT\jit64\gc\misc\structref1_1\structref1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structref1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret1_1.exe_1481]
+RelativePath=JIT\jit64\gc\misc\structret1_1\structret1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret1_2.exe_1482]
+RelativePath=JIT\jit64\gc\misc\structret1_2\structret1_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret1_3.exe_1483]
+RelativePath=JIT\jit64\gc\misc\structret1_3\structret1_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret1_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret2_1.exe_1484]
+RelativePath=JIT\jit64\gc\misc\structret2_1\structret2_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret2_2.exe_1485]
+RelativePath=JIT\jit64\gc\misc\structret2_2\structret2_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret2_3.exe_1486]
+RelativePath=JIT\jit64\gc\misc\structret2_3\structret2_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret2_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret3_1.exe_1487]
+RelativePath=JIT\jit64\gc\misc\structret3_1\structret3_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret3_2.exe_1488]
+RelativePath=JIT\jit64\gc\misc\structret3_2\structret3_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret3_3.exe_1489]
+RelativePath=JIT\jit64\gc\misc\structret3_3\structret3_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret3_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret4_1.exe_1490]
+RelativePath=JIT\jit64\gc\misc\structret4_1\structret4_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret4_2.exe_1491]
+RelativePath=JIT\jit64\gc\misc\structret4_2\structret4_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret4_3.exe_1492]
+RelativePath=JIT\jit64\gc\misc\structret4_3\structret4_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret4_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret5_1.exe_1493]
+RelativePath=JIT\jit64\gc\misc\structret5_1\structret5_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret5_2.exe_1494]
+RelativePath=JIT\jit64\gc\misc\structret5_2\structret5_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret5_3.exe_1495]
+RelativePath=JIT\jit64\gc\misc\structret5_3\structret5_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret5_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret6_1.exe_1496]
+RelativePath=JIT\jit64\gc\misc\structret6_1\structret6_1.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret6_2.exe_1497]
+RelativePath=JIT\jit64\gc\misc\structret6_2\structret6_2.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structret6_3.exe_1498]
+RelativePath=JIT\jit64\gc\misc\structret6_3\structret6_3.exe
+WorkingDir=JIT\jit64\gc\misc\structret6_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structva1_1.exe_1499]
+RelativePath=JIT\jit64\gc\misc\structva1_1\structva1_1.exe
+WorkingDir=JIT\jit64\gc\misc\structva1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1500]
+RelativePath=JIT\jit64\gc\misc\test1\test1.exe
+WorkingDir=JIT\jit64\gc\misc\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2.exe_1501]
+RelativePath=JIT\jit64\gc\misc\test2\test2.exe
+WorkingDir=JIT\jit64\gc\misc\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test3.exe_1502]
+RelativePath=JIT\jit64\gc\misc\test3\test3.exe
+WorkingDir=JIT\jit64\gc\misc\test3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test_noalloca.exe_1503]
+RelativePath=JIT\jit64\gc\misc\test_noalloca\test_noalloca.exe
+WorkingDir=JIT\jit64\gc\misc\test_noalloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vbil.exe_1504]
+RelativePath=JIT\jit64\gc\misc\vbil\vbil.exe
+WorkingDir=JIT\jit64\gc\misc\vbil
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[143837.exe_1505]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\143837\143837.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\143837
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[339415.exe_1506]
+RelativePath=JIT\jit64\gc\regress\vswhidbey\339415\339415.exe
+WorkingDir=JIT\jit64\gc\regress\vswhidbey\339415
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0A_d.exe_1507]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_d\hfa_nd0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0A_r.exe_1508]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd0A_r\hfa_nd0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1A_d.exe_1509]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_d\hfa_nd1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1A_r.exe_1510]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd1A_r\hfa_nd1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2A_d.exe_1511]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_d\hfa_nd2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2A_r.exe_1512]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nd2A_r\hfa_nd2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nd2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0A_d.exe_1513]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_d\hfa_nf0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0A_r.exe_1514]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf0A_r\hfa_nf0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1A_d.exe_1515]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_d\hfa_nf1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1A_r.exe_1516]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf1A_r\hfa_nf1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2A_d.exe_1517]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_d\hfa_nf2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2A_r.exe_1518]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_nf2A_r\hfa_nf2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_nf2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0A_d.exe_1519]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_d\hfa_sd0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0A_r.exe_1520]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd0A_r\hfa_sd0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1A_d.exe_1521]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_d\hfa_sd1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1A_r.exe_1522]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd1A_r\hfa_sd1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2A_d.exe_1523]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_d\hfa_sd2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2A_r.exe_1524]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sd2A_r\hfa_sd2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sd2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0A_d.exe_1525]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_d\hfa_sf0A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0A_r.exe_1526]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf0A_r\hfa_sf0A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf0A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1A_d.exe_1527]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_d\hfa_sf1A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1A_r.exe_1528]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf1A_r\hfa_sf1A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf1A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2A_d.exe_1529]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_d\hfa_sf2A_d.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2A_r.exe_1530]
+RelativePath=JIT\jit64\hfa\main\testA\hfa_sf2A_r\hfa_sf2A_r.exe
+WorkingDir=JIT\jit64\hfa\main\testA\hfa_sf2A_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0B_d.exe_1531]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_d\hfa_nd0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0B_r.exe_1532]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd0B_r\hfa_nd0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2B_d.exe_1533]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_d\hfa_nd2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2B_r.exe_1534]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nd2B_r\hfa_nd2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nd2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0B_d.exe_1535]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_d\hfa_nf0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0B_r.exe_1536]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf0B_r\hfa_nf0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2B_d.exe_1537]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_d\hfa_nf2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2B_r.exe_1538]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_nf2B_r\hfa_nf2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_nf2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0B_d.exe_1539]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_d\hfa_sd0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0B_r.exe_1540]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd0B_r\hfa_sd0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2B_d.exe_1541]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_d\hfa_sd2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2B_r.exe_1542]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sd2B_r\hfa_sd2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sd2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0B_d.exe_1543]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_d\hfa_sf0B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0B_r.exe_1544]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf0B_r\hfa_sf0B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf0B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2B_d.exe_1545]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_d\hfa_sf2B_d.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2B_r.exe_1546]
+RelativePath=JIT\jit64\hfa\main\testB\hfa_sf2B_r\hfa_sf2B_r.exe
+WorkingDir=JIT\jit64\hfa\main\testB\hfa_sf2B_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0C_d.exe_1547]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_d\hfa_nd0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0C_r.exe_1548]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd0C_r\hfa_nd0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1C_d.exe_1549]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_d\hfa_nd1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1C_r.exe_1550]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd1C_r\hfa_nd1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2C_d.exe_1551]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_d\hfa_nd2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2C_r.exe_1552]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nd2C_r\hfa_nd2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nd2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0C_d.exe_1553]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_d\hfa_nf0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0C_r.exe_1554]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf0C_r\hfa_nf0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1C_d.exe_1555]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_d\hfa_nf1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1C_r.exe_1556]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf1C_r\hfa_nf1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2C_d.exe_1557]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_d\hfa_nf2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2C_r.exe_1558]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_nf2C_r\hfa_nf2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_nf2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0C_d.exe_1559]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_d\hfa_sd0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0C_r.exe_1560]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd0C_r\hfa_sd0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1C_d.exe_1561]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_d\hfa_sd1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1C_r.exe_1562]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd1C_r\hfa_sd1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2C_d.exe_1563]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_d\hfa_sd2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2C_r.exe_1564]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sd2C_r\hfa_sd2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sd2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0C_d.exe_1565]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_d\hfa_sf0C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0C_r.exe_1566]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf0C_r\hfa_sf0C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf0C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1C_d.exe_1567]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_d\hfa_sf1C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1C_r.exe_1568]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf1C_r\hfa_sf1C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf1C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2C_d.exe_1569]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_d\hfa_sf2C_d.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2C_r.exe_1570]
+RelativePath=JIT\jit64\hfa\main\testC\hfa_sf2C_r\hfa_sf2C_r.exe
+WorkingDir=JIT\jit64\hfa\main\testC\hfa_sf2C_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0E_d.exe_1571]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_d\hfa_nd0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0E_r.exe_1572]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd0E_r\hfa_nd0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1E_d.exe_1573]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_d\hfa_nd1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1E_r.exe_1574]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd1E_r\hfa_nd1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2E_d.exe_1575]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_d\hfa_nd2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2E_r.exe_1576]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nd2E_r\hfa_nd2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nd2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0E_d.exe_1577]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_d\hfa_nf0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0E_r.exe_1578]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf0E_r\hfa_nf0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1E_d.exe_1579]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_d\hfa_nf1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1E_r.exe_1580]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf1E_r\hfa_nf1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2E_d.exe_1581]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_d\hfa_nf2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2E_r.exe_1582]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_nf2E_r\hfa_nf2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_nf2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0E_d.exe_1583]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_d\hfa_sd0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0E_r.exe_1584]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd0E_r\hfa_sd0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1E_d.exe_1585]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_d\hfa_sd1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1E_r.exe_1586]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd1E_r\hfa_sd1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2E_d.exe_1587]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_d\hfa_sd2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2E_r.exe_1588]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sd2E_r\hfa_sd2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sd2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0E_d.exe_1589]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_d\hfa_sf0E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0E_r.exe_1590]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf0E_r\hfa_sf0E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf0E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1E_d.exe_1591]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_d\hfa_sf1E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1E_r.exe_1592]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf1E_r\hfa_sf1E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf1E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2E_d.exe_1593]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_d\hfa_sf2E_d.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2E_r.exe_1594]
+RelativePath=JIT\jit64\hfa\main\testE\hfa_sf2E_r\hfa_sf2E_r.exe
+WorkingDir=JIT\jit64\hfa\main\testE\hfa_sf2E_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0G_d.exe_1595]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_d\hfa_nd0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd0G_r.exe_1596]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd0G_r\hfa_nd0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1G_d.exe_1597]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_d\hfa_nd1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd1G_r.exe_1598]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd1G_r\hfa_nd1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2G_d.exe_1599]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_d\hfa_nd2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nd2G_r.exe_1600]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nd2G_r\hfa_nd2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nd2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0G_d.exe_1601]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_d\hfa_nf0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf0G_r.exe_1602]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf0G_r\hfa_nf0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1G_d.exe_1603]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_d\hfa_nf1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf1G_r.exe_1604]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf1G_r\hfa_nf1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2G_d.exe_1605]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_d\hfa_nf2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_nf2G_r.exe_1606]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_nf2G_r\hfa_nf2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_nf2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0G_d.exe_1607]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_d\hfa_sd0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd0G_r.exe_1608]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd0G_r\hfa_sd0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1G_d.exe_1609]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_d\hfa_sd1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd1G_r.exe_1610]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd1G_r\hfa_sd1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2G_d.exe_1611]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_d\hfa_sd2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sd2G_r.exe_1612]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sd2G_r\hfa_sd2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sd2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0G_d.exe_1613]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_d\hfa_sf0G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf0G_r.exe_1614]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf0G_r\hfa_sf0G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf0G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1G_d.exe_1615]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_d\hfa_sf1G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf1G_r.exe_1616]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf1G_r\hfa_sf1G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf1G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2G_d.exe_1617]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_d\hfa_sf2G_d.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hfa_sf2G_r.exe_1618]
+RelativePath=JIT\jit64\hfa\main\testG\hfa_sf2G_r\hfa_sf2G_r.exe
+WorkingDir=JIT\jit64\hfa\main\testG\hfa_sf2G_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call03_dynamic.exe_1619]
+RelativePath=JIT\jit64\localloc\call\call03_dynamic\call03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call03_large.exe_1620]
+RelativePath=JIT\jit64\localloc\call\call03_large\call03_large.exe
+WorkingDir=JIT\jit64\localloc\call\call03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call03_small.exe_1621]
+RelativePath=JIT\jit64\localloc\call\call03_small\call03_small.exe
+WorkingDir=JIT\jit64\localloc\call\call03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call04_dynamic.exe_1622]
+RelativePath=JIT\jit64\localloc\call\call04_dynamic\call04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call04_large.exe_1623]
+RelativePath=JIT\jit64\localloc\call\call04_large\call04_large.exe
+WorkingDir=JIT\jit64\localloc\call\call04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call04_small.exe_1624]
+RelativePath=JIT\jit64\localloc\call\call04_small\call04_small.exe
+WorkingDir=JIT\jit64\localloc\call\call04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call05_dynamic.exe_1625]
+RelativePath=JIT\jit64\localloc\call\call05_dynamic\call05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call05_large.exe_1626]
+RelativePath=JIT\jit64\localloc\call\call05_large\call05_large.exe
+WorkingDir=JIT\jit64\localloc\call\call05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call05_small.exe_1627]
+RelativePath=JIT\jit64\localloc\call\call05_small\call05_small.exe
+WorkingDir=JIT\jit64\localloc\call\call05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call06_dynamic.exe_1628]
+RelativePath=JIT\jit64\localloc\call\call06_dynamic\call06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call06_large.exe_1629]
+RelativePath=JIT\jit64\localloc\call\call06_large\call06_large.exe
+WorkingDir=JIT\jit64\localloc\call\call06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call06_small.exe_1630]
+RelativePath=JIT\jit64\localloc\call\call06_small\call06_small.exe
+WorkingDir=JIT\jit64\localloc\call\call06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call07_dynamic.exe_1631]
+RelativePath=JIT\jit64\localloc\call\call07_dynamic\call07_dynamic.exe
+WorkingDir=JIT\jit64\localloc\call\call07_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call07_small.exe_1632]
+RelativePath=JIT\jit64\localloc\call\call07_small\call07_small.exe
+WorkingDir=JIT\jit64\localloc\call\call07_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh01_dynamic.exe_1633]
+RelativePath=JIT\jit64\localloc\eh\eh01_dynamic\eh01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh01_large.exe_1634]
+RelativePath=JIT\jit64\localloc\eh\eh01_large\eh01_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh01_small.exe_1635]
+RelativePath=JIT\jit64\localloc\eh\eh01_small\eh01_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh02_dynamic.exe_1636]
+RelativePath=JIT\jit64\localloc\eh\eh02_dynamic\eh02_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh02_large.exe_1637]
+RelativePath=JIT\jit64\localloc\eh\eh02_large\eh02_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh02_small.exe_1638]
+RelativePath=JIT\jit64\localloc\eh\eh02_small\eh02_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh02_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh03_dynamic.exe_1639]
+RelativePath=JIT\jit64\localloc\eh\eh03_dynamic\eh03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh03_large.exe_1640]
+RelativePath=JIT\jit64\localloc\eh\eh03_large\eh03_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh03_small.exe_1641]
+RelativePath=JIT\jit64\localloc\eh\eh03_small\eh03_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh04_dynamic.exe_1642]
+RelativePath=JIT\jit64\localloc\eh\eh04_dynamic\eh04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh04_large.exe_1643]
+RelativePath=JIT\jit64\localloc\eh\eh04_large\eh04_large.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh04_small.exe_1644]
+RelativePath=JIT\jit64\localloc\eh\eh04_small\eh04_small.exe
+WorkingDir=JIT\jit64\localloc\eh\eh04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh05_dynamic.exe_1645]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_dynamic\eh05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh05_large.exe_1646]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_large\eh05_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh05_small.exe_1647]
+RelativePath=JIT\jit64\localloc\ehverify\eh05_small\eh05_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh06_dynamic.exe_1648]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_dynamic\eh06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh06_large.exe_1649]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_large\eh06_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh06_small.exe_1650]
+RelativePath=JIT\jit64\localloc\ehverify\eh06_small\eh06_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh07_dynamic.exe_1651]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_dynamic\eh07_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh07_large.exe_1652]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_large\eh07_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh07_small.exe_1653]
+RelativePath=JIT\jit64\localloc\ehverify\eh07_small\eh07_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh07_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh08_dynamic.exe_1654]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_dynamic\eh08_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh08_large.exe_1655]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_large\eh08_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh08_small.exe_1656]
+RelativePath=JIT\jit64\localloc\ehverify\eh08_small\eh08_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh08_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh09_dynamic.exe_1657]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_dynamic\eh09_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh09_large.exe_1658]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_large\eh09_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh09_small.exe_1659]
+RelativePath=JIT\jit64\localloc\ehverify\eh09_small\eh09_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh09_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh11_dynamic.exe_1660]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_dynamic\eh11_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh11_large.exe_1661]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_large\eh11_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh11_small.exe_1662]
+RelativePath=JIT\jit64\localloc\ehverify\eh11_small\eh11_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh11_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh12_dynamic.exe_1663]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_dynamic\eh12_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh12_large.exe_1664]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_large\eh12_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh12_small.exe_1665]
+RelativePath=JIT\jit64\localloc\ehverify\eh12_small\eh12_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh12_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh13_dynamic.exe_1666]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_dynamic\eh13_dynamic.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh13_large.exe_1667]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_large\eh13_large.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[eh13_small.exe_1668]
+RelativePath=JIT\jit64\localloc\ehverify\eh13_small\eh13_small.exe
+WorkingDir=JIT\jit64\localloc\ehverify\eh13_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind01_dynamic.exe_1669]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_dynamic\unwind01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind01_large.exe_1670]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_large\unwind01_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind01_small.exe_1671]
+RelativePath=JIT\jit64\localloc\unwind\unwind01_small\unwind01_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind02_dynamic.exe_1672]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_dynamic\unwind02_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind02_large.exe_1673]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_large\unwind02_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind02_small.exe_1674]
+RelativePath=JIT\jit64\localloc\unwind\unwind02_small\unwind02_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind02_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind03_dynamic.exe_1675]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_dynamic\unwind03_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind03_large.exe_1676]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_large\unwind03_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind03_small.exe_1677]
+RelativePath=JIT\jit64\localloc\unwind\unwind03_small\unwind03_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind03_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind04_dynamic.exe_1678]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_dynamic\unwind04_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind04_large.exe_1679]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_large\unwind04_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind04_small.exe_1680]
+RelativePath=JIT\jit64\localloc\unwind\unwind04_small\unwind04_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind04_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind05_dynamic.exe_1681]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_dynamic\unwind05_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind05_large.exe_1682]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_large\unwind05_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind05_small.exe_1683]
+RelativePath=JIT\jit64\localloc\unwind\unwind05_small\unwind05_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind05_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind06_dynamic.exe_1684]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_dynamic\unwind06_dynamic.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind06_large.exe_1685]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_large\unwind06_large.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unwind06_small.exe_1686]
+RelativePath=JIT\jit64\localloc\unwind\unwind06_small\unwind06_small.exe
+WorkingDir=JIT\jit64\localloc\unwind\unwind06_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_dynamic.exe_1687]
+RelativePath=JIT\jit64\localloc\verify\verify01_dynamic\verify01_dynamic.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_large.exe_1688]
+RelativePath=JIT\jit64\localloc\verify\verify01_large\verify01_large.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_small.exe_1689]
+RelativePath=JIT\jit64\localloc\verify\verify01_small\verify01_small.exe
+WorkingDir=JIT\jit64\localloc\verify\verify01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroinit01_large.exe_1690]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroinit01_large\zeroinit01_large.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroinit01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroInit01_small.exe_1691]
+RelativePath=JIT\jit64\localloc\zeroinit\zeroInit01_small\zeroInit01_small.exe
+WorkingDir=JIT\jit64\localloc\zeroinit\zeroInit01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i00.exe_1692]
+RelativePath=JIT\jit64\mcc\interop\mcc_i00\mcc_i00.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i00
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i01.exe_1693]
+RelativePath=JIT\jit64\mcc\interop\mcc_i01\mcc_i01.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i02.exe_1694]
+RelativePath=JIT\jit64\mcc\interop\mcc_i02\mcc_i02.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i03.exe_1695]
+RelativePath=JIT\jit64\mcc\interop\mcc_i03\mcc_i03.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i04.exe_1696]
+RelativePath=JIT\jit64\mcc\interop\mcc_i04\mcc_i04.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i05.exe_1697]
+RelativePath=JIT\jit64\mcc\interop\mcc_i05\mcc_i05.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i06.exe_1698]
+RelativePath=JIT\jit64\mcc\interop\mcc_i06\mcc_i06.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i07.exe_1699]
+RelativePath=JIT\jit64\mcc\interop\mcc_i07\mcc_i07.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i10.exe_1700]
+RelativePath=JIT\jit64\mcc\interop\mcc_i10\mcc_i10.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i11.exe_1701]
+RelativePath=JIT\jit64\mcc\interop\mcc_i11\mcc_i11.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i12.exe_1702]
+RelativePath=JIT\jit64\mcc\interop\mcc_i12\mcc_i12.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i13.exe_1703]
+RelativePath=JIT\jit64\mcc\interop\mcc_i13\mcc_i13.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i14.exe_1704]
+RelativePath=JIT\jit64\mcc\interop\mcc_i14\mcc_i14.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i15.exe_1705]
+RelativePath=JIT\jit64\mcc\interop\mcc_i15\mcc_i15.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i16.exe_1706]
+RelativePath=JIT\jit64\mcc\interop\mcc_i16\mcc_i16.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i17.exe_1707]
+RelativePath=JIT\jit64\mcc\interop\mcc_i17\mcc_i17.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i30.exe_1708]
+RelativePath=JIT\jit64\mcc\interop\mcc_i30\mcc_i30.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i31.exe_1709]
+RelativePath=JIT\jit64\mcc\interop\mcc_i31\mcc_i31.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i31
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i32.exe_1710]
+RelativePath=JIT\jit64\mcc\interop\mcc_i32\mcc_i32.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i33.exe_1711]
+RelativePath=JIT\jit64\mcc\interop\mcc_i33\mcc_i33.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i33
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i34.exe_1712]
+RelativePath=JIT\jit64\mcc\interop\mcc_i34\mcc_i34.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i34
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i35.exe_1713]
+RelativePath=JIT\jit64\mcc\interop\mcc_i35\mcc_i35.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i35
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i36.exe_1714]
+RelativePath=JIT\jit64\mcc\interop\mcc_i36\mcc_i36.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i36
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i37.exe_1715]
+RelativePath=JIT\jit64\mcc\interop\mcc_i37\mcc_i37.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i37
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i50.exe_1716]
+RelativePath=JIT\jit64\mcc\interop\mcc_i50\mcc_i50.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i50
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i51.exe_1717]
+RelativePath=JIT\jit64\mcc\interop\mcc_i51\mcc_i51.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i51
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i52.exe_1718]
+RelativePath=JIT\jit64\mcc\interop\mcc_i52\mcc_i52.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i52
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i53.exe_1719]
+RelativePath=JIT\jit64\mcc\interop\mcc_i53\mcc_i53.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i53
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i54.exe_1720]
+RelativePath=JIT\jit64\mcc\interop\mcc_i54\mcc_i54.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i54
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i55.exe_1721]
+RelativePath=JIT\jit64\mcc\interop\mcc_i55\mcc_i55.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i55
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i56.exe_1722]
+RelativePath=JIT\jit64\mcc\interop\mcc_i56\mcc_i56.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i56
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i57.exe_1723]
+RelativePath=JIT\jit64\mcc\interop\mcc_i57\mcc_i57.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i57
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i60.exe_1724]
+RelativePath=JIT\jit64\mcc\interop\mcc_i60\mcc_i60.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i60
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i61.exe_1725]
+RelativePath=JIT\jit64\mcc\interop\mcc_i61\mcc_i61.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i61
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i62.exe_1726]
+RelativePath=JIT\jit64\mcc\interop\mcc_i62\mcc_i62.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i62
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i63.exe_1727]
+RelativePath=JIT\jit64\mcc\interop\mcc_i63\mcc_i63.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i63
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i64.exe_1728]
+RelativePath=JIT\jit64\mcc\interop\mcc_i64\mcc_i64.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i65.exe_1729]
+RelativePath=JIT\jit64\mcc\interop\mcc_i65\mcc_i65.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i65
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i66.exe_1730]
+RelativePath=JIT\jit64\mcc\interop\mcc_i66\mcc_i66.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i66
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i67.exe_1731]
+RelativePath=JIT\jit64\mcc\interop\mcc_i67\mcc_i67.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i67
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i70.exe_1732]
+RelativePath=JIT\jit64\mcc\interop\mcc_i70\mcc_i70.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i70
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i71.exe_1733]
+RelativePath=JIT\jit64\mcc\interop\mcc_i71\mcc_i71.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i71
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i72.exe_1734]
+RelativePath=JIT\jit64\mcc\interop\mcc_i72\mcc_i72.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i72
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i73.exe_1735]
+RelativePath=JIT\jit64\mcc\interop\mcc_i73\mcc_i73.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i73
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i74.exe_1736]
+RelativePath=JIT\jit64\mcc\interop\mcc_i74\mcc_i74.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i74
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i75.exe_1737]
+RelativePath=JIT\jit64\mcc\interop\mcc_i75\mcc_i75.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i75
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i76.exe_1738]
+RelativePath=JIT\jit64\mcc\interop\mcc_i76\mcc_i76.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i76
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i77.exe_1739]
+RelativePath=JIT\jit64\mcc\interop\mcc_i77\mcc_i77.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i77
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i80.exe_1740]
+RelativePath=JIT\jit64\mcc\interop\mcc_i80\mcc_i80.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i80
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i81.exe_1741]
+RelativePath=JIT\jit64\mcc\interop\mcc_i81\mcc_i81.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i81
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i82.exe_1742]
+RelativePath=JIT\jit64\mcc\interop\mcc_i82\mcc_i82.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i82
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i83.exe_1743]
+RelativePath=JIT\jit64\mcc\interop\mcc_i83\mcc_i83.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i83
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i84.exe_1744]
+RelativePath=JIT\jit64\mcc\interop\mcc_i84\mcc_i84.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i84
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i85.exe_1745]
+RelativePath=JIT\jit64\mcc\interop\mcc_i85\mcc_i85.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i85
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i86.exe_1746]
+RelativePath=JIT\jit64\mcc\interop\mcc_i86\mcc_i86.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i86
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mcc_i87.exe_1747]
+RelativePath=JIT\jit64\mcc\interop\mcc_i87\mcc_i87.exe
+WorkingDir=JIT\jit64\mcc\interop\mcc_i87
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAA_d.exe_1748]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d\CGRecurseAAA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAA_do.exe_1749]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do\CGRecurseAAA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAA_r.exe_1750]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r\CGRecurseAAA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAA_ro.exe_1751]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro\CGRecurseAAA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAA_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAC_d.exe_1752]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d\CGRecurseAAC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAC_do.exe_1753]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do\CGRecurseAAC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAC_r.exe_1754]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r\CGRecurseAAC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseAAC_ro.exe_1755]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro\CGRecurseAAC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseAAC_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACA_d.exe_1756]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d\CGRecurseACA_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACA_do.exe_1757]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do\CGRecurseACA_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACA_r.exe_1758]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r\CGRecurseACA_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACA_ro.exe_1759]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro\CGRecurseACA_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACA_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACC_d.exe_1760]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d\CGRecurseACC_d.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACC_do.exe_1761]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do\CGRecurseACC_do.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACC_r.exe_1762]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r\CGRecurseACC_r.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CGRecurseACC_ro.exe_1763]
+RelativePath=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro\CGRecurseACC_ro.exe
+WorkingDir=JIT\jit64\opt\cg\CGRecurse\CGRecurseACC_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress1_d.exe_1764]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_d\CgStress1_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress1_do.exe_1765]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_do\CgStress1_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress1_r.exe_1766]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_r\CgStress1_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress1_ro.exe_1767]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress1_ro\CgStress1_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress1_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress2_d.exe_1768]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_d\CgStress2_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress2_do.exe_1769]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_do\CgStress2_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress2_r.exe_1770]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_r\CgStress2_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress2_ro.exe_1771]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress2_ro\CgStress2_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress3_d.exe_1772]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_d\CgStress3_d.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress3_do.exe_1773]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_do\CgStress3_do.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress3_r.exe_1774]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_r\CgStress3_r.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CgStress3_ro.exe_1775]
+RelativePath=JIT\jit64\opt\cg\cgstress\CgStress3_ro\CgStress3_ro.exe
+WorkingDir=JIT\jit64\opt\cg\cgstress\CgStress3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jmp_dbg.exe_1776]
+RelativePath=JIT\jit64\opt\cg\il\jmp_dbg\jmp_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jmp_impl.exe_1777]
+RelativePath=JIT\jit64\opt\cg\il\jmp_impl\jmp_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_impl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jmp_opt.exe_1778]
+RelativePath=JIT\jit64\opt\cg\il\jmp_opt\jmp_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jmp_ret.exe_1779]
+RelativePath=JIT\jit64\opt\cg\il\jmp_ret\jmp_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\jmp_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn_dbg.exe_1780]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_dbg\ldftn_dbg.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn_impl.exe_1781]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_impl\ldftn_impl.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_impl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn_opt.exe_1782]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_opt\ldftn_opt.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ldftn_ret.exe_1783]
+RelativePath=JIT\jit64\opt\cg\il\ldftn_ret\ldftn_ret.exe
+WorkingDir=JIT\jit64\opt\cg\il\ldftn_ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cprop001_d.exe_1784]
+RelativePath=JIT\jit64\opt\cprop\cprop001_d\cprop001_d.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cprop001_do.exe_1785]
+RelativePath=JIT\jit64\opt\cprop\cprop001_do\cprop001_do.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cprop001_r.exe_1786]
+RelativePath=JIT\jit64\opt\cprop\cprop001_r\cprop001_r.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cprop001_ro.exe_1787]
+RelativePath=JIT\jit64\opt\cprop\cprop001_ro\cprop001_ro.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop001_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cprop002.exe_1788]
+RelativePath=JIT\jit64\opt\cprop\cprop002\cprop002.exe
+WorkingDir=JIT\jit64\opt\cprop\cprop002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev10_844071.exe_1789]
+RelativePath=JIT\jit64\opt\cprop\Dev10_844071\Dev10_844071.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_844071
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev10_884217_IL.exe_1790]
+RelativePath=JIT\jit64\opt\cprop\Dev10_884217_IL\Dev10_884217_IL.exe
+WorkingDir=JIT\jit64\opt\cprop\Dev10_884217_IL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[implicitDownConv.exe_1791]
+RelativePath=JIT\jit64\opt\cprop\implicitDownConv\implicitDownConv.exe
+WorkingDir=JIT\jit64\opt\cprop\implicitDownConv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr1.exe_1792]
+RelativePath=JIT\jit64\opt\cse\arrayexpr1\arrayexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_d_loop_try.exe_1793]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_d_loop_try\arrayexpr2_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_r.exe_1794]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r\arrayexpr2_r.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_ro_loop.exe_1795]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_ro_loop\arrayexpr2_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_r_loop.exe_1796]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop\arrayexpr2_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_r_loop_try.exe_1797]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_loop_try\arrayexpr2_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayexpr2_r_try.exe_1798]
+RelativePath=JIT\jit64\opt\cse\arrayexpr2_r_try\arrayexpr2_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\arrayexpr2_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fieldexpr1.exe_1799]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1\fieldexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fieldexpr1_1.exe_1800]
+RelativePath=JIT\jit64\opt\cse\fieldexpr1_1\fieldexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fieldexpr2.exe_1801]
+RelativePath=JIT\jit64\opt\cse\fieldexpr2\fieldexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\fieldexpr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fieldExprUnchecked1.exe_1802]
+RelativePath=JIT\jit64\opt\cse\fieldExprUnchecked1\fieldExprUnchecked1.exe
+WorkingDir=JIT\jit64\opt\cse\fieldExprUnchecked1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[HugeArray.exe_1803]
+RelativePath=JIT\jit64\opt\cse\HugeArray\HugeArray.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[HugeArray1.exe_1804]
+RelativePath=JIT\jit64\opt\cse\HugeArray1\HugeArray1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeArray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hugeexpr1.exe_1805]
+RelativePath=JIT\jit64\opt\cse\hugeexpr1\hugeexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[HugeField1.exe_1806]
+RelativePath=JIT\jit64\opt\cse\HugeField1\HugeField1.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[HugeField2.exe_1807]
+RelativePath=JIT\jit64\opt\cse\HugeField2\HugeField2.exe
+WorkingDir=JIT\jit64\opt\cse\HugeField2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hugeSimpleExpr1.exe_1808]
+RelativePath=JIT\jit64\opt\cse\hugeSimpleExpr1\hugeSimpleExpr1.exe
+WorkingDir=JIT\jit64\opt\cse\hugeSimpleExpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_d_loop_try.exe_1809]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_d_loop_try\mixedexpr1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_r.exe_1810]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r\mixedexpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_ro_loop.exe_1811]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_ro_loop\mixedexpr1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_r_loop.exe_1812]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop\mixedexpr1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_r_loop_try.exe_1813]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_loop_try\mixedexpr1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixedexpr1_r_try.exe_1814]
+RelativePath=JIT\jit64\opt\cse\mixedexpr1_r_try\mixedexpr1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\mixedexpr1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pointerexpr1.exe_1815]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1\pointerexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pointerexpr1_1.exe_1816]
+RelativePath=JIT\jit64\opt\cse\pointerexpr1_1\pointerexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\pointerexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr1.exe_1817]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1\simpleexpr1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr1_1.exe_1818]
+RelativePath=JIT\jit64\opt\cse\simpleexpr1_1\simpleexpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr2.exe_1819]
+RelativePath=JIT\jit64\opt\cse\simpleexpr2\simpleexpr2.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr3.exe_1820]
+RelativePath=JIT\jit64\opt\cse\simpleexpr3\simpleexpr3.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_d_loop_try.exe_1821]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_d_loop_try\simpleexpr4_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_r.exe_1822]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r\simpleexpr4_r.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_ro_loop.exe_1823]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_ro_loop\simpleexpr4_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_r_loop.exe_1824]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop\simpleexpr4_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_r_loop_try.exe_1825]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_loop_try\simpleexpr4_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpleexpr4_r_try.exe_1826]
+RelativePath=JIT\jit64\opt\cse\simpleexpr4_r_try\simpleexpr4_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\simpleexpr4_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_1.exe_1827]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_1\staticFieldExpr1_1.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_d_loop_try.exe_1828]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try\staticFieldExpr1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_r.exe_1829]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r\staticFieldExpr1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_ro_loop.exe_1830]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop\staticFieldExpr1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_r_loop.exe_1831]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop\staticFieldExpr1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_r_loop_try.exe_1832]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try\staticFieldExpr1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExpr1_r_try.exe_1833]
+RelativePath=JIT\jit64\opt\cse\staticFieldExpr1_r_try\staticFieldExpr1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExpr1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_d_loop_try.exe_1834]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try\staticFieldExprUnchecked1_d_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_d_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_r.exe_1835]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r\staticFieldExprUnchecked1_r.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_ro_loop.exe_1836]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop\staticFieldExprUnchecked1_ro_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_ro_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_r_loop.exe_1837]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop\staticFieldExprUnchecked1_r_loop.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_r_loop_try.exe_1838]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try\staticFieldExprUnchecked1_r_loop_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_loop_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[staticFieldExprUnchecked1_r_try.exe_1839]
+RelativePath=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try\staticFieldExprUnchecked1_r_try.exe
+WorkingDir=JIT\jit64\opt\cse\staticFieldExprUnchecked1_r_try
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilefield.exe_1840]
+RelativePath=JIT\jit64\opt\cse\volatilefield\volatilefield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilefield
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilestaticfield.exe_1841]
+RelativePath=JIT\jit64\opt\cse\volatilestaticfield\volatilestaticfield.exe
+WorkingDir=JIT\jit64\opt\cse\volatilestaticfield
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_add.exe_1842]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_add\VolatileTest_op_add.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_and.exe_1843]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_and\VolatileTest_op_and.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_and
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_div.exe_1844]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_div\VolatileTest_op_div.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_mod.exe_1845]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mod\VolatileTest_op_mod.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_mul.exe_1846]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_mul\VolatileTest_op_mul.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_or.exe_1847]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_or\VolatileTest_op_or.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_or
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_shr.exe_1848]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_shr\VolatileTest_op_shr.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_shr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_sub.exe_1849]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_sub\VolatileTest_op_sub.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VolatileTest_op_xor.exe_1850]
+RelativePath=JIT\jit64\opt\cse\VolatileTest_op_xor\VolatileTest_op_xor.exe
+WorkingDir=JIT\jit64\opt\cse\VolatileTest_op_xor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[caninline_d.exe_1851]
+RelativePath=JIT\jit64\opt\inl\caninline_d\caninline_d.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[caninline_do.exe_1852]
+RelativePath=JIT\jit64\opt\inl\caninline_do\caninline_do.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[caninline_r.exe_1853]
+RelativePath=JIT\jit64\opt\inl\caninline_r\caninline_r.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[caninline_ro.exe_1854]
+RelativePath=JIT\jit64\opt\inl\caninline_ro\caninline_ro.exe
+WorkingDir=JIT\jit64\opt\inl\caninline_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[inl001.exe_1855]
+RelativePath=JIT\jit64\opt\inl\inl001\inl001.exe
+WorkingDir=JIT\jit64\opt\inl\inl001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lim_001.exe_1856]
+RelativePath=JIT\jit64\opt\lim\lim_001\lim_001.exe
+WorkingDir=JIT\jit64\opt\lim\lim_001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lim_002.exe_1857]
+RelativePath=JIT\jit64\opt\lim\lim_002\lim_002.exe
+WorkingDir=JIT\jit64\opt\lim\lim_002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lur_01.exe_1858]
+RelativePath=JIT\jit64\opt\lur\lur_01\lur_01.exe
+WorkingDir=JIT\jit64\opt\lur\lur_01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lur_02.exe_1859]
+RelativePath=JIT\jit64\opt\lur\lur_02\lur_02.exe
+WorkingDir=JIT\jit64\opt\lur\lur_02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[osr001.exe_1860]
+RelativePath=JIT\jit64\opt\osr\osr001\osr001.exe
+WorkingDir=JIT\jit64\opt\osr\osr001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[osr015.exe_1861]
+RelativePath=JIT\jit64\opt\osr\osr015\osr015.exe
+WorkingDir=JIT\jit64\opt\osr\osr015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[193825_udo.exe_1862]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo\193825_udo.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_udo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[193825_uro.exe_1863]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro\193825_uro.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\193825\193825_uro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_dbg.exe_1864]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg\bne_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bne_opt.exe_1865]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt\bne_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\bne_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_dbg.exe_1866]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_opt.exe_1867]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\conv_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_dbg.exe_1868]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg\div_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[div_opt.exe_1869]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\div_opt\div_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\div_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul1_dbg.exe_1870]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg\mul1_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul1_opt.exe_1871]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt\mul1_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul1_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_exception_dbg.exe_1872]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg\mul_exception_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mul_exception_opt.exe_1873]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt\mul_exception_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\mul_exception_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_dbg.exe_1874]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg\rem_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rem_opt.exe_1875]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt\rem_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\223862\rem_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_dbg.exe_1876]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg\conv_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_opt.exe_1877]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt\conv_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\228572\conv_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[foo2_dbg.exe_1878]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg\foo2_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[foo2_opt.exe_1879]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt\foo2_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo2_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[foo_dbg.exe_1880]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg\foo_dbg.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[foo_opt.exe_1881]
+RelativePath=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt\foo_opt.exe
+WorkingDir=JIT\jit64\opt\regress\vswhidbey\481244\foo_opt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayBound_o.exe_1882]
+RelativePath=JIT\jit64\opt\rngchk\ArrayBound_o\ArrayBound_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayBound_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayWith2Loops_o.exe_1883]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWith2Loops_o\ArrayWith2Loops_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWith2Loops_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayWithFunc_o.exe_1884]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWithFunc_o\ArrayWithFunc_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWithFunc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayWithThread_o.exe_1885]
+RelativePath=JIT\jit64\opt\rngchk\ArrayWithThread_o\ArrayWithThread_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\ArrayWithThread_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BadMatrixMul_o.exe_1886]
+RelativePath=JIT\jit64\opt\rngchk\BadMatrixMul_o\BadMatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\BadMatrixMul_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[JaggedArray_o.exe_1887]
+RelativePath=JIT\jit64\opt\rngchk\JaggedArray_o\JaggedArray_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\JaggedArray_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MatrixMul_o.exe_1888]
+RelativePath=JIT\jit64\opt\rngchk\MatrixMul_o\MatrixMul_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\MatrixMul_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RngchkStress1_o.exe_1889]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress1_o\RngchkStress1_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress1_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RngchkStress2_o.exe_1890]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress2_o\RngchkStress2_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress2_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RngchkStress3.exe_1891]
+RelativePath=JIT\jit64\opt\rngchk\RngchkStress3\RngchkStress3.exe
+WorkingDir=JIT\jit64\opt\rngchk\RngchkStress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SimpleArray_01_o.exe_1892]
+RelativePath=JIT\jit64\opt\rngchk\SimpleArray_01_o\SimpleArray_01_o.exe
+WorkingDir=JIT\jit64\opt\rngchk\SimpleArray_01_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[foo.exe_1893]
+RelativePath=JIT\jit64\regress\asurt\143616\foo\foo.exe
+WorkingDir=JIT\jit64\regress\asurt\143616\foo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[103087.exe_1894]
+RelativePath=JIT\jit64\regress\ddb\103087\103087\103087.exe
+WorkingDir=JIT\jit64\regress\ddb\103087\103087
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[113574.exe_1895]
+RelativePath=JIT\jit64\regress\ddb\113574\113574\113574.exe
+WorkingDir=JIT\jit64\regress\ddb\113574\113574
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[118414.exe_1896]
+RelativePath=JIT\jit64\regress\ddb\118414\118414\118414.exe
+WorkingDir=JIT\jit64\regress\ddb\118414\118414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[127931.exe_1897]
+RelativePath=JIT\jit64\regress\ddb\127931\127931\127931.exe
+WorkingDir=JIT\jit64\regress\ddb\127931\127931
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[132977.exe_1898]
+RelativePath=JIT\jit64\regress\ddb\132977\132977\132977.exe
+WorkingDir=JIT\jit64\regress\ddb\132977\132977
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ddb87766.exe_1899]
+RelativePath=JIT\jit64\regress\ddb\87766\ddb87766\ddb87766.exe
+WorkingDir=JIT\jit64\regress\ddb\87766\ddb87766
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[objectusedonlyinhandler.exe_1900]
+RelativePath=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler\objectusedonlyinhandler.exe
+WorkingDir=JIT\jit64\regress\ndpw\14888\objectusedonlyinhandler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simple.exe_1901]
+RelativePath=JIT\jit64\regress\ndpw\160545\simple\simple.exe
+WorkingDir=JIT\jit64\regress\ndpw\160545\simple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interior_pointer.exe_1902]
+RelativePath=JIT\jit64\regress\ndpw\21015\interior_pointer\interior_pointer.exe
+WorkingDir=JIT\jit64\regress\ndpw\21015\interior_pointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b21220.exe_1903]
+RelativePath=JIT\jit64\regress\ndpw\21220\b21220\b21220.exe
+WorkingDir=JIT\jit64\regress\ndpw\21220\b21220
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1904]
+RelativePath=JIT\jit64\regress\phoenix\62322\test\test.exe
+WorkingDir=JIT\jit64\regress\phoenix\62322\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1905]
+RelativePath=JIT\jit64\regress\vsw\102754\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\102754\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2.exe_1906]
+RelativePath=JIT\jit64\regress\vsw\102754\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\102754\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1907]
+RelativePath=JIT\jit64\regress\vsw\102964\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102964\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1908]
+RelativePath=JIT\jit64\regress\vsw\102974\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\102974\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1909]
+RelativePath=JIT\jit64\regress\vsw\153682\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\153682\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1910]
+RelativePath=JIT\jit64\regress\vsw\266693\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\266693\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1911]
+RelativePath=JIT\jit64\regress\vsw\286991\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\286991\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1912]
+RelativePath=JIT\jit64\regress\vsw\329169\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\329169\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1913]
+RelativePath=JIT\jit64\regress\vsw\333007\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\333007\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1914]
+RelativePath=JIT\jit64\regress\vsw\336666\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\336666\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1915]
+RelativePath=JIT\jit64\regress\vsw\373472\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\373472\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1916]
+RelativePath=JIT\jit64\regress\vsw\404708\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\404708\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1917]
+RelativePath=JIT\jit64\regress\vsw\460412\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\460412\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1918]
+RelativePath=JIT\jit64\regress\vsw\471729\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\471729\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1919]
+RelativePath=JIT\jit64\regress\vsw\517867\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\517867\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1920]
+RelativePath=JIT\jit64\regress\vsw\524070\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2.exe_1921]
+RelativePath=JIT\jit64\regress\vsw\524070\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\524070\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simple-repro.exe_1922]
+RelativePath=JIT\jit64\regress\vsw\528315\simple-repro\simple-repro.exe
+WorkingDir=JIT\jit64\regress\vsw\528315\simple-repro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[exchange.exe_1923]
+RelativePath=JIT\jit64\regress\vsw\534486\exchange\exchange.exe
+WorkingDir=JIT\jit64\regress\vsw\534486\exchange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1924]
+RelativePath=JIT\jit64\regress\vsw\538615\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\538615\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1925]
+RelativePath=JIT\jit64\regress\vsw\539509\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\539509\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1.exe_1926]
+RelativePath=JIT\jit64\regress\vsw\541067\test1\test1.exe
+WorkingDir=JIT\jit64\regress\vsw\541067\test1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1927]
+RelativePath=JIT\jit64\regress\vsw\543229\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\543229\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1928]
+RelativePath=JIT\jit64\regress\vsw\543645\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\543645\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sql_stress4.exe_1929]
+RelativePath=JIT\jit64\regress\vsw\546707\sql_stress4\sql_stress4.exe
+WorkingDir=JIT\jit64\regress\vsw\546707\sql_stress4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1930]
+RelativePath=JIT\jit64\regress\vsw\549880\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\549880\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1931]
+RelativePath=JIT\jit64\regress\vsw\552940\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\552940\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[opadd.exe_1932]
+RelativePath=JIT\jit64\regress\vsw\560402\opadd\opadd.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opadd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[opmul.exe_1933]
+RelativePath=JIT\jit64\regress\vsw\560402\opmul\opmul.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opmul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[opsub.exe_1934]
+RelativePath=JIT\jit64\regress\vsw\560402\opsub\opsub.exe
+WorkingDir=JIT\jit64\regress\vsw\560402\opsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1935]
+RelativePath=JIT\jit64\regress\vsw\568666\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\568666\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_1936]
+RelativePath=JIT\jit64\regress\vsw\575343\test\test.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2.exe_1937]
+RelativePath=JIT\jit64\regress\vsw\575343\test2\test2.exe
+WorkingDir=JIT\jit64\regress\vsw\575343\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stret.exe_1938]
+RelativePath=JIT\jit64\regress\vsw\601425\stret\stret.exe
+WorkingDir=JIT\jit64\regress\vsw\601425\stret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bug606733.exe_1939]
+RelativePath=JIT\jit64\regress\vsw\606733\Bug606733\Bug606733.exe
+WorkingDir=JIT\jit64\regress\vsw\606733\Bug606733
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[607586.exe_1940]
+RelativePath=JIT\jit64\regress\vsw\607586\607586\607586.exe
+WorkingDir=JIT\jit64\regress\vsw\607586\607586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vsw610378.exe_1941]
+RelativePath=JIT\jit64\regress\vsw\610378\vsw610378\vsw610378.exe
+WorkingDir=JIT\jit64\regress\vsw\610378\vsw610378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow01_add.exe_1942]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_add\overflow01_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow01_div.exe_1943]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_div\overflow01_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow01_mul.exe_1944]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_mul\overflow01_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow01_sub.exe_1945]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow01_sub\overflow01_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow01_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow02_add.exe_1946]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_add\overflow02_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow02_div.exe_1947]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_div\overflow02_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow02_mul.exe_1948]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_mul\overflow02_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow02_sub.exe_1949]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow02_sub\overflow02_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow02_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow03_add.exe_1950]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_add\overflow03_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow03_div.exe_1951]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_div\overflow03_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow03_mul.exe_1952]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_mul\overflow03_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow03_sub.exe_1953]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow03_sub\overflow03_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow03_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow04_add.exe_1954]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_add\overflow04_add.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_add
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow04_div.exe_1955]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_div\overflow04_div.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow04_mul.exe_1956]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_mul\overflow04_mul.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overflow04_sub.exe_1957]
+RelativePath=JIT\jit64\rtchecks\overflow\overflow04_sub\overflow04_sub.exe
+WorkingDir=JIT\jit64\rtchecks\overflow\overflow04_sub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox001.exe_1958]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001\box-unbox001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox002.exe_1959]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002\box-unbox002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox003.exe_1960]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003\box-unbox003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox004.exe_1961]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004\box-unbox004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox005.exe_1962]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005\box-unbox005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox006.exe_1963]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006\box-unbox006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox007.exe_1964]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007\box-unbox007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox008.exe_1965]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008\box-unbox008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox009.exe_1966]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009\box-unbox009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox010.exe_1967]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010\box-unbox010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox011.exe_1968]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011\box-unbox011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox012.exe_1969]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012\box-unbox012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox013.exe_1970]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013\box-unbox013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox014.exe_1971]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014\box-unbox014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox015.exe_1972]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015\box-unbox015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox016.exe_1973]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016\box-unbox016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox017.exe_1974]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017\box-unbox017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox018.exe_1975]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018\box-unbox018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox019.exe_1976]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019\box-unbox019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox020.exe_1977]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020\box-unbox020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox021.exe_1978]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021\box-unbox021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox022.exe_1979]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022\box-unbox022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox023.exe_1980]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023\box-unbox023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox024.exe_1981]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024\box-unbox024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox025.exe_1982]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025\box-unbox025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox026.exe_1983]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026\box-unbox026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox027.exe_1984]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027\box-unbox027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox028.exe_1985]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028\box-unbox028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox029.exe_1986]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029\box-unbox029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox030.exe_1987]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030\box-unbox030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox031.exe_1988]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031\box-unbox031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox032.exe_1989]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032\box-unbox032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox033.exe_1990]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033\box-unbox033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox034.exe_1991]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034\box-unbox034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox037.exe_1992]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037\box-unbox037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox038.exe_1993]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038\box-unbox038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox039.exe_1994]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039\box-unbox039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox040.exe_1995]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040\box-unbox040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox041.exe_1996]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041\box-unbox041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox042.exe_1997]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042\box-unbox042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox043.exe_1998]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043\box-unbox043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox044.exe_1999]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044\box-unbox044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox045.exe_2000]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045\box-unbox045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\box-unbox\box-unbox045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-enum001.exe_2001]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001\box-unbox-enum001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-enum002.exe_2002]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002\box-unbox-enum002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-enum003.exe_2003]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003\box-unbox-enum003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\enum\box-unbox-enum003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics001.exe_2004]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001\box-unbox-generics001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics002.exe_2005]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002\box-unbox-generics002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics003.exe_2006]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003\box-unbox-generics003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics004.exe_2007]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004\box-unbox-generics004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics005.exe_2008]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005\box-unbox-generics005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics006.exe_2009]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006\box-unbox-generics006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics007.exe_2010]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007\box-unbox-generics007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics008.exe_2011]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008\box-unbox-generics008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics009.exe_2012]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009\box-unbox-generics009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics010.exe_2013]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010\box-unbox-generics010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics011.exe_2014]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011\box-unbox-generics011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics012.exe_2015]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012\box-unbox-generics012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics013.exe_2016]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013\box-unbox-generics013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics014.exe_2017]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014\box-unbox-generics014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics015.exe_2018]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015\box-unbox-generics015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics016.exe_2019]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016\box-unbox-generics016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics017.exe_2020]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017\box-unbox-generics017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics018.exe_2021]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018\box-unbox-generics018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics019.exe_2022]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019\box-unbox-generics019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics020.exe_2023]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020\box-unbox-generics020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics021.exe_2024]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021\box-unbox-generics021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics022.exe_2025]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022\box-unbox-generics022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics023.exe_2026]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023\box-unbox-generics023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics024.exe_2027]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024\box-unbox-generics024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics025.exe_2028]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025\box-unbox-generics025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics026.exe_2029]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026\box-unbox-generics026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics027.exe_2030]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027\box-unbox-generics027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics028.exe_2031]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028\box-unbox-generics028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics029.exe_2032]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029\box-unbox-generics029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics030.exe_2033]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030\box-unbox-generics030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics031.exe_2034]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031\box-unbox-generics031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics032.exe_2035]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032\box-unbox-generics032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics033.exe_2036]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033\box-unbox-generics033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics034.exe_2037]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034\box-unbox-generics034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics037.exe_2038]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037\box-unbox-generics037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics038.exe_2039]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038\box-unbox-generics038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics039.exe_2040]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039\box-unbox-generics039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics040.exe_2041]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040\box-unbox-generics040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics041.exe_2042]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041\box-unbox-generics041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics042.exe_2043]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042\box-unbox-generics042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics043.exe_2044]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043\box-unbox-generics043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics044.exe_2045]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044\box-unbox-generics044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-generics045.exe_2046]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045\box-unbox-generics045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\generics\box-unbox-generics045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface001.exe_2047]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001\box-unbox-interface001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface002.exe_2048]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002\box-unbox-interface002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface003.exe_2049]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003\box-unbox-interface003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface004.exe_2050]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004\box-unbox-interface004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface005.exe_2051]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005\box-unbox-interface005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface006.exe_2052]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006\box-unbox-interface006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface007.exe_2053]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007\box-unbox-interface007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface008.exe_2054]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008\box-unbox-interface008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface009.exe_2055]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009\box-unbox-interface009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface010.exe_2056]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010\box-unbox-interface010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface011.exe_2057]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011\box-unbox-interface011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface012.exe_2058]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012\box-unbox-interface012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface013.exe_2059]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013\box-unbox-interface013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface014.exe_2060]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014\box-unbox-interface014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface015.exe_2061]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015\box-unbox-interface015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface016.exe_2062]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016\box-unbox-interface016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface017.exe_2063]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017\box-unbox-interface017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-interface018.exe_2064]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018\box-unbox-interface018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\interface\box-unbox-interface018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null001.exe_2065]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001\box-unbox-null001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null002.exe_2066]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002\box-unbox-null002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null003.exe_2067]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003\box-unbox-null003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null004.exe_2068]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004\box-unbox-null004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null005.exe_2069]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005\box-unbox-null005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null006.exe_2070]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006\box-unbox-null006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null007.exe_2071]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007\box-unbox-null007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null008.exe_2072]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008\box-unbox-null008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null009.exe_2073]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009\box-unbox-null009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null010.exe_2074]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010\box-unbox-null010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null011.exe_2075]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011\box-unbox-null011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null012.exe_2076]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012\box-unbox-null012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null013.exe_2077]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013\box-unbox-null013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null014.exe_2078]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014\box-unbox-null014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null015.exe_2079]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015\box-unbox-null015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null016.exe_2080]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016\box-unbox-null016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null017.exe_2081]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017\box-unbox-null017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null018.exe_2082]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018\box-unbox-null018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null019.exe_2083]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019\box-unbox-null019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null020.exe_2084]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020\box-unbox-null020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null021.exe_2085]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021\box-unbox-null021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null022.exe_2086]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022\box-unbox-null022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null023.exe_2087]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023\box-unbox-null023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null024.exe_2088]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024\box-unbox-null024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null025.exe_2089]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025\box-unbox-null025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null026.exe_2090]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026\box-unbox-null026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null027.exe_2091]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027\box-unbox-null027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null028.exe_2092]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028\box-unbox-null028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null029.exe_2093]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029\box-unbox-null029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null030.exe_2094]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030\box-unbox-null030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null031.exe_2095]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031\box-unbox-null031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null032.exe_2096]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032\box-unbox-null032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null033.exe_2097]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033\box-unbox-null033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null034.exe_2098]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034\box-unbox-null034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null037.exe_2099]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037\box-unbox-null037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null038.exe_2100]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038\box-unbox-null038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null039.exe_2101]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039\box-unbox-null039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null040.exe_2102]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040\box-unbox-null040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null041.exe_2103]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041\box-unbox-null041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null042.exe_2104]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042\box-unbox-null042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null043.exe_2105]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043\box-unbox-null043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null044.exe_2106]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044\box-unbox-null044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-null045.exe_2107]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045\box-unbox-null045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\null\box-unbox-null045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value001.exe_2108]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001\box-unbox-value001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value002.exe_2109]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002\box-unbox-value002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value003.exe_2110]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003\box-unbox-value003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value004.exe_2111]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004\box-unbox-value004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value005.exe_2112]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005\box-unbox-value005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value006.exe_2113]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006\box-unbox-value006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value007.exe_2114]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007\box-unbox-value007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value008.exe_2115]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008\box-unbox-value008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value009.exe_2116]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009\box-unbox-value009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value010.exe_2117]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010\box-unbox-value010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value011.exe_2118]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011\box-unbox-value011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value012.exe_2119]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012\box-unbox-value012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value013.exe_2120]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013\box-unbox-value013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value014.exe_2121]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014\box-unbox-value014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value015.exe_2122]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015\box-unbox-value015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value016.exe_2123]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016\box-unbox-value016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value017.exe_2124]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017\box-unbox-value017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value018.exe_2125]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018\box-unbox-value018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value019.exe_2126]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019\box-unbox-value019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value020.exe_2127]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020\box-unbox-value020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value021.exe_2128]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021\box-unbox-value021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value022.exe_2129]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022\box-unbox-value022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value023.exe_2130]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023\box-unbox-value023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value024.exe_2131]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024\box-unbox-value024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value025.exe_2132]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025\box-unbox-value025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value026.exe_2133]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026\box-unbox-value026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value027.exe_2134]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027\box-unbox-value027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value028.exe_2135]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028\box-unbox-value028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value029.exe_2136]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029\box-unbox-value029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value030.exe_2137]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030\box-unbox-value030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value031.exe_2138]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031\box-unbox-value031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value032.exe_2139]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032\box-unbox-value032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value033.exe_2140]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033\box-unbox-value033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value034.exe_2141]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034\box-unbox-value034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value037.exe_2142]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037\box-unbox-value037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value038.exe_2143]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038\box-unbox-value038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value039.exe_2144]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039\box-unbox-value039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value040.exe_2145]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040\box-unbox-value040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value041.exe_2146]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041\box-unbox-value041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value042.exe_2147]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042\box-unbox-value042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value043.exe_2148]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043\box-unbox-value043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value044.exe_2149]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044\box-unbox-value044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[box-unbox-value045.exe_2150]
+RelativePath=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045\box-unbox-value045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\box-unbox\value\box-unbox-value045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass001.exe_2151]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001\castclass001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass002.exe_2152]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002\castclass002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass003.exe_2153]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003\castclass003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass004.exe_2154]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004\castclass004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass005.exe_2155]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005\castclass005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass006.exe_2156]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006\castclass006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass007.exe_2157]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007\castclass007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass008.exe_2158]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008\castclass008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass009.exe_2159]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009\castclass009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass010.exe_2160]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010\castclass010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass011.exe_2161]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011\castclass011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass012.exe_2162]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012\castclass012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass013.exe_2163]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013\castclass013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass014.exe_2164]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014\castclass014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass015.exe_2165]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015\castclass015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass016.exe_2166]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016\castclass016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass017.exe_2167]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017\castclass017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass018.exe_2168]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018\castclass018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass019.exe_2169]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019\castclass019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass020.exe_2170]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020\castclass020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass021.exe_2171]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021\castclass021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass022.exe_2172]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022\castclass022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass023.exe_2173]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023\castclass023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass024.exe_2174]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024\castclass024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass025.exe_2175]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025\castclass025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass026.exe_2176]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026\castclass026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass027.exe_2177]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027\castclass027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass028.exe_2178]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028\castclass028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass029.exe_2179]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029\castclass029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass030.exe_2180]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030\castclass030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass031.exe_2181]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031\castclass031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass032.exe_2182]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032\castclass032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass033.exe_2183]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033\castclass033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass034.exe_2184]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034\castclass034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass037.exe_2185]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037\castclass037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass038.exe_2186]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038\castclass038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass039.exe_2187]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039\castclass039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass040.exe_2188]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040\castclass040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass041.exe_2189]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041\castclass041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass042.exe_2190]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042\castclass042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass043.exe_2191]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043\castclass043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass044.exe_2192]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044\castclass044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass045.exe_2193]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045\castclass045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\castclass\castclass045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-enum001.exe_2194]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001\castclass-enum001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-enum002.exe_2195]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002\castclass-enum002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-enum003.exe_2196]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003\castclass-enum003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\enum\castclass-enum003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics001.exe_2197]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001\castclass-generics001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics002.exe_2198]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002\castclass-generics002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics003.exe_2199]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003\castclass-generics003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics004.exe_2200]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004\castclass-generics004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics005.exe_2201]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005\castclass-generics005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics006.exe_2202]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006\castclass-generics006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics007.exe_2203]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007\castclass-generics007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics008.exe_2204]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008\castclass-generics008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics009.exe_2205]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009\castclass-generics009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics010.exe_2206]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010\castclass-generics010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics011.exe_2207]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011\castclass-generics011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics012.exe_2208]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012\castclass-generics012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics013.exe_2209]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013\castclass-generics013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics014.exe_2210]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014\castclass-generics014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics015.exe_2211]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015\castclass-generics015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics016.exe_2212]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016\castclass-generics016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics017.exe_2213]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017\castclass-generics017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics018.exe_2214]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018\castclass-generics018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics019.exe_2215]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019\castclass-generics019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics020.exe_2216]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020\castclass-generics020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics021.exe_2217]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021\castclass-generics021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics022.exe_2218]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022\castclass-generics022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics023.exe_2219]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023\castclass-generics023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics024.exe_2220]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024\castclass-generics024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics025.exe_2221]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025\castclass-generics025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics026.exe_2222]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026\castclass-generics026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics027.exe_2223]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027\castclass-generics027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics028.exe_2224]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028\castclass-generics028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics029.exe_2225]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029\castclass-generics029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics030.exe_2226]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030\castclass-generics030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics031.exe_2227]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031\castclass-generics031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics032.exe_2228]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032\castclass-generics032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics033.exe_2229]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033\castclass-generics033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics034.exe_2230]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034\castclass-generics034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics037.exe_2231]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037\castclass-generics037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics038.exe_2232]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038\castclass-generics038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics039.exe_2233]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039\castclass-generics039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics040.exe_2234]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040\castclass-generics040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics041.exe_2235]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041\castclass-generics041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics042.exe_2236]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042\castclass-generics042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics043.exe_2237]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043\castclass-generics043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics044.exe_2238]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044\castclass-generics044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-generics045.exe_2239]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045\castclass-generics045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\generics\castclass-generics045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface001.exe_2240]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001\castclass-interface001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface002.exe_2241]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002\castclass-interface002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface003.exe_2242]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003\castclass-interface003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface004.exe_2243]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004\castclass-interface004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface005.exe_2244]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005\castclass-interface005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface006.exe_2245]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006\castclass-interface006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface007.exe_2246]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007\castclass-interface007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface008.exe_2247]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008\castclass-interface008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface009.exe_2248]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009\castclass-interface009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface010.exe_2249]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010\castclass-interface010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface011.exe_2250]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011\castclass-interface011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface012.exe_2251]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012\castclass-interface012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface013.exe_2252]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013\castclass-interface013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface014.exe_2253]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014\castclass-interface014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface015.exe_2254]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015\castclass-interface015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface016.exe_2255]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016\castclass-interface016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface017.exe_2256]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017\castclass-interface017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-interface018.exe_2257]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018\castclass-interface018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\interface\castclass-interface018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null001.exe_2258]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001\castclass-null001.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null002.exe_2259]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002\castclass-null002.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null003.exe_2260]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003\castclass-null003.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null004.exe_2261]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004\castclass-null004.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null005.exe_2262]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005\castclass-null005.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null006.exe_2263]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006\castclass-null006.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null007.exe_2264]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007\castclass-null007.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null008.exe_2265]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008\castclass-null008.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null009.exe_2266]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009\castclass-null009.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null010.exe_2267]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010\castclass-null010.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null011.exe_2268]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011\castclass-null011.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null012.exe_2269]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012\castclass-null012.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null013.exe_2270]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013\castclass-null013.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null014.exe_2271]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014\castclass-null014.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null015.exe_2272]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015\castclass-null015.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null016.exe_2273]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016\castclass-null016.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null017.exe_2274]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017\castclass-null017.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null018.exe_2275]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018\castclass-null018.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null019.exe_2276]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019\castclass-null019.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null019
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null020.exe_2277]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020\castclass-null020.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null021.exe_2278]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021\castclass-null021.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null022.exe_2279]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022\castclass-null022.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null023.exe_2280]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023\castclass-null023.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null024.exe_2281]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024\castclass-null024.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null024
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null025.exe_2282]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025\castclass-null025.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null026.exe_2283]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026\castclass-null026.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null027.exe_2284]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027\castclass-null027.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null028.exe_2285]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028\castclass-null028.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null029.exe_2286]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029\castclass-null029.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null029
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null030.exe_2287]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030\castclass-null030.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null031.exe_2288]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031\castclass-null031.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null031
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null032.exe_2289]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032\castclass-null032.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null033.exe_2290]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033\castclass-null033.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null034.exe_2291]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034\castclass-null034.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null037.exe_2292]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037\castclass-null037.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null038.exe_2293]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038\castclass-null038.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null038
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null039.exe_2294]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039\castclass-null039.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null040.exe_2295]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040\castclass-null040.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null041.exe_2296]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041\castclass-null041.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null041
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null042.exe_2297]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042\castclass-null042.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null043.exe_2298]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043\castclass-null043.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null044.exe_2299]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044\castclass-null044.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null044
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castclass-null045.exe_2300]
+RelativePath=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045\castclass-null045.exe
+WorkingDir=JIT\jit64\valuetypes\nullable\castclass\null\castclass-null045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ver_fg_13.exe_2301]
+RelativePath=JIT\jit64\verif\sniff\fg\ver_fg_13\ver_fg_13.exe
+WorkingDir=JIT\jit64\verif\sniff\fg\ver_fg_13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_b.exe_2302]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_b\_il_dbghuge_b.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_i4.exe_2303]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_i4\_il_dbghuge_i4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_objref.exe_2304]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_objref\_il_dbghuge_objref.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_r4.exe_2305]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r4\_il_dbghuge_r4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_r8.exe_2306]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_r8\_il_dbghuge_r8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_struct.exe_2307]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_struct\_il_dbghuge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_u8.exe_2308]
+RelativePath=JIT\Methodical\Arrays\huge\_il_dbghuge_u8\_il_dbghuge_u8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_dbghuge_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_b.exe_2309]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_b\_il_relhuge_b.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_i4.exe_2310]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_i4\_il_relhuge_i4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_objref.exe_2311]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_objref\_il_relhuge_objref.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_r4.exe_2312]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r4\_il_relhuge_r4.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_r8.exe_2313]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_r8\_il_relhuge_r8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_struct.exe_2314]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_struct\_il_relhuge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_u8.exe_2315]
+RelativePath=JIT\Methodical\Arrays\huge\_il_relhuge_u8\_il_relhuge_u8.exe
+WorkingDir=JIT\Methodical\Arrays\huge\_il_relhuge_u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[huge_struct.exe_2316]
+RelativePath=JIT\Methodical\Arrays\huge_struct\huge_struct.exe
+WorkingDir=JIT\Methodical\Arrays\huge_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs.exe_2317]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs2.exe_2318]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcs2\_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsbas.exe_2319]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbas\_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsbox.exe_2320]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsbox\_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsmax.exe_2321]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmax\_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsmixed.exe_2322]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsmixed\_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsval.exe_2323]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsval\_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcsvalbox.exe_2324]
+RelativePath=JIT\Methodical\Arrays\lcs\_dbglcsvalbox\_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_dbglcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglcs_ldlen.exe_2325]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen\_il_dbglcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_dbglcs_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellcs_ldlen.exe_2326]
+RelativePath=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen\_il_rellcs_ldlen.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_il_rellcs_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs.exe_2327]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs2.exe_2328]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcs2\_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsbas.exe_2329]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbas\_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsbox.exe_2330]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsbox\_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsmax.exe_2331]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmax\_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsmixed.exe_2332]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsmixed\_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsval.exe_2333]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsval\_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcsvalbox.exe_2334]
+RelativePath=JIT\Methodical\Arrays\lcs\_rellcsvalbox\_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_rellcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs.exe_2335]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs2.exe_2336]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcs2\_speed_dbglcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsbas.exe_2337]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas\_speed_dbglcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsbox.exe_2338]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox\_speed_dbglcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsmax.exe_2339]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax\_speed_dbglcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsmixed.exe_2340]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed\_speed_dbglcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsval.exe_2341]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsval\_speed_dbglcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcsvalbox.exe_2342]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox\_speed_dbglcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_dbglcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs.exe_2343]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs2.exe_2344]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcs2\_speed_rellcs2.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsbas.exe_2345]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbas\_speed_rellcsbas.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbas
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsbox.exe_2346]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsbox\_speed_rellcsbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsmax.exe_2347]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmax\_speed_rellcsmax.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmax
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsmixed.exe_2348]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed\_speed_rellcsmixed.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsmixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsval.exe_2349]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsval\_speed_rellcsval.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcsvalbox.exe_2350]
+RelativePath=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox\_speed_rellcsvalbox.exe
+WorkingDir=JIT\Methodical\Arrays\lcs\_speed_rellcsvalbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgarrres.exe_2351]
+RelativePath=JIT\Methodical\Arrays\misc\_dbgarrres\_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbggcarr.exe_2352]
+RelativePath=JIT\Methodical\Arrays\misc\_dbggcarr\_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgselfref.exe_2353]
+RelativePath=JIT\Methodical\Arrays\misc\_dbgselfref\_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgaddress.exe_2354]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgaddress\_il_dbgaddress.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgaddress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarrres.exe_2355]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgarrres\_il_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbggcarr.exe_2356]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbggcarr\_il_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbginitializearray_enum.exe_2357]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum\_il_dbginitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbginitializearray_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldelem_get.exe_2358]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgldelem_get\_il_dbgldelem_get.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgldelem_get
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglength0.exe_2359]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbglength0\_il_dbglength0.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglength0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglengthm2.exe_2360]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbglengthm2\_il_dbglengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbglengthm2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgselfref.exe_2361]
+RelativePath=JIT\Methodical\Arrays\misc\_il_dbgselfref\_il_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reladdress.exe_2362]
+RelativePath=JIT\Methodical\Arrays\misc\_il_reladdress\_il_reladdress.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_reladdress
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarrres.exe_2363]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relarrres\_il_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relgcarr.exe_2364]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relgcarr\_il_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relinitializearray_enum.exe_2365]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum\_il_relinitializearray_enum.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relinitializearray_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldelem_get.exe_2366]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relldelem_get\_il_relldelem_get.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relldelem_get
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellength0.exe_2367]
+RelativePath=JIT\Methodical\Arrays\misc\_il_rellength0\_il_rellength0.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_rellength0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellengthm2.exe_2368]
+RelativePath=JIT\Methodical\Arrays\misc\_il_rellengthm2\_il_rellengthm2.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_rellengthm2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relselfref.exe_2369]
+RelativePath=JIT\Methodical\Arrays\misc\_il_relselfref\_il_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_il_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relarrres.exe_2370]
+RelativePath=JIT\Methodical\Arrays\misc\_relarrres\_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relgcarr.exe_2371]
+RelativePath=JIT\Methodical\Arrays\misc\_relgcarr\_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relselfref.exe_2372]
+RelativePath=JIT\Methodical\Arrays\misc\_relselfref\_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgarrres.exe_2373]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgarrres\_speed_dbgarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbggcarr.exe_2374]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbggcarr\_speed_dbggcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbggcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgselfref.exe_2375]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_dbgselfref\_speed_dbgselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_dbgselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relarrres.exe_2376]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relarrres\_speed_relarrres.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relarrres
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relgcarr.exe_2377]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relgcarr\_speed_relgcarr.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relgcarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relselfref.exe_2378]
+RelativePath=JIT\Methodical\Arrays\misc\_speed_relselfref\_speed_relselfref.exe
+WorkingDir=JIT\Methodical\Arrays\misc\_speed_relselfref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfloat64_range1.exe_2379]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1\_il_dbgfloat64_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfloat64_range2.exe_2380]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2\_il_dbgfloat64_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgfloat64_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_0.exe_2381]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0\_il_dbgint32_0.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_0_5a.exe_2382]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a\_il_dbgint32_0_5a.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_0_5b.exe_2383]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b\_il_dbgint32_0_5b.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_0_5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_1.exe_2384]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_1\_il_dbgint32_1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_m1.exe_2385]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_m1\_il_dbgint32_m1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_m1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_neg_range.exe_2386]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range\_il_dbgint32_neg_range.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_neg_range
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_range1.exe_2387]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range1\_il_dbgint32_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgint32_range2.exe_2388]
+RelativePath=JIT\Methodical\Arrays\range\_il_dbgint32_range2\_il_dbgint32_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_dbgint32_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfloat64_range1.exe_2389]
+RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range1\_il_relfloat64_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfloat64_range2.exe_2390]
+RelativePath=JIT\Methodical\Arrays\range\_il_relfloat64_range2\_il_relfloat64_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relfloat64_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_0.exe_2391]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0\_il_relint32_0.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_0_5a.exe_2392]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5a\_il_relint32_0_5a.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_0_5b.exe_2393]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_0_5b\_il_relint32_0_5b.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_0_5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_1.exe_2394]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_1\_il_relint32_1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_m1.exe_2395]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_m1\_il_relint32_m1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_m1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_neg_range.exe_2396]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_neg_range\_il_relint32_neg_range.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_neg_range
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_range1.exe_2397]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range1\_il_relint32_range1.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relint32_range2.exe_2398]
+RelativePath=JIT\Methodical\Arrays\range\_il_relint32_range2\_il_relint32_range2.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relint32_range2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relnegIndexRngChkElim.exe_2399]
+RelativePath=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim\_il_relnegIndexRngChkElim.exe
+WorkingDir=JIT\Methodical\Arrays\range\_il_relnegIndexRngChkElim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4flat_cs_d.exe_2400]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_d\i4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4flat_cs_do.exe_2401]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_do\i4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4flat_cs_r.exe_2402]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_r\i4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4flat_cs_ro.exe_2403]
+RelativePath=JIT\Methodical\AsgOp\i4\i4flat_cs_ro\i4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4_cs_d.exe_2404]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_d\i4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4_cs_do.exe_2405]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_do\i4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4_cs_r.exe_2406]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_r\i4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4_cs_ro.exe_2407]
+RelativePath=JIT\Methodical\AsgOp\i4\i4_cs_ro\i4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i4\i4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8flat_cs_d.exe_2408]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_d\i8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8flat_cs_do.exe_2409]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_do\i8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8flat_cs_r.exe_2410]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_r\i8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8flat_cs_ro.exe_2411]
+RelativePath=JIT\Methodical\AsgOp\i8\i8flat_cs_ro\i8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8_cs_d.exe_2412]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_d\i8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8_cs_do.exe_2413]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_do\i8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8_cs_r.exe_2414]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_r\i8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8_cs_ro.exe_2415]
+RelativePath=JIT\Methodical\AsgOp\i8\i8_cs_ro\i8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\i8\i8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4flat_cs_d.exe_2416]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_d\r4flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4flat_cs_do.exe_2417]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_do\r4flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4flat_cs_r.exe_2418]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_r\r4flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4flat_cs_ro.exe_2419]
+RelativePath=JIT\Methodical\AsgOp\r4\r4flat_cs_ro\r4flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4_cs_d.exe_2420]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_d\r4_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4_cs_do.exe_2421]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_do\r4_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4_cs_r.exe_2422]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_r\r4_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4_cs_ro.exe_2423]
+RelativePath=JIT\Methodical\AsgOp\r4\r4_cs_ro\r4_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r4\r4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8flat_cs_d.exe_2424]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_d\r8flat_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8flat_cs_do.exe_2425]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_do\r8flat_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8flat_cs_r.exe_2426]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_r\r8flat_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8flat_cs_ro.exe_2427]
+RelativePath=JIT\Methodical\AsgOp\r8\r8flat_cs_ro\r8flat_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8flat_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8_cs_d.exe_2428]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_d\r8_cs_d.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8_cs_do.exe_2429]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_do\r8_cs_do.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8_cs_r.exe_2430]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_r\r8_cs_r.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8_cs_ro.exe_2431]
+RelativePath=JIT\Methodical\AsgOp\r8\r8_cs_ro\r8_cs_ro.exe
+WorkingDir=JIT\Methodical\AsgOp\r8\r8_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarray.exe_2432]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgarray\_il_dbgarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgchain.exe_2433]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgchain\_il_dbgchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgchain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfinally.exe_2434]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally\_il_dbgfinally.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_filter.exe_2435]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter\_il_dbghuge_filter.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbghuge_filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjump.exe_2436]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgjump\_il_dbgjump.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgjump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglocal.exe_2437]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocal\_il_dbglocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglocalloc.exe_2438]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc\_il_dbglocalloc.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbglocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsimple.exe_2439]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple\_il_dbgsimple.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgsimple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtailcall.exe_2440]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall\_il_dbgtailcall.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtry.exe_2441]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_dbgtry\_il_dbgtry.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_dbgtry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarray.exe_2442]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relarray\_il_relarray.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relchain.exe_2443]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relchain\_il_relchain.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relchain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfinally.exe_2444]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relfinally\_il_relfinally.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_filter.exe_2445]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter\_il_relhuge_filter.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relhuge_filter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljump.exe_2446]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reljump\_il_reljump.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reljump
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellocal.exe_2447]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocal\_il_rellocal.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellocalloc.exe_2448]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc\_il_rellocalloc.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_rellocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsimple.exe_2449]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_relsimple\_il_relsimple.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_relsimple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltailcall.exe_2450]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltailcall\_il_reltailcall.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltry.exe_2451]
+RelativePath=JIT\Methodical\Boxing\boxunbox\_il_reltry\_il_reltry.exe
+WorkingDir=JIT\Methodical\Boxing\boxunbox\_il_reltry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbginstance_cs.exe_2452]
+RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_cs\_dbginstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbginstance_il.exe_2453]
+RelativePath=JIT\Methodical\Boxing\callconv\_dbginstance_il\_dbginstance_il.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_dbginstance_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbginstance_cs.exe_2454]
+RelativePath=JIT\Methodical\Boxing\callconv\_odbginstance_cs\_odbginstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_odbginstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelinstance_cs.exe_2455]
+RelativePath=JIT\Methodical\Boxing\callconv\_orelinstance_cs\_orelinstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_orelinstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relinstance_cs.exe_2456]
+RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_cs\_relinstance_cs.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relinstance_il.exe_2457]
+RelativePath=JIT\Methodical\Boxing\callconv\_relinstance_il\_relinstance_il.exe
+WorkingDir=JIT\Methodical\Boxing\callconv\_relinstance_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgfibo_cs.exe_2458]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_cs\_dbgfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgfibo_il.exe_2459]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgfibo_il\_dbgfibo_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgfibo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_cs.exe_2460]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_cs\_dbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_il.exe_2461]
+RelativePath=JIT\Methodical\Boxing\functional\_dbgsin_il\_dbgsin_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_dbgsin_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgfibo_cs.exe_2462]
+RelativePath=JIT\Methodical\Boxing\functional\_odbgfibo_cs\_odbgfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_odbgfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_cs.exe_2463]
+RelativePath=JIT\Methodical\Boxing\functional\_odbgsin_cs\_odbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_odbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelfibo_cs.exe_2464]
+RelativePath=JIT\Methodical\Boxing\functional\_orelfibo_cs\_orelfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_orelfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_cs.exe_2465]
+RelativePath=JIT\Methodical\Boxing\functional\_orelsin_cs\_orelsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_orelsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relfibo_cs.exe_2466]
+RelativePath=JIT\Methodical\Boxing\functional\_relfibo_cs\_relfibo_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relfibo_il.exe_2467]
+RelativePath=JIT\Methodical\Boxing\functional\_relfibo_il\_relfibo_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relfibo_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_cs.exe_2468]
+RelativePath=JIT\Methodical\Boxing\functional\_relsin_cs\_relsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_il.exe_2469]
+RelativePath=JIT\Methodical\Boxing\functional\_relsin_il\_relsin_il.exe
+WorkingDir=JIT\Methodical\Boxing\functional\_relsin_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgconcurgc_il.exe_2470]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgconcurgc_il\_dbgconcurgc_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgconcurgc_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgenum_cs.exe_2471]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_cs\_dbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgenum_il.exe_2472]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgenum_il\_dbgenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgenum_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgnestval_cs.exe_2473]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_cs\_dbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgnestval_il.exe_2474]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgnestval_il\_dbgnestval_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgnestval_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtailjump_cs.exe_2475]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_cs\_dbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtailjump_il.exe_2476]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtailjump_il\_dbgtailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtailjump_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtypedref.exe_2477]
+RelativePath=JIT\Methodical\Boxing\misc\_dbgtypedref\_dbgtypedref.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_dbgtypedref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgenum_cs.exe_2478]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgenum_cs\_odbgenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgnestval_cs.exe_2479]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgnestval_cs\_odbgnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgtailjump_cs.exe_2480]
+RelativePath=JIT\Methodical\Boxing\misc\_odbgtailjump_cs\_odbgtailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_odbgtailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelenum_cs.exe_2481]
+RelativePath=JIT\Methodical\Boxing\misc\_orelenum_cs\_orelenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelnestval_cs.exe_2482]
+RelativePath=JIT\Methodical\Boxing\misc\_orelnestval_cs\_orelnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_orelnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_oreltailjump_cs.exe_2483]
+RelativePath=JIT\Methodical\Boxing\misc\_oreltailjump_cs\_oreltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_oreltailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relconcurgc_il.exe_2484]
+RelativePath=JIT\Methodical\Boxing\misc\_relconcurgc_il\_relconcurgc_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relconcurgc_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relenum_cs.exe_2485]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_cs\_relenum_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relenum_il.exe_2486]
+RelativePath=JIT\Methodical\Boxing\misc\_relenum_il\_relenum_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relenum_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relnestval_cs.exe_2487]
+RelativePath=JIT\Methodical\Boxing\misc\_relnestval_cs\_relnestval_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relnestval_il.exe_2488]
+RelativePath=JIT\Methodical\Boxing\misc\_relnestval_il\_relnestval_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_relnestval_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltailjump_cs.exe_2489]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_cs\_reltailjump_cs.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltailjump_il.exe_2490]
+RelativePath=JIT\Methodical\Boxing\misc\_reltailjump_il\_reltailjump_il.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltailjump_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltypedref.exe_2491]
+RelativePath=JIT\Methodical\Boxing\misc\_reltypedref\_reltypedref.exe
+WorkingDir=JIT\Methodical\Boxing\misc\_reltypedref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_cs.exe_2492]
+RelativePath=JIT\Methodical\Boxing\morph\_dbgsin_cs\_dbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_dbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_cs.exe_2493]
+RelativePath=JIT\Methodical\Boxing\morph\_odbgsin_cs\_odbgsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_odbgsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_cs.exe_2494]
+RelativePath=JIT\Methodical\Boxing\morph\_orelsin_cs\_orelsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_orelsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_cs.exe_2495]
+RelativePath=JIT\Methodical\Boxing\morph\_relsin_cs\_relsin_cs.exe
+WorkingDir=JIT\Methodical\Boxing\morph\_relsin_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgfault.exe_2496]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgfault\_dbgfault.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgfilter.exe_2497]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgfilter\_dbgfilter.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtry_cs.exe_2498]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_cs\_dbgtry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtry_il.exe_2499]
+RelativePath=JIT\Methodical\Boxing\seh\_dbgtry_il\_dbgtry_il.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_dbgtry_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgtry_cs.exe_2500]
+RelativePath=JIT\Methodical\Boxing\seh\_odbgtry_cs\_odbgtry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_odbgtry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_oreltry_cs.exe_2501]
+RelativePath=JIT\Methodical\Boxing\seh\_oreltry_cs\_oreltry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_oreltry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relfault.exe_2502]
+RelativePath=JIT\Methodical\Boxing\seh\_relfault\_relfault.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_relfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relfilter.exe_2503]
+RelativePath=JIT\Methodical\Boxing\seh\_relfilter\_relfilter.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_relfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltry_cs.exe_2504]
+RelativePath=JIT\Methodical\Boxing\seh\_reltry_cs\_reltry_cs.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_reltry_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltry_il.exe_2505]
+RelativePath=JIT\Methodical\Boxing\seh\_reltry_il\_reltry_il.exe
+WorkingDir=JIT\Methodical\Boxing\seh\_reltry_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_cs_cs.exe_2506]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs\_dbgsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_cs_il.exe_2507]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il\_dbgsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_il_cs.exe_2508]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs\_dbgsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsin_il_il.exe_2509]
+RelativePath=JIT\Methodical\Boxing\xlang\_dbgsin_il_il\_dbgsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_dbgsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_cs_cs.exe_2510]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs\_odbgsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_cs_il.exe_2511]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il\_odbgsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_il_cs.exe_2512]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs\_odbgsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_odbgsin_il_il.exe_2513]
+RelativePath=JIT\Methodical\Boxing\xlang\_odbgsin_il_il\_odbgsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_odbgsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_cs_cs.exe_2514]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs\_orelsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_cs_il.exe_2515]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_cs_il\_orelsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_il_cs.exe_2516]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_cs\_orelsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_orelsin_il_il.exe_2517]
+RelativePath=JIT\Methodical\Boxing\xlang\_orelsin_il_il\_orelsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_orelsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_cs_cs.exe_2518]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_cs\_relsin_cs_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_cs_il.exe_2519]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_cs_il\_relsin_cs_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_cs_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_il_cs.exe_2520]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_cs\_relsin_il_cs.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_cs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsin_il_il.exe_2521]
+RelativePath=JIT\Methodical\Boxing\xlang\_relsin_il_il\_relsin_il_il.exe
+WorkingDir=JIT\Methodical\Boxing\xlang\_relsin_il_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarrays.exe_2522]
+RelativePath=JIT\Methodical\casts\array\_il_dbgarrays\_il_dbgarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgarrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_ldlen.exe_2523]
+RelativePath=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen\_il_dbgcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgcastclass_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_ldlen.exe_2524]
+RelativePath=JIT\Methodical\casts\array\_il_dbgisinst_ldlen\_il_dbgisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_dbgisinst_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarrays.exe_2525]
+RelativePath=JIT\Methodical\casts\array\_il_relarrays\_il_relarrays.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relarrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_ldlen.exe_2526]
+RelativePath=JIT\Methodical\casts\array\_il_relcastclass_ldlen\_il_relcastclass_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relcastclass_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_ldlen.exe_2527]
+RelativePath=JIT\Methodical\casts\array\_il_relisinst_ldlen\_il_relisinst_ldlen.exe
+WorkingDir=JIT\Methodical\casts\array\_il_relisinst_ldlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcastclass_call.exe_2528]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_call\_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcastclass_ldarg.exe_2529]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg\_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcastclass_ldloc.exe_2530]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc\_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcastclass_newobj.exe_2531]
+RelativePath=JIT\Methodical\casts\coverage\_dbgcastclass_newobj\_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgisinst_call.exe_2532]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_call\_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgisinst_ldarg.exe_2533]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldarg\_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgisinst_ldloc.exe_2534]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_ldloc\_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgisinst_newobj.exe_2535]
+RelativePath=JIT\Methodical\casts\coverage\_dbgisinst_newobj\_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_dbgisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_call.exe_2536]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_call\_il_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_calli.exe_2537]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli\_il_dbgcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_ldarg.exe_2538]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg\_il_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_ldloc.exe_2539]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc\_il_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_call.exe_2540]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_call\_il_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_calli.exe_2541]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_calli\_il_dbgisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_ldarg.exe_2542]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg\_il_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_ldloc.exe_2543]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc\_il_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldnull.exe_2544]
+RelativePath=JIT\Methodical\casts\coverage\_il_dbgldnull\_il_dbgldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_dbgldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_call.exe_2545]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_call\_il_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_calli.exe_2546]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_calli\_il_relcastclass_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_ldarg.exe_2547]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg\_il_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_ldloc.exe_2548]
+RelativePath=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc\_il_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_call.exe_2549]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_call\_il_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_calli.exe_2550]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_calli\_il_relisinst_calli.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_ldarg.exe_2551]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldarg\_il_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_ldloc.exe_2552]
+RelativePath=JIT\Methodical\casts\coverage\_il_relisinst_ldloc\_il_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldnull.exe_2553]
+RelativePath=JIT\Methodical\casts\coverage\_il_relldnull\_il_relldnull.exe
+WorkingDir=JIT\Methodical\casts\coverage\_il_relldnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcastclass_call.exe_2554]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_call\_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcastclass_ldarg.exe_2555]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldarg\_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcastclass_ldloc.exe_2556]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_ldloc\_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcastclass_newobj.exe_2557]
+RelativePath=JIT\Methodical\casts\coverage\_relcastclass_newobj\_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relisinst_call.exe_2558]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_call\_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relisinst_ldarg.exe_2559]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldarg\_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relisinst_ldloc.exe_2560]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_ldloc\_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relisinst_newobj.exe_2561]
+RelativePath=JIT\Methodical\casts\coverage\_relisinst_newobj\_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_relisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcastclass_call.exe_2562]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call\_speed_dbgcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcastclass_ldarg.exe_2563]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg\_speed_dbgcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcastclass_ldloc.exe_2564]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc\_speed_dbgcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcastclass_newobj.exe_2565]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj\_speed_dbgcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgisinst_call.exe_2566]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_call\_speed_dbgisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgisinst_ldarg.exe_2567]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg\_speed_dbgisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgisinst_ldloc.exe_2568]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc\_speed_dbgisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgisinst_newobj.exe_2569]
+RelativePath=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj\_speed_dbgisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_dbgisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcastclass_call.exe_2570]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_call\_speed_relcastclass_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcastclass_ldarg.exe_2571]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg\_speed_relcastclass_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcastclass_ldloc.exe_2572]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc\_speed_relcastclass_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcastclass_newobj.exe_2573]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj\_speed_relcastclass_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relcastclass_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relisinst_call.exe_2574]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_call\_speed_relisinst_call.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relisinst_ldarg.exe_2575]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg\_speed_relisinst_ldarg.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relisinst_ldloc.exe_2576]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc\_speed_relisinst_ldloc.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_ldloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relisinst_newobj.exe_2577]
+RelativePath=JIT\Methodical\casts\coverage\_speed_relisinst_newobj\_speed_relisinst_newobj.exe
+WorkingDir=JIT\Methodical\casts\coverage\_speed_relisinst_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgiface1.exe_2578]
+RelativePath=JIT\Methodical\casts\iface\_dbgiface1\_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_dbgiface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgiface2.exe_2579]
+RelativePath=JIT\Methodical\casts\iface\_il_dbgiface2\_il_dbgiface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_dbgiface2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reliface2.exe_2580]
+RelativePath=JIT\Methodical\casts\iface\_il_reliface2\_il_reliface2.exe
+WorkingDir=JIT\Methodical\casts\iface\_il_reliface2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reliface1.exe_2581]
+RelativePath=JIT\Methodical\casts\iface\_reliface1\_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_reliface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgiface1.exe_2582]
+RelativePath=JIT\Methodical\casts\iface\_speed_dbgiface1\_speed_dbgiface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_dbgiface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reliface1.exe_2583]
+RelativePath=JIT\Methodical\casts\iface\_speed_reliface1\_speed_reliface1.exe
+WorkingDir=JIT\Methodical\casts\iface\_speed_reliface1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relCommonBase.exe_2584]
+RelativePath=JIT\Methodical\casts\ilseq\_il_relCommonBase\_il_relCommonBase.exe
+WorkingDir=JIT\Methodical\casts\ilseq\_il_relCommonBase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcast_throw.exe_2586]
+RelativePath=JIT\Methodical\casts\SEH\_dbgcast_throw\_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgthrow.exe_2587]
+RelativePath=JIT\Methodical\casts\SEH\_dbgthrow\_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_dbgthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_catch.exe_2588]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch\_il_dbgcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcastclass_catch_neg.exe_2589]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg\_il_dbgcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgcastclass_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfilter.exe_2590]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgfilter\_il_dbgfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_catch.exe_2591]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch\_il_dbgisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgisinst_catch_neg.exe_2592]
+RelativePath=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg\_il_dbgisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_dbgisinst_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_catch.exe_2593]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch\_il_relcastclass_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcastclass_catch_neg.exe_2594]
+RelativePath=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg\_il_relcastclass_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relcastclass_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfilter.exe_2595]
+RelativePath=JIT\Methodical\casts\SEH\_il_relfilter\_il_relfilter.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_catch.exe_2596]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch\_il_relisinst_catch.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relisinst_catch_neg.exe_2597]
+RelativePath=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg\_il_relisinst_catch_neg.exe
+WorkingDir=JIT\Methodical\casts\SEH\_il_relisinst_catch_neg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcast_throw.exe_2598]
+RelativePath=JIT\Methodical\casts\SEH\_relcast_throw\_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relthrow.exe_2599]
+RelativePath=JIT\Methodical\casts\SEH\_relthrow\_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_relthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcast_throw.exe_2600]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgcast_throw\_speed_dbgcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgthrow.exe_2601]
+RelativePath=JIT\Methodical\casts\SEH\_speed_dbgthrow\_speed_dbgthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_dbgthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcast_throw.exe_2602]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relcast_throw\_speed_relcast_throw.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relcast_throw
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relthrow.exe_2603]
+RelativePath=JIT\Methodical\casts\SEH\_speed_relthrow\_speed_relthrow.exe
+WorkingDir=JIT\Methodical\casts\SEH\_speed_relthrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[assemname_cs_d.exe_2604]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_d\assemname_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[assemname_cs_do.exe_2605]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_do\assemname_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[assemname_cs_r.exe_2606]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_r\assemname_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[assemname_cs_ro.exe_2607]
+RelativePath=JIT\Methodical\cctor\misc\assemname_cs_ro\assemname_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\assemname_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadlock_il_d.exe_2608]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_d\deadlock_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadlock_il_r.exe_2609]
+RelativePath=JIT\Methodical\cctor\misc\deadlock_il_r\deadlock_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\deadlock_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_d.exe_2610]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_d\throw_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_do.exe_2611]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_do\throw_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_r.exe_2612]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_r\throw_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_ro.exe_2613]
+RelativePath=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro\throw_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\Desktop\throw_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[global_il_d.exe_2614]
+RelativePath=JIT\Methodical\cctor\misc\global_il_d\global_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\global_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[global_il_r.exe_2615]
+RelativePath=JIT\Methodical\cctor\misc\global_il_r\global_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\global_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tail_il_d.exe_2616]
+RelativePath=JIT\Methodical\cctor\misc\tail_il_d\tail_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\tail_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tail_il_r.exe_2617]
+RelativePath=JIT\Methodical\cctor\misc\tail_il_r\tail_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\tail_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads1_cs_d.exe_2618]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_d\threads1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads1_cs_do.exe_2619]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_do\threads1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads1_cs_r.exe_2620]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_r\threads1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads1_cs_ro.exe_2621]
+RelativePath=JIT\Methodical\cctor\misc\threads1_cs_ro\threads1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads2_cs_d.exe_2622]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_d\threads2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads2_cs_do.exe_2623]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_do\threads2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads2_cs_r.exe_2624]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_r\threads2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads2_cs_ro.exe_2625]
+RelativePath=JIT\Methodical\cctor\misc\threads2_cs_ro\threads2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads3_il_d.exe_2626]
+RelativePath=JIT\Methodical\cctor\misc\threads3_il_d\threads3_il_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[threads3_il_r.exe_2627]
+RelativePath=JIT\Methodical\cctor\misc\threads3_il_r\threads3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\threads3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_d.exe_2628]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_d\throw_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_do.exe_2629]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_do\throw_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_r.exe_2630]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_r\throw_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw_cs_ro.exe_2631]
+RelativePath=JIT\Methodical\cctor\misc\throw_cs_ro\throw_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\misc\throw_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit3_il_r.exe_2632]
+RelativePath=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r\prefldinit3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\Desktop\prefldinit3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1b_cs_d.exe_2633]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_d\precise1b_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1b_cs_do.exe_2634]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_do\precise1b_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1b_cs_r.exe_2635]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_r\precise1b_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1b_cs_ro.exe_2636]
+RelativePath=JIT\Methodical\cctor\simple\precise1b_cs_ro\precise1b_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1b_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1_cs_d.exe_2637]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_d\precise1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1_cs_do.exe_2638]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_do\precise1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1_cs_r.exe_2639]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_r\precise1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise1_cs_ro.exe_2640]
+RelativePath=JIT\Methodical\cctor\simple\precise1_cs_ro\precise1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise2_cs_d.exe_2641]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_d\precise2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise2_cs_do.exe_2642]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_do\precise2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise2_cs_r.exe_2643]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_r\precise2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise2_cs_ro.exe_2644]
+RelativePath=JIT\Methodical\cctor\simple\precise2_cs_ro\precise2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise3_il_d.exe_2645]
+RelativePath=JIT\Methodical\cctor\simple\precise3_il_d\precise3_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise3_il_r.exe_2646]
+RelativePath=JIT\Methodical\cctor\simple\precise3_il_r\precise3_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise4_cs_d.exe_2647]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_d\precise4_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise4_cs_do.exe_2648]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_do\precise4_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise4_cs_r.exe_2649]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_r\precise4_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[precise4_cs_ro.exe_2650]
+RelativePath=JIT\Methodical\cctor\simple\precise4_cs_ro\precise4_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\simple\precise4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit1_il_d.exe_2651]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_d\prefldinit1_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit1_il_r.exe_2652]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit1_il_r\prefldinit1_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit1_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit2_il_d.exe_2653]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_d\prefldinit2_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit2_il_r.exe_2654]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit2_il_r\prefldinit2_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit2_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit4_il_d.exe_2655]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_d\prefldinit4_il_d.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[prefldinit4_il_r.exe_2656]
+RelativePath=JIT\Methodical\cctor\simple\prefldinit4_il_r\prefldinit4_il_r.exe
+WorkingDir=JIT\Methodical\cctor\simple\prefldinit4_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1b_cs_d.exe_2657]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_d\xprecise1b_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1b_cs_do.exe_2658]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_do\xprecise1b_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1b_cs_r.exe_2659]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_r\xprecise1b_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1b_cs_ro.exe_2660]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro\xprecise1b_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1b_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1_cs_d.exe_2661]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_d\xprecise1_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1_cs_do.exe_2662]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_do\xprecise1_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1_cs_r.exe_2663]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_r\xprecise1_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise1_cs_ro.exe_2664]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise1_cs_ro\xprecise1_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise2_cs_d.exe_2665]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_d\xprecise2_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise2_cs_do.exe_2666]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_do\xprecise2_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise2_cs_r.exe_2667]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_r\xprecise2_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise2_cs_ro.exe_2668]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise2_cs_ro\xprecise2_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise4_cs_d.exe_2669]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_d\xprecise4_cs_d.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise4_cs_do.exe_2670]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_do\xprecise4_cs_do.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise4_cs_r.exe_2671]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_r\xprecise4_cs_r.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[xprecise4_cs_ro.exe_2672]
+RelativePath=JIT\Methodical\cctor\xassem\xprecise4_cs_ro\xprecise4_cs_ro.exe
+WorkingDir=JIT\Methodical\cctor\xassem\xprecise4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arglist_pos.exe_2673]
+RelativePath=JIT\Methodical\Coverage\arglist_pos\arglist_pos.exe
+WorkingDir=JIT\Methodical\Coverage\arglist_pos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39946.exe_2674]
+RelativePath=JIT\Methodical\Coverage\b39946\b39946.exe
+WorkingDir=JIT\Methodical\Coverage\b39946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b433189.exe_2675]
+RelativePath=JIT\Methodical\Coverage\b433189\b433189.exe
+WorkingDir=JIT\Methodical\Coverage\b433189
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b518440.exe_2676]
+RelativePath=JIT\Methodical\Coverage\b518440\b518440.exe
+WorkingDir=JIT\Methodical\Coverage\b518440
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hole.exe_2677]
+RelativePath=JIT\Methodical\Coverage\hole\hole.exe
+WorkingDir=JIT\Methodical\Coverage\hole
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_simpleoddpower_il_d.exe_2678]
+RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_d\_simpleoddpower_il_d.exe
+WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_simpleoddpower_il_r.exe_2679]
+RelativePath=JIT\Methodical\delegate\_simpleoddpower_il_r\_simpleoddpower_il_r.exe
+WorkingDir=JIT\Methodical\delegate\_simpleoddpower_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimaldiv_cs_d.exe_2680]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_d\decimaldiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimaldiv_cs_do.exe_2681]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_do\decimaldiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimaldiv_cs_r.exe_2682]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_r\decimaldiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimaldiv_cs_ro.exe_2683]
+RelativePath=JIT\Methodical\divrem\div\decimaldiv_cs_ro\decimaldiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\decimaldiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4div_cs_d.exe_2684]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_d\i4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4div_cs_do.exe_2685]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_do\i4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4div_cs_r.exe_2686]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_r\i4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4div_cs_ro.exe_2687]
+RelativePath=JIT\Methodical\divrem\div\i4div_cs_ro\i4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8div_cs_d.exe_2688]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_d\i8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8div_cs_do.exe_2689]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_do\i8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8div_cs_r.exe_2690]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_r\i8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8div_cs_ro.exe_2691]
+RelativePath=JIT\Methodical\divrem\div\i8div_cs_ro\i8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\i8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[negSignedMod.exe_2692]
+RelativePath=JIT\Methodical\divrem\div\negSignedMod\negSignedMod.exe
+WorkingDir=JIT\Methodical\divrem\div\negSignedMod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overlddiv_cs_d.exe_2693]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_d\overlddiv_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overlddiv_cs_do.exe_2694]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_do\overlddiv_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overlddiv_cs_r.exe_2695]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_r\overlddiv_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overlddiv_cs_ro.exe_2696]
+RelativePath=JIT\Methodical\divrem\div\overlddiv_cs_ro\overlddiv_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\overlddiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4div_cs_d.exe_2697]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_d\r4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4div_cs_do.exe_2698]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_do\r4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4div_cs_r.exe_2699]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_r\r4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4div_cs_ro.exe_2700]
+RelativePath=JIT\Methodical\divrem\div\r4div_cs_ro\r4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8div_cs_d.exe_2701]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_d\r8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8div_cs_do.exe_2702]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_do\r8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8div_cs_r.exe_2703]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_r\r8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8div_cs_ro.exe_2704]
+RelativePath=JIT\Methodical\divrem\div\r8div_cs_ro\r8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\r8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4div_cs_d.exe_2705]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_d\u4div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4div_cs_do.exe_2706]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_do\u4div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4div_cs_r.exe_2707]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_r\u4div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4div_cs_ro.exe_2708]
+RelativePath=JIT\Methodical\divrem\div\u4div_cs_ro\u4div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u4div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8div_cs_d.exe_2709]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_d\u8div_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8div_cs_do.exe_2710]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_do\u8div_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8div_cs_r.exe_2711]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_r\u8div_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8div_cs_ro.exe_2712]
+RelativePath=JIT\Methodical\divrem\div\u8div_cs_ro\u8div_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\div\u8div_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimalrem_cs_d.exe_2713]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_d\decimalrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimalrem_cs_do.exe_2714]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_do\decimalrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimalrem_cs_r.exe_2715]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_r\decimalrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimalrem_cs_ro.exe_2716]
+RelativePath=JIT\Methodical\divrem\rem\decimalrem_cs_ro\decimalrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\decimalrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4rem_cs_d.exe_2717]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_d\i4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4rem_cs_do.exe_2718]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_do\i4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4rem_cs_r.exe_2719]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_r\i4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i4rem_cs_ro.exe_2720]
+RelativePath=JIT\Methodical\divrem\rem\i4rem_cs_ro\i4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8rem_cs_d.exe_2721]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_d\i8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8rem_cs_do.exe_2722]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_do\i8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8rem_cs_r.exe_2723]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_r\i8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[i8rem_cs_ro.exe_2724]
+RelativePath=JIT\Methodical\divrem\rem\i8rem_cs_ro\i8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\i8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overldrem_cs_d.exe_2725]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_d\overldrem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overldrem_cs_do.exe_2726]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_do\overldrem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overldrem_cs_r.exe_2727]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_r\overldrem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overldrem_cs_ro.exe_2728]
+RelativePath=JIT\Methodical\divrem\rem\overldrem_cs_ro\overldrem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\overldrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4rem_cs_d.exe_2729]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_d\r4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4rem_cs_do.exe_2730]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_do\r4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4rem_cs_r.exe_2731]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_r\r4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4rem_cs_ro.exe_2732]
+RelativePath=JIT\Methodical\divrem\rem\r4rem_cs_ro\r4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8rem_cs_d.exe_2733]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_d\r8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8rem_cs_do.exe_2734]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_do\r8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8rem_cs_r.exe_2735]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_r\r8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8rem_cs_ro.exe_2736]
+RelativePath=JIT\Methodical\divrem\rem\r8rem_cs_ro\r8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\r8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4rem_cs_d.exe_2737]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_d\u4rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4rem_cs_do.exe_2738]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_do\u4rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4rem_cs_r.exe_2739]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_r\u4rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u4rem_cs_ro.exe_2740]
+RelativePath=JIT\Methodical\divrem\rem\u4rem_cs_ro\u4rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u4rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8rem_cs_d.exe_2741]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_d\u8rem_cs_d.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8rem_cs_do.exe_2742]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_do\u8rem_cs_do.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8rem_cs_r.exe_2743]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_r\u8rem_cs_r.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[u8rem_cs_ro.exe_2744]
+RelativePath=JIT\Methodical\divrem\rem\u8rem_cs_ro\u8rem_cs_ro.exe
+WorkingDir=JIT\Methodical\divrem\rem\u8rem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray1_cs_d.exe_2745]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_d\dblarray1_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray1_cs_do.exe_2746]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_do\dblarray1_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray1_cs_r.exe_2747]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_r\dblarray1_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray1_cs_ro.exe_2748]
+RelativePath=JIT\Methodical\doublearray\dblarray1_cs_ro\dblarray1_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray2_cs_d.exe_2749]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_d\dblarray2_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray2_cs_do.exe_2750]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_do\dblarray2_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray2_cs_r.exe_2751]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_r\dblarray2_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray2_cs_ro.exe_2752]
+RelativePath=JIT\Methodical\doublearray\dblarray2_cs_ro\dblarray2_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray2_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray3_cs_d.exe_2753]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_d\dblarray3_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray3_cs_do.exe_2754]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_do\dblarray3_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray3_cs_r.exe_2755]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_r\dblarray3_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray3_cs_ro.exe_2756]
+RelativePath=JIT\Methodical\doublearray\dblarray3_cs_ro\dblarray3_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray3_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray4_cs_d.exe_2757]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_d\dblarray4_cs_d.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray4_cs_do.exe_2758]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_do\dblarray4_cs_do.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray4_cs_r.exe_2759]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_r\dblarray4_cs_r.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dblarray4_cs_ro.exe_2760]
+RelativePath=JIT\Methodical\doublearray\dblarray4_cs_ro\dblarray4_cs_ro.exe
+WorkingDir=JIT\Methodical\doublearray\dblarray4_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bug_445388.exe_2761]
+RelativePath=JIT\Methodical\dynamic_methods\bug_445388\bug_445388.exe
+WorkingDir=JIT\Methodical\dynamic_methods\bug_445388
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[emptyfinally_d.exe_2762]
+RelativePath=JIT\Methodical\eh\basics\emptyfinally_d\emptyfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\emptyfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[emptyfinally_r.exe_2763]
+RelativePath=JIT\Methodical\eh\basics\emptyfinally_r\emptyfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\emptyfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[multihandler_d.exe_2764]
+RelativePath=JIT\Methodical\eh\basics\multihandler_d\multihandler_d.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[multihandler_do.exe_2765]
+RelativePath=JIT\Methodical\eh\basics\multihandler_do\multihandler_do.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[multihandler_r.exe_2766]
+RelativePath=JIT\Methodical\eh\basics\multihandler_r\multihandler_r.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[multihandler_ro.exe_2767]
+RelativePath=JIT\Methodical\eh\basics\multihandler_ro\multihandler_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\multihandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_d.exe_2768]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_d\throwincatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_do.exe_2769]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_do\throwincatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_r.exe_2770]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_r\throwincatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_ro.exe_2771]
+RelativePath=JIT\Methodical\eh\basics\throwincatch_ro\throwincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinclassconstructor_d.exe_2772]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_d\throwinclassconstructor_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinclassconstructor_do.exe_2773]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_do\throwinclassconstructor_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinclassconstructor_r.exe_2774]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_r\throwinclassconstructor_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinclassconstructor_ro.exe_2775]
+RelativePath=JIT\Methodical\eh\basics\throwinclassconstructor_ro\throwinclassconstructor_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinclassconstructor_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinexcept_d.exe_2776]
+RelativePath=JIT\Methodical\eh\basics\throwinexcept_d\throwinexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinexcept_r.exe_2777]
+RelativePath=JIT\Methodical\eh\basics\throwinexcept_r\throwinexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfault_d.exe_2778]
+RelativePath=JIT\Methodical\eh\basics\throwinfault_d\throwinfault_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfault_r.exe_2779]
+RelativePath=JIT\Methodical\eh\basics\throwinfault_r\throwinfault_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfilter_d.exe_2780]
+RelativePath=JIT\Methodical\eh\basics\throwinfilter_d\throwinfilter_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfilter_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfilter_r.exe_2781]
+RelativePath=JIT\Methodical\eh\basics\throwinfilter_r\throwinfilter_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfilter_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpathfn_d.exe_2782]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d\throwinfinallyerrpathfn_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpathfn_do.exe_2783]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do\throwinfinallyerrpathfn_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpathfn_r.exe_2784]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r\throwinfinallyerrpathfn_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpathfn_ro.exe_2785]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro\throwinfinallyerrpathfn_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpathfn_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpath_d.exe_2786]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_d\throwinfinallyerrpath_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpath_do.exe_2787]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_do\throwinfinallyerrpath_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpath_r.exe_2788]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_r\throwinfinallyerrpath_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyerrpath_ro.exe_2789]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro\throwinfinallyerrpath_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyerrpath_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter1_d.exe_2790]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d\throwinfinallyintryfilter1_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter1_r.exe_2791]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r\throwinfinallyintryfilter1_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter2_d.exe_2792]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d\throwinfinallyintryfilter2_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter2_r.exe_2793]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r\throwinfinallyintryfilter2_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter3_d.exe_2794]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d\throwinfinallyintryfilter3_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyintryfilter3_r.exe_2795]
+RelativePath=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r\throwinfinallyintryfilter3_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinallyintryfilter3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_d.exe_2796]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_d\throwinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_do.exe_2797]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_do\throwinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_r.exe_2798]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_r\throwinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_ro.exe_2799]
+RelativePath=JIT\Methodical\eh\basics\throwinfinally_ro\throwinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwisfirstinstruction_d.exe_2800]
+RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_d\throwisfirstinstruction_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwisfirstinstruction_r.exe_2801]
+RelativePath=JIT\Methodical\eh\basics\throwisfirstinstruction_r\throwisfirstinstruction_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwisfirstinstruction_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwoutside_d.exe_2802]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_d\throwoutside_d.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwoutside_do.exe_2803]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_do\throwoutside_do.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwoutside_r.exe_2804]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_r\throwoutside_r.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwoutside_ro.exe_2805]
+RelativePath=JIT\Methodical\eh\basics\throwoutside_ro\throwoutside_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\throwoutside_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchtrycatch_d.exe_2806]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_d\trycatchtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchtrycatch_do.exe_2807]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_do\trycatchtrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchtrycatch_r.exe_2808]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_r\trycatchtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchtrycatch_ro.exe_2809]
+RelativePath=JIT\Methodical\eh\basics\trycatchtrycatch_ro\trycatchtrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatchtrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatch_d.exe_2810]
+RelativePath=JIT\Methodical\eh\basics\trycatch_d\trycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatch_do.exe_2811]
+RelativePath=JIT\Methodical\eh\basics\trycatch_do\trycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatch_r.exe_2812]
+RelativePath=JIT\Methodical\eh\basics\trycatch_r\trycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatch_ro.exe_2813]
+RelativePath=JIT\Methodical\eh\basics\trycatch_ro\trycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryexcept_d.exe_2814]
+RelativePath=JIT\Methodical\eh\basics\tryexcept_d\tryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryexcept_r.exe_2815]
+RelativePath=JIT\Methodical\eh\basics\tryexcept_r\tryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfaulttrycatchfn_d.exe_2816]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d\tryfaulttrycatchfn_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfaulttrycatchfn_r.exe_2817]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r\tryfaulttrycatchfn_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatchfn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfaulttrycatch_d.exe_2818]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_d\tryfaulttrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfaulttrycatch_r.exe_2819]
+RelativePath=JIT\Methodical\eh\basics\tryfaulttrycatch_r\tryfaulttrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfaulttrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfault_d.exe_2820]
+RelativePath=JIT\Methodical\eh\basics\tryfault_d\tryfault_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfault_r.exe_2821]
+RelativePath=JIT\Methodical\eh\basics\tryfault_r\tryfault_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytrycatch_d.exe_2822]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_d\tryfinallytrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytrycatch_do.exe_2823]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_do\tryfinallytrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytrycatch_r.exe_2824]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_r\tryfinallytrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytrycatch_ro.exe_2825]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytrycatch_ro\tryfinallytrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytryfinally_d.exe_2826]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_d\tryfinallytryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytryfinally_do.exe_2827]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_do\tryfinallytryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytryfinally_r.exe_2828]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_r\tryfinallytryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallytryfinally_ro.exe_2829]
+RelativePath=JIT\Methodical\eh\basics\tryfinallytryfinally_ro\tryfinallytryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallytryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallywith2endfinally_d.exe_2830]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d\tryfinallywith2endfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallywith2endfinally_r.exe_2831]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r\tryfinallywith2endfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2endfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallywith2reachableendfinally_d.exe_2832]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d\tryfinallywith2reachableendfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallywith2reachableendfinally_r.exe_2833]
+RelativePath=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r\tryfinallywith2reachableendfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinallywith2reachableendfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinally_d.exe_2834]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_d\tryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinally_do.exe_2835]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_do\tryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinally_r.exe_2836]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_r\tryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinally_ro.exe_2837]
+RelativePath=JIT\Methodical\eh\basics\tryfinally_ro\tryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\tryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatchfinally_d.exe_2838]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_d\trythrowcatchfinally_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatchfinally_do.exe_2839]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_do\trythrowcatchfinally_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatchfinally_r.exe_2840]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_r\trythrowcatchfinally_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatchfinally_ro.exe_2841]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatchfinally_ro\trythrowcatchfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatchfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatch_d.exe_2842]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_d\trythrowcatch_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatch_do.exe_2843]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_do\trythrowcatch_do.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatch_r.exe_2844]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_r\trythrowcatch_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowcatch_ro.exe_2845]
+RelativePath=JIT\Methodical\eh\basics\trythrowcatch_ro\trythrowcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowexcept_d.exe_2846]
+RelativePath=JIT\Methodical\eh\basics\trythrowexcept_d\trythrowexcept_d.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trythrowexcept_r.exe_2847]
+RelativePath=JIT\Methodical\eh\basics\trythrowexcept_r\trythrowexcept_r.exe
+WorkingDir=JIT\Methodical\eh\basics\trythrowexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unsafe_d.exe_2848]
+RelativePath=JIT\Methodical\eh\cs\unsafe_d\unsafe_d.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unsafe_do.exe_2849]
+RelativePath=JIT\Methodical\eh\cs\unsafe_do\unsafe_do.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unsafe_r.exe_2850]
+RelativePath=JIT\Methodical\eh\cs\unsafe_r\unsafe_r.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[unsafe_ro.exe_2851]
+RelativePath=JIT\Methodical\eh\cs\unsafe_ro\unsafe_ro.exe
+WorkingDir=JIT\Methodical\eh\cs\unsafe_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeaftercatch_d.exe_2852]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_d\badcodeaftercatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeaftercatch_r.exe_2853]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftercatch_r\badcodeaftercatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfault_d.exe_2854]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_d\badcodeafterfault_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfault_r.exe_2855]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfault_r\badcodeafterfault_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfilter_d.exe_2856]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_d\badcodeafterfilter_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfilter_r.exe_2857]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfilter_r\badcodeafterfilter_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfilter_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfinally_d.exe_2858]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_d\badcodeafterfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeafterfinally_r.exe_2859]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeafterfinally_r\badcodeafterfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeafterfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeaftertry_d.exe_2860]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_d\badcodeaftertry_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeaftertry_r.exe_2861]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeaftertry_r\badcodeaftertry_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeaftertry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeinsidefinally_d.exe_2862]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d\badcodeinsidefinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcodeinsidefinally_r.exe_2863]
+RelativePath=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r\badcodeinsidefinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\badcodeinsidefinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoverendfinally_d.exe_2864]
+RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_d\branchoverendfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoverendfinally_r.exe_2865]
+RelativePath=JIT\Methodical\eh\deadcode\branchoverendfinally_r\branchoverendfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\branchoverendfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadcodeincatch_d.exe_2866]
+RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_d\deadcodeincatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadcodeincatch_r.exe_2867]
+RelativePath=JIT\Methodical\eh\deadcode\deadcodeincatch_r\deadcodeincatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadcodeincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadEHregionacrossBB_d.exe_2868]
+RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d\deadEHregionacrossBB_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadEHregionacrossBB_r.exe_2869]
+RelativePath=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r\deadEHregionacrossBB_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadEHregionacrossBB_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadnonlocalexit_d.exe_2870]
+RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_d\deadnonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadnonlocalexit_r.exe_2871]
+RelativePath=JIT\Methodical\eh\deadcode\deadnonlocalexit_r\deadnonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadnonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadoponerrorinfunclet_d.exe_2872]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d\deadoponerrorinfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadoponerrorinfunclet_r.exe_2873]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r\deadoponerrorinfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerrorinfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadoponerror_d.exe_2874]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_d\deadoponerror_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadoponerror_r.exe_2875]
+RelativePath=JIT\Methodical\eh\deadcode\deadoponerror_r\deadoponerror_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadoponerror_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadrgninfunclet_d.exe_2876]
+RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_d\deadrgninfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadrgninfunclet_r.exe_2877]
+RelativePath=JIT\Methodical\eh\deadcode\deadrgninfunclet_r\deadrgninfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadrgninfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtrycatch_d.exe_2878]
+RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_d\deadtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtrycatch_r.exe_2879]
+RelativePath=JIT\Methodical\eh\deadcode\deadtrycatch_r\deadtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtryfinallythrow_d.exe_2880]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d\deadtryfinallythrow_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtryfinallythrow_r.exe_2881]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r\deadtryfinallythrow_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinallythrow_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtryfinally_d.exe_2882]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_d\deadtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deadtryfinally_r.exe_2883]
+RelativePath=JIT\Methodical\eh\deadcode\deadtryfinally_r\deadtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\deadtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[endfinallyinloop_d.exe_2884]
+RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_d\endfinallyinloop_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[endfinallyinloop_r.exe_2885]
+RelativePath=JIT\Methodical\eh\deadcode\endfinallyinloop_r\endfinallyinloop_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\endfinallyinloop_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopstrswitchgoto_d.exe_2886]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d\loopstrswitchgoto_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopstrswitchgoto_do.exe_2887]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do\loopstrswitchgoto_do.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopstrswitchgoto_r.exe_2888]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r\loopstrswitchgoto_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopstrswitchgoto_ro.exe_2889]
+RelativePath=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro\loopstrswitchgoto_ro.exe
+WorkingDir=JIT\Methodical\eh\deadcode\loopstrswitchgoto_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[severaldeadehregions_d.exe_2890]
+RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_d\severaldeadehregions_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[severaldeadehregions_r.exe_2891]
+RelativePath=JIT\Methodical\eh\deadcode\severaldeadehregions_r\severaldeadehregions_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severaldeadehregions_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[severalnesteddeadehregions_d.exe_2892]
+RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d\severalnesteddeadehregions_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[severalnesteddeadehregions_r.exe_2893]
+RelativePath=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r\severalnesteddeadehregions_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\severalnesteddeadehregions_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpledeadehregion_d.exe_2894]
+RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_d\simpledeadehregion_d.exe
+WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simpledeadehregion_r.exe_2895]
+RelativePath=JIT\Methodical\eh\deadcode\simpledeadehregion_r\simpledeadehregion_r.exe
+WorkingDir=JIT\Methodical\eh\deadcode\simpledeadehregion_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[backwardleave_d.exe_2896]
+RelativePath=JIT\Methodical\eh\disconnected\backwardleave_d\backwardleave_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[backwardleave_r.exe_2897]
+RelativePath=JIT\Methodical\eh\disconnected\backwardleave_r\backwardleave_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\backwardleave_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchbeforetrybody_d.exe_2898]
+RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_d\catchbeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchbeforetrybody_r.exe_2899]
+RelativePath=JIT\Methodical\eh\disconnected\catchbeforetrybody_r\catchbeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchbeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchtryintryfinally_d.exe_2900]
+RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_d\catchtryintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchtryintryfinally_r.exe_2901]
+RelativePath=JIT\Methodical\eh\disconnected\catchtryintryfinally_r\catchtryintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\catchtryintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[faultbeforetrybody_d.exe_2902]
+RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_d\faultbeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[faultbeforetrybody_r.exe_2903]
+RelativePath=JIT\Methodical\eh\disconnected\faultbeforetrybody_r\faultbeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\faultbeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finallybeforetrybody_d.exe_2904]
+RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_d\finallybeforetrybody_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finallybeforetrybody_r.exe_2905]
+RelativePath=JIT\Methodical\eh\disconnected\finallybeforetrybody_r\finallybeforetrybody_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallybeforetrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finallytryintryfinally_d.exe_2906]
+RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_d\finallytryintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finallytryintryfinally_r.exe_2907]
+RelativePath=JIT\Methodical\eh\disconnected\finallytryintryfinally_r\finallytryintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\finallytryintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[reversedhandlers_d.exe_2908]
+RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_d\reversedhandlers_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[reversedhandlers_r.exe_2909]
+RelativePath=JIT\Methodical\eh\disconnected\reversedhandlers_r\reversedhandlers_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedhandlers_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[reversedtryblock_d.exe_2910]
+RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_d\reversedtryblock_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[reversedtryblock_r.exe_2911]
+RelativePath=JIT\Methodical\eh\disconnected\reversedtryblock_r\reversedtryblock_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\reversedtryblock_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sehhandlerbeforetry_d.exe_2912]
+RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d\sehhandlerbeforetry_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sehhandlerbeforetry_r.exe_2913]
+RelativePath=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r\sehhandlerbeforetry_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\sehhandlerbeforetry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[testeit_d.exe_2914]
+RelativePath=JIT\Methodical\eh\disconnected\testeit_d\testeit_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\testeit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[testeit_r.exe_2915]
+RelativePath=JIT\Methodical\eh\disconnected\testeit_r\testeit_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\testeit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trybodyinbetweencatchhandlers_d.exe_2916]
+RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d\trybodyinbetweencatchhandlers_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trybodyinbetweencatchhandlers_r.exe_2917]
+RelativePath=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r\trybodyinbetweencatchhandlers_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\trybodyinbetweencatchhandlers_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyincatchtry_d.exe_2918]
+RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d\tryfinallyincatchtry_d.exe
+WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyincatchtry_r.exe_2919]
+RelativePath=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r\tryfinallyincatchtry_r.exe
+WorkingDir=JIT\Methodical\eh\disconnected\tryfinallyincatchtry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_cs_d.exe_2920]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d\catchrettoinnertry_cs_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_cs_do.exe_2921]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do\catchrettoinnertry_cs_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_cs_r.exe_2922]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r\catchrettoinnertry_cs_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_cs_ro.exe_2923]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro\catchrettoinnertry_cs_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_d.exe_2924]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d\catchrettoinnertry_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_do.exe_2925]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_do\catchrettoinnertry_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_r.exe_2926]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r\catchrettoinnertry_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchrettoinnertry_ro.exe_2927]
+RelativePath=JIT\Methodical\eh\finallyexec\catchrettoinnertry_ro\catchrettoinnertry_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\catchrettoinnertry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localgotoinahandler_d.exe_2928]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_d\localgotoinahandler_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localgotoinahandler_do.exe_2929]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_do\localgotoinahandler_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localgotoinahandler_r.exe_2930]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_r\localgotoinahandler_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localgotoinahandler_ro.exe_2931]
+RelativePath=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro\localgotoinahandler_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\localgotoinahandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopinfinally_d.exe_2932]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_d\loopinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopinfinally_do.exe_2933]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_do\loopinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopinfinally_r.exe_2934]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_r\loopinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopinfinally_ro.exe_2935]
+RelativePath=JIT\Methodical\eh\finallyexec\loopinfinally_ro\loopinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\loopinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedfinallycall_d.exe_2936]
+RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_d\nestedfinallycall_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedfinallycall_r.exe_2937]
+RelativePath=JIT\Methodical\eh\finallyexec\nestedfinallycall_r\nestedfinallycall_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nestedfinallycall_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittobeginningoftry_d.exe_2938]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d\nonlocalexittobeginningoftry_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittobeginningoftry_do.exe_2939]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do\nonlocalexittobeginningoftry_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittobeginningoftry_r.exe_2940]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r\nonlocalexittobeginningoftry_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittobeginningoftry_ro.exe_2941]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro\nonlocalexittobeginningoftry_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittobeginningoftry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittonestedsibling_d.exe_2942]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d\nonlocalexittonestedsibling_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexittonestedsibling_r.exe_2943]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r\nonlocalexittonestedsibling_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalexittonestedsibling_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_d.exe_2944]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d\nonlocalgotoinatryblockinahandler_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_do.exe_2945]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do\nonlocalgotoinatryblockinahandler_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_r.exe_2946]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r\nonlocalgotoinatryblockinahandler_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalgotoinatryblockinahandler_ro.exe_2947]
+RelativePath=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro\nonlocalgotoinatryblockinahandler_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\nonlocalgotoinatryblockinahandler_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_d.exe_2948]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d\simplenonlocalexitnestedintrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_do.exe_2949]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do\simplenonlocalexitnestedintrycatch_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_r.exe_2950]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r\simplenonlocalexitnestedintrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexitnestedintrycatch_ro.exe_2951]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro\simplenonlocalexitnestedintrycatch_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexitnestedintrycatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexit_d.exe_2952]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d\simplenonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexit_do.exe_2953]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do\simplenonlocalexit_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexit_r.exe_2954]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r\simplenonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplenonlocalexit_ro.exe_2955]
+RelativePath=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro\simplenonlocalexit_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\simplenonlocalexit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchincatch_d.exe_2956]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_d\switchincatch_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchincatch_do.exe_2957]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_do\switchincatch_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchincatch_r.exe_2958]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_r\switchincatch_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchincatch_ro.exe_2959]
+RelativePath=JIT\Methodical\eh\finallyexec\switchincatch_ro\switchincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\switchincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_d.exe_2960]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d\tryCatchFinallyThrow_nonlocalexit1_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_do.exe_2961]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do\tryCatchFinallyThrow_nonlocalexit1_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_r.exe_2962]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r\tryCatchFinallyThrow_nonlocalexit1_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit1_ro.exe_2963]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro\tryCatchFinallyThrow_nonlocalexit1_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit1_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_d.exe_2964]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d\tryCatchFinallyThrow_nonlocalexit2_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_do.exe_2965]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do\tryCatchFinallyThrow_nonlocalexit2_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_r.exe_2966]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r\tryCatchFinallyThrow_nonlocalexit2_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit2_ro.exe_2967]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro\tryCatchFinallyThrow_nonlocalexit2_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_d.exe_2968]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d\tryCatchFinallyThrow_nonlocalexit3_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_do.exe_2969]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do\tryCatchFinallyThrow_nonlocalexit3_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_r.exe_2970]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r\tryCatchFinallyThrow_nonlocalexit3_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit3_ro.exe_2971]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro\tryCatchFinallyThrow_nonlocalexit3_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_d.exe_2972]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d\tryCatchFinallyThrow_nonlocalexit4_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_do.exe_2973]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do\tryCatchFinallyThrow_nonlocalexit4_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_r.exe_2974]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r\tryCatchFinallyThrow_nonlocalexit4_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryCatchFinallyThrow_nonlocalexit4_ro.exe_2975]
+RelativePath=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro\tryCatchFinallyThrow_nonlocalexit4_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryCatchFinallyThrow_nonlocalexit4_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_d.exe_2976]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d\tryfinallythrow_nonlocalexit_d.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_do.exe_2977]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do\tryfinallythrow_nonlocalexit_do.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_r.exe_2978]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r\tryfinallythrow_nonlocalexit_r.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallythrow_nonlocalexit_ro.exe_2979]
+RelativePath=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro\tryfinallythrow_nonlocalexit_ro.exe
+WorkingDir=JIT\Methodical\eh\finallyexec\tryfinallythrow_nonlocalexit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_d.exe_2980]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_d\throwincatch_d.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_do.exe_2981]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_do\throwincatch_do.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_r.exe_2982]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_r\throwincatch_r.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincatch_ro.exe_2983]
+RelativePath=JIT\Methodical\eh\generics\throwincatch_ro\throwincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\throwincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchnestedtype_d.exe_2984]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_d\trycatchnestedtype_d.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchnestedtype_do.exe_2985]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_do\trycatchnestedtype_do.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchnestedtype_r.exe_2986]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_r\trycatchnestedtype_r.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchnestedtype_ro.exe_2987]
+RelativePath=JIT\Methodical\eh\generics\trycatchnestedtype_ro\trycatchnestedtype_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchnestedtype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchsimpletype_d.exe_2988]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_d\trycatchsimpletype_d.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchsimpletype_do.exe_2989]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_do\trycatchsimpletype_do.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchsimpletype_r.exe_2990]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_r\trycatchsimpletype_r.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchsimpletype_ro.exe_2991]
+RelativePath=JIT\Methodical\eh\generics\trycatchsimpletype_ro\trycatchsimpletype_ro.exe
+WorkingDir=JIT\Methodical\eh\generics\trycatchsimpletype_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ehso.exe_2992]
+RelativePath=JIT\Methodical\eh\interactions\ehso\ehso.exe
+WorkingDir=JIT\Methodical\eh\interactions\ehso
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcincatch_d.exe_2993]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_d\gcincatch_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcincatch_do.exe_2994]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_do\gcincatch_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcincatch_r.exe_2995]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_r\gcincatch_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcincatch_ro.exe_2996]
+RelativePath=JIT\Methodical\eh\interactions\gcincatch_ro\gcincatch_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\gcincatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rangecheckinfinally_d.exe_2997]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_d\rangecheckinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rangecheckinfinally_do.exe_2998]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_do\rangecheckinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rangecheckinfinally_r.exe_2999]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_r\rangecheckinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rangecheckinfinally_ro.exe_3000]
+RelativePath=JIT\Methodical\eh\interactions\rangecheckinfinally_ro\rangecheckinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\rangecheckinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[strswitchfinal_d.exe_3001]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_d\strswitchfinal_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[strswitchfinal_do.exe_3002]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_do\strswitchfinal_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[strswitchfinal_r.exe_3003]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_r\strswitchfinal_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[strswitchfinal_ro.exe_3004]
+RelativePath=JIT\Methodical\eh\interactions\strswitchfinal_ro\strswitchfinal_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\strswitchfinal_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchinfinally_d.exe_3005]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_d\switchinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchinfinally_do.exe_3006]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_do\switchinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchinfinally_r.exe_3007]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_r\switchinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switchinfinally_ro.exe_3008]
+RelativePath=JIT\Methodical\eh\interactions\switchinfinally_ro\switchinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\interactions\switchinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw1dimarray_d.exe_3009]
+RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_d\throw1dimarray_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw1dimarray_r.exe_3010]
+RelativePath=JIT\Methodical\eh\interactions\throw1dimarray_r\throw1dimarray_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw1dimarray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw2dimarray_d.exe_3011]
+RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_d\throw2dimarray_d.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throw2dimarray_r.exe_3012]
+RelativePath=JIT\Methodical\eh\interactions\throw2dimarray_r\throw2dimarray_r.exe
+WorkingDir=JIT\Methodical\eh\interactions\throw2dimarray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatilefromfinally.exe_3013]
+RelativePath=JIT\Methodical\eh\interactions\volatilefromfinally\volatilefromfinally.exe
+WorkingDir=JIT\Methodical\eh\interactions\volatilefromfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[2branchesoutoftry_d.exe_3014]
+RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_d\2branchesoutoftry_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[2branchesoutoftry_r.exe_3015]
+RelativePath=JIT\Methodical\eh\leaves\2branchesoutoftry_r\2branchesoutoftry_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\2branchesoutoftry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[backwardleaveincatch_d.exe_3016]
+RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_d\backwardleaveincatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[backwardleaveincatch_r.exe_3017]
+RelativePath=JIT\Methodical\eh\leaves\backwardleaveincatch_r\backwardleaveincatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\backwardleaveincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchbackwardswithcatch_d.exe_3018]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d\branchbackwardswithcatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchbackwardswithcatch_r.exe_3019]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r\branchbackwardswithcatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchbackwardswithfinally_d.exe_3020]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d\branchbackwardswithfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchbackwardswithfinally_r.exe_3021]
+RelativePath=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r\branchbackwardswithfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchbackwardswithfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoutofnestedtryfinally_d.exe_3022]
+RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d\branchoutofnestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoutofnestedtryfinally_r.exe_3023]
+RelativePath=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r\branchoutofnestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutofnestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoutoftryfinally_d.exe_3024]
+RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_d\branchoutoftryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[branchoutoftryfinally_r.exe_3025]
+RelativePath=JIT\Methodical\eh\leaves\branchoutoftryfinally_r\branchoutoftryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\branchoutoftryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchretnonlocalexitinfunclet_d.exe_3026]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d\catchretnonlocalexitinfunclet_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchretnonlocalexitinfunclet_do.exe_3027]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do\catchretnonlocalexitinfunclet_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchretnonlocalexitinfunclet_r.exe_3028]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r\catchretnonlocalexitinfunclet_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchretnonlocalexitinfunclet_ro.exe_3029]
+RelativePath=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro\catchretnonlocalexitinfunclet_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\catchretnonlocalexitinfunclet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[forwardleaveincatch_d.exe_3030]
+RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_d\forwardleaveincatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[forwardleaveincatch_r.exe_3031]
+RelativePath=JIT\Methodical\eh\leaves\forwardleaveincatch_r\forwardleaveincatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\forwardleaveincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[labelbeforefinally_d.exe_3032]
+RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_d\labelbeforefinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[labelbeforefinally_r.exe_3033]
+RelativePath=JIT\Methodical\eh\leaves\labelbeforefinally_r\labelbeforefinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeforefinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[labelbeginningfinally_d.exe_3034]
+RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_d\labelbeginningfinally_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[labelbeginningfinally_r.exe_3035]
+RelativePath=JIT\Methodical\eh\leaves\labelbeginningfinally_r\labelbeginningfinally_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\labelbeginningfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[leaveinsameregion_d.exe_3036]
+RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_d\leaveinsameregion_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[leaveinsameregion_r.exe_3037]
+RelativePath=JIT\Methodical\eh\leaves\leaveinsameregion_r\leaveinsameregion_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveinsameregion_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[leaveintotrybody_d.exe_3038]
+RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_d\leaveintotrybody_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[leaveintotrybody_r.exe_3039]
+RelativePath=JIT\Methodical\eh\leaves\leaveintotrybody_r\leaveintotrybody_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\leaveintotrybody_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitfromnestedcatch_d.exe_3040]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d\nonlocalexitfromnestedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitfromnestedcatch_do.exe_3041]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do\nonlocalexitfromnestedcatch_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitfromnestedcatch_r.exe_3042]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r\nonlocalexitfromnestedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nonlocalexitfromnestedcatch_ro.exe_3043]
+RelativePath=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro\nonlocalexitfromnestedcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\nonlocalexitfromnestedcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[oponerror_d.exe_3044]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_d\oponerror_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[oponerror_do.exe_3045]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_do\oponerror_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[oponerror_r.exe_3046]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_r\oponerror_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[oponerror_ro.exe_3047]
+RelativePath=JIT\Methodical\eh\leaves\oponerror_ro\oponerror_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\oponerror_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyintrycatchwithleaveintotry_d.exe_3048]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d\tryfinallyintrycatchwithleaveintotry_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyintrycatchwithleaveintotry_r.exe_3049]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r\tryfinallyintrycatchwithleaveintotry_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyintrycatchwithleaveintotry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyloop_d.exe_3050]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_d\tryfinallyloop_d.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyloop_do.exe_3051]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_do\tryfinallyloop_do.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyloop_r.exe_3052]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_r\tryfinallyloop_r.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tryfinallyloop_ro.exe_3053]
+RelativePath=JIT\Methodical\eh\leaves\tryfinallyloop_ro\tryfinallyloop_ro.exe
+WorkingDir=JIT\Methodical\eh\leaves\tryfinallyloop_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchfiltercatch_d.exe_3054]
+RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d\catchfiltercatch_d.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[catchfiltercatch_r.exe_3055]
+RelativePath=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r\catchfiltercatch_r.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\catchfiltercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filterfiltercatchcatch_d.exe_3056]
+RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d\filterfiltercatchcatch_d.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filterfiltercatchcatch_r.exe_3057]
+RelativePath=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r\filterfiltercatchcatch_r.exe
+WorkingDir=JIT\Methodical\eh\mixedhandler\filterfiltercatchcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_d.exe_3058]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d\cascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_r.exe_3059]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r\cascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedexcept_d.exe_3060]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d\cascadedexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedexcept_r.exe_3061]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r\cascadedexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\cascadedexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedcatchnofin_d.exe_3062]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d\throwincascadedcatchnofin_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedcatchnofin_r.exe_3063]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r\throwincascadedcatchnofin_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatchnofin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedcatch_d.exe_3064]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d\throwincascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedcatch_r.exe_3065]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r\throwincascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedexceptnofin_d.exe_3066]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d\throwincascadedexceptnofin_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedexceptnofin_r.exe_3067]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r\throwincascadedexceptnofin_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexceptnofin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedexcept_d.exe_3068]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d\throwincascadedexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwincascadedexcept_r.exe_3069]
+RelativePath=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r\throwincascadedexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\cascadedcatchret\throwincascadedexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_d.exe_3070]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_d\cascadedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_do.exe_3071]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_do\cascadedcatch_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_r.exe_3072]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_r\cascadedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cascadedcatch_ro.exe_3073]
+RelativePath=JIT\Methodical\eh\nested\general\cascadedcatch_ro\cascadedcatch_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\cascadedcatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localvarincatch_d.exe_3074]
+RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_d\localvarincatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[localvarincatch_r.exe_3075]
+RelativePath=JIT\Methodical\eh\nested\general\localvarincatch_r\localvarincatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\localvarincatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[methodthrowsinfinally_d.exe_3076]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d\methodthrowsinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[methodthrowsinfinally_do.exe_3077]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do\methodthrowsinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[methodthrowsinfinally_r.exe_3078]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r\methodthrowsinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[methodthrowsinfinally_ro.exe_3079]
+RelativePath=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro\methodthrowsinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\methodthrowsinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowincatchnestedinfinally_d.exe_3080]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d\rethrowincatchnestedinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowincatchnestedinfinally_do.exe_3081]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do\rethrowincatchnestedinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowincatchnestedinfinally_r.exe_3082]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r\rethrowincatchnestedinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowincatchnestedinfinally_ro.exe_3083]
+RelativePath=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro\rethrowincatchnestedinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\rethrowincatchnestedinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_d.exe_3084]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d\throwinfinallynestedintry_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_do.exe_3085]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do\throwinfinallynestedintry_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_r.exe_3086]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r\throwinfinallynestedintry_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_ro.exe_3087]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro\throwinfinallynestedintry_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinallynestedintry_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_d.exe_3088]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_d\throwinfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_do.exe_3089]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_do\throwinfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_r.exe_3090]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_r\throwinfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_ro.exe_3091]
+RelativePath=JIT\Methodical\eh\nested\general\throwinfinally_ro\throwinfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedcatch_d.exe_3092]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_d\throwinnestedcatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedcatch_r.exe_3093]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedcatch_r\throwinnestedcatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedcatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedfinally_d.exe_3094]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_d\throwinnestedfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedfinally_do.exe_3095]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_do\throwinnestedfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedfinally_r.exe_3096]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_r\throwinnestedfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedfinally_ro.exe_3097]
+RelativePath=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro\throwinnestedfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\throwinnestedfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchintryfinally_d.exe_3098]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_d\trycatchintryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchintryfinally_do.exe_3099]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_do\trycatchintryfinally_do.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchintryfinally_r.exe_3100]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_r\trycatchintryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatchintryfinally_ro.exe_3101]
+RelativePath=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro\trycatchintryfinally_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\general\trycatchintryfinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtrycatch_d.exe_3102]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d\nestedtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtrycatch_r.exe_3103]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r\nestedtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryexcept_d.exe_3104]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d\nestedtryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryexcept_r.exe_3105]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r\nestedtryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryfault_d.exe_3106]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d\nestedtryfault_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryfault_r.exe_3107]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r\nestedtryfault_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryfinally_d.exe_3108]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d\nestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nestedtryfinally_r.exe_3109]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r\nestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\nestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtrycatch_d.exe_3110]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d\throwinnestedtrycatch_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtrycatch_r.exe_3111]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r\throwinnestedtrycatch_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtrycatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryexcept_d.exe_3112]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d\throwinnestedtryexcept_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryexcept_r.exe_3113]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r\throwinnestedtryexcept_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryexcept_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryfault_d.exe_3114]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d\throwinnestedtryfault_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryfault_r.exe_3115]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r\throwinnestedtryfault_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfault_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryfinally_d.exe_3116]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d\throwinnestedtryfinally_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinnestedtryfinally_r.exe_3117]
+RelativePath=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r\throwinnestedtryfinally_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nestedtry\throwinnestedtryfinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_30_d.exe_3118]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d\throwinfinallynestedintry_30_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_30_do.exe_3119]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do\throwinfinallynestedintry_30_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_30_r.exe_3120]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r\throwinfinallynestedintry_30_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallynestedintry_30_ro.exe_3121]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro\throwinfinallynestedintry_30_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallynestedintry_30_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyrecursive_20_d.exe_3122]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d\throwinfinallyrecursive_20_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyrecursive_20_do.exe_3123]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do\throwinfinallyrecursive_20_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyrecursive_20_r.exe_3124]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r\throwinfinallyrecursive_20_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinallyrecursive_20_ro.exe_3125]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro\throwinfinallyrecursive_20_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinallyrecursive_20_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_50_d.exe_3126]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d\throwinfinally_50_d.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_50_do.exe_3127]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do\throwinfinally_50_do.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_50_r.exe_3128]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r\throwinfinally_50_r.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwinfinally_50_ro.exe_3129]
+RelativePath=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro\throwinfinally_50_ro.exe
+WorkingDir=JIT\Methodical\eh\nested\nonlocalexit\throwinfinally_50_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[outermostFinally.exe_3130]
+RelativePath=JIT\Methodical\eh\regress\asurt\122239\outermostFinally\outermostFinally.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\122239\outermostFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[innerFinally_d.exe_3131]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d\innerFinally_d.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[innerFinally_do.exe_3132]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do\innerFinally_do.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[innerFinally_r.exe_3133]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r\innerFinally_r.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[innerFinally_ro.exe_3134]
+RelativePath=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro\innerFinally_ro.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\140713\innerFinally_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uncaughtException_d.exe_3135]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d\uncaughtException_d.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uncaughtException_do.exe_3136]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do\uncaughtException_do.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uncaughtException_r.exe_3137]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r\uncaughtException_r.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uncaughtException_ro.exe_3138]
+RelativePath=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro\uncaughtException_ro.exe
+WorkingDir=JIT\Methodical\eh\regress\asurt\141358\uncaughtException_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baduwinfo.exe_3139]
+RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo\baduwinfo.exe
+WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[baduwinfo1.exe_3140]
+RelativePath=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1\baduwinfo1.exe
+WorkingDir=JIT\Methodical\eh\regress\vswhidbey\148190\baduwinfo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyaftercatch_d.exe_3141]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d\rethrowinfinallyaftercatch_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyaftercatch_do.exe_3142]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do\rethrowinfinallyaftercatch_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyaftercatch_r.exe_3143]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r\rethrowinfinallyaftercatch_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyaftercatch_ro.exe_3144]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro\rethrowinfinallyaftercatch_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyaftercatch_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyinsidecatch_d.exe_3145]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d\rethrowinfinallyinsidecatch_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowinfinallyinsidecatch_r.exe_3146]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r\rethrowinfinallyinsidecatch_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowinfinallyinsidecatch_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_d.exe_3147]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d\rethrowwithhandlerscatchingbase_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_do.exe_3148]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do\rethrowwithhandlerscatchingbase_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_r.exe_3149]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r\rethrowwithhandlerscatchingbase_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[rethrowwithhandlerscatchingbase_ro.exe_3150]
+RelativePath=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro\rethrowwithhandlerscatchingbase_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\rethrowwithhandlerscatchingbase_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samerethrowtwice_d.exe_3151]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_d\samerethrowtwice_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samerethrowtwice_do.exe_3152]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_do\samerethrowtwice_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samerethrowtwice_r.exe_3153]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_r\samerethrowtwice_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samerethrowtwice_ro.exe_3154]
+RelativePath=JIT\Methodical\eh\rethrow\samerethrowtwice_ro\samerethrowtwice_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samerethrowtwice_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samethrowtwice_d.exe_3155]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_d\samethrowtwice_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samethrowtwice_do.exe_3156]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_do\samethrowtwice_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samethrowtwice_r.exe_3157]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_r\samethrowtwice_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[samethrowtwice_ro.exe_3158]
+RelativePath=JIT\Methodical\eh\rethrow\samethrowtwice_ro\samethrowtwice_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\samethrowtwice_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplerethrow_d.exe_3159]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_d\simplerethrow_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplerethrow_do.exe_3160]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_do\simplerethrow_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplerethrow_r.exe_3161]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_r\simplerethrow_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[simplerethrow_ro.exe_3162]
+RelativePath=JIT\Methodical\eh\rethrow\simplerethrow_ro\simplerethrow_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\simplerethrow_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwwithhandlerscatchingbase_d.exe_3163]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d\throwwithhandlerscatchingbase_d.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwwithhandlerscatchingbase_do.exe_3164]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do\throwwithhandlerscatchingbase_do.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwwithhandlerscatchingbase_r.exe_3165]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r\throwwithhandlerscatchingbase_r.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwwithhandlerscatchingbase_ro.exe_3166]
+RelativePath=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro\throwwithhandlerscatchingbase_ro.exe
+WorkingDir=JIT\Methodical\eh\rethrow\throwwithhandlerscatchingbase_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgconvovf_i8_i.exe_3167]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i\_il_dbgconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgconvovf_i8_u.exe_3168]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u\_il_dbgconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconvovf_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgconv_i8_i.exe_3169]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i\_il_dbgconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgconv_i8_u.exe_3170]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u\_il_dbgconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgconv_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_array_merge.exe_3171]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge\_il_dbgi_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_box.exe_3172]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box\_il_dbgi_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_conv.exe_3173]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv\_il_dbgi_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_fld.exe_3174]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld\_il_dbgi_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_flood.exe_3175]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood\_il_dbgi_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_flow.exe_3176]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow\_il_dbgi_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_prop.exe_3177]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop\_il_dbgi_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_qsort1.exe_3178]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1\_il_dbgi_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_qsort2.exe_3179]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2\_il_dbgi_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_ref.exe_3180]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref\_il_dbgi_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_seq.exe_3181]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq\_il_dbgi_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi_vfld.exe_3182]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld\_il_dbgi_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgi_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgptr.exe_3183]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr\_il_dbgptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgqperm.exe_3184]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm\_il_dbgqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgqperm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsizeof.exe_3185]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof\_il_dbgsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_array_merge.exe_3186]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge\_il_dbgu_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_box.exe_3187]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box\_il_dbgu_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_conv.exe_3188]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv\_il_dbgu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_fld.exe_3189]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld\_il_dbgu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_flood.exe_3190]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood\_il_dbgu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_flow.exe_3191]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow\_il_dbgu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_prop.exe_3192]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop\_il_dbgu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_qsort1.exe_3193]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1\_il_dbgu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_qsort2.exe_3194]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2\_il_dbgu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_ref.exe_3195]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref\_il_dbgu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_seq.exe_3196]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq\_il_dbgu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_vfld.exe_3197]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld\_il_dbgu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_dbgu_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relconvovf_i8_i.exe_3198]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i\_il_relconvovf_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relconvovf_i8_u.exe_3199]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u\_il_relconvovf_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconvovf_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relconv_i8_i.exe_3200]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i\_il_relconv_i8_i.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relconv_i8_u.exe_3201]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u\_il_relconv_i8_u.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relconv_i8_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_array_merge.exe_3202]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge\_il_reli_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_box.exe_3203]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box\_il_reli_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_conv.exe_3204]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv\_il_reli_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_fld.exe_3205]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld\_il_reli_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_flood.exe_3206]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood\_il_reli_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_flow.exe_3207]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow\_il_reli_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_prop.exe_3208]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop\_il_reli_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_qsort1.exe_3209]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1\_il_reli_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_qsort2.exe_3210]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2\_il_reli_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_ref.exe_3211]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref\_il_reli_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_seq.exe_3212]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq\_il_reli_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli_vfld.exe_3213]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld\_il_reli_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_reli_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relptr.exe_3214]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr\_il_relptr.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relqperm.exe_3215]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm\_il_relqperm.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relqperm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsizeof.exe_3216]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof\_il_relsizeof.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_array_merge.exe_3217]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge\_il_relu_array_merge.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_array_merge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_box.exe_3218]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box\_il_relu_box.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_box
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_conv.exe_3219]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv\_il_relu_conv.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_conv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_fld.exe_3220]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld\_il_relu_fld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_flood.exe_3221]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood\_il_relu_flood.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flood
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_flow.exe_3222]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow\_il_relu_flow.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_flow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_prop.exe_3223]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop\_il_relu_prop.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_prop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_qsort1.exe_3224]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1\_il_relu_qsort1.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_qsort2.exe_3225]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2\_il_relu_qsort2.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_qsort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_ref.exe_3226]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref\_il_relu_ref.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_seq.exe_3227]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq\_il_relu_seq.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_seq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_vfld.exe_3228]
+RelativePath=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld\_il_relu_vfld.exe
+WorkingDir=JIT\Methodical\ELEMENT_TYPE_IU\_il_relu_vfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_c.exe_3229]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_c\_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_f4.exe_3230]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f4\_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_f8.exe_3231]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_f8\_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_i1.exe_3232]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i1\_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_i2.exe_3233]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i2\_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_i4.exe_3234]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_i4\_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_o.exe_3235]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_o\_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefarg_s.exe_3236]
+RelativePath=JIT\Methodical\explicit\basic\_dbgrefarg_s\_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_c.exe_3237]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_c\_il_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_f4.exe_3238]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4\_il_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_f8.exe_3239]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8\_il_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_i1.exe_3240]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1\_il_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_i2.exe_3241]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2\_il_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_i4.exe_3242]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4\_il_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_o.exe_3243]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_o\_il_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_s.exe_3244]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefarg_s\_il_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_c.exe_3245]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_c\_il_dbgrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_i1.exe_3246]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1\_il_dbgrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_i2.exe_3247]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2\_il_dbgrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_i4.exe_3248]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4\_il_dbgrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_o.exe_3249]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o\_il_dbgrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_o2.exe_3250]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2\_il_dbgrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_o2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_r4.exe_3251]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4\_il_dbgrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_r8.exe_3252]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8\_il_dbgrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefloc_u2.exe_3253]
+RelativePath=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2\_il_dbgrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_dbgrefloc_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_c.exe_3254]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_c\_il_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_f4.exe_3255]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f4\_il_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_f8.exe_3256]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_f8\_il_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_i1.exe_3257]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i1\_il_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_i2.exe_3258]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i2\_il_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_i4.exe_3259]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_i4\_il_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_o.exe_3260]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_o\_il_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_s.exe_3261]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefarg_s\_il_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_c.exe_3262]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_c\_il_relrefloc_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_i1.exe_3263]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i1\_il_relrefloc_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_i2.exe_3264]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i2\_il_relrefloc_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_i4.exe_3265]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_i4\_il_relrefloc_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_o.exe_3266]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o\_il_relrefloc_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_o2.exe_3267]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_o2\_il_relrefloc_o2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_o2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_r4.exe_3268]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r4\_il_relrefloc_r4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_r8.exe_3269]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_r8\_il_relrefloc_r8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefloc_u2.exe_3270]
+RelativePath=JIT\Methodical\explicit\basic\_il_relrefloc_u2\_il_relrefloc_u2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_il_relrefloc_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_c.exe_3271]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c\_opt_dbgrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_f4.exe_3272]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4\_opt_dbgrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_f8.exe_3273]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8\_opt_dbgrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_i1.exe_3274]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1\_opt_dbgrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_i2.exe_3275]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2\_opt_dbgrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_i4.exe_3276]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4\_opt_dbgrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_o.exe_3277]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o\_opt_dbgrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrefarg_s.exe_3278]
+RelativePath=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s\_opt_dbgrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_dbgrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_c.exe_3279]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_c\_opt_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_f4.exe_3280]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f4\_opt_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_f8.exe_3281]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_f8\_opt_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_i1.exe_3282]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i1\_opt_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_i2.exe_3283]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i2\_opt_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_i4.exe_3284]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_i4\_opt_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_o.exe_3285]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_o\_opt_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrefarg_s.exe_3286]
+RelativePath=JIT\Methodical\explicit\basic\_opt_relrefarg_s\_opt_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_opt_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_c.exe_3287]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_c\_relrefarg_c.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_f4.exe_3288]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f4\_relrefarg_f4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_f8.exe_3289]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_f8\_relrefarg_f8.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_i1.exe_3290]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i1\_relrefarg_i1.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_i2.exe_3291]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i2\_relrefarg_i2.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_i4.exe_3292]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_i4\_relrefarg_i4.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_o.exe_3293]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_o\_relrefarg_o.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_o
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefarg_s.exe_3294]
+RelativePath=JIT\Methodical\explicit\basic\_relrefarg_s\_relrefarg_s.exe
+WorkingDir=JIT\Methodical\explicit\basic\_relrefarg_s
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_byte_1_d.exe_3295]
+RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_d\expl_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_byte_1_r.exe_3296]
+RelativePath=JIT\Methodical\explicit\coverage\expl_byte_1_r\expl_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_double_1_d.exe_3297]
+RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_d\expl_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_double_1_r.exe_3298]
+RelativePath=JIT\Methodical\explicit\coverage\expl_double_1_r\expl_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_float_1_d.exe_3299]
+RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_d\expl_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_float_1_r.exe_3300]
+RelativePath=JIT\Methodical\explicit\coverage\expl_float_1_r\expl_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_byte_1_d.exe_3301]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d\expl_gc_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_byte_1_r.exe_3302]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r\expl_gc_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_double_1_d.exe_3303]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_d\expl_gc_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_double_1_r.exe_3304]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_double_1_r\expl_gc_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_float_1_d.exe_3305]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_d\expl_gc_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_float_1_r.exe_3306]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_float_1_r\expl_gc_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_int_1_d.exe_3307]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_d\expl_gc_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_int_1_r.exe_3308]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_int_1_r\expl_gc_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_long_1_d.exe_3309]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_d\expl_gc_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_long_1_r.exe_3310]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_long_1_r\expl_gc_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_obj_1_d.exe_3311]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d\expl_gc_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_obj_1_r.exe_3312]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r\expl_gc_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_short_1_d.exe_3313]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_d\expl_gc_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_short_1_r.exe_3314]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_short_1_r\expl_gc_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_val_1_d.exe_3315]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_d\expl_gc_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_gc_val_1_r.exe_3316]
+RelativePath=JIT\Methodical\explicit\coverage\expl_gc_val_1_r\expl_gc_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_gc_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_int_1_d.exe_3317]
+RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_d\expl_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_int_1_r.exe_3318]
+RelativePath=JIT\Methodical\explicit\coverage\expl_int_1_r\expl_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_long_1_d.exe_3319]
+RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_d\expl_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_long_1_r.exe_3320]
+RelativePath=JIT\Methodical\explicit\coverage\expl_long_1_r\expl_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_obj_1_d.exe_3321]
+RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_d\expl_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_obj_1_r.exe_3322]
+RelativePath=JIT\Methodical\explicit\coverage\expl_obj_1_r\expl_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_short_1_d.exe_3323]
+RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_d\expl_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_short_1_r.exe_3324]
+RelativePath=JIT\Methodical\explicit\coverage\expl_short_1_r\expl_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_val_1_d.exe_3325]
+RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_d\expl_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_val_1_r.exe_3326]
+RelativePath=JIT\Methodical\explicit\coverage\expl_val_1_r\expl_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\expl_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_byte_1_d.exe_3327]
+RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_d\seq_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_byte_1_r.exe_3328]
+RelativePath=JIT\Methodical\explicit\coverage\seq_byte_1_r\seq_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_double_1_d.exe_3329]
+RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_d\seq_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_double_1_r.exe_3330]
+RelativePath=JIT\Methodical\explicit\coverage\seq_double_1_r\seq_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_float_1_d.exe_3331]
+RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_d\seq_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_float_1_r.exe_3332]
+RelativePath=JIT\Methodical\explicit\coverage\seq_float_1_r\seq_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_byte_1_d.exe_3333]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d\seq_gc_byte_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_byte_1_r.exe_3334]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r\seq_gc_byte_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_byte_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_double_1_d.exe_3335]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_d\seq_gc_double_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_double_1_r.exe_3336]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_double_1_r\seq_gc_double_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_double_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_float_1_d.exe_3337]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_d\seq_gc_float_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_float_1_r.exe_3338]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_float_1_r\seq_gc_float_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_float_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_int_1_d.exe_3339]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_d\seq_gc_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_int_1_r.exe_3340]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_int_1_r\seq_gc_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_long_1_d.exe_3341]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_d\seq_gc_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_long_1_r.exe_3342]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_long_1_r\seq_gc_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_obj_1_d.exe_3343]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d\seq_gc_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_obj_1_r.exe_3344]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r\seq_gc_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_short_1_d.exe_3345]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_d\seq_gc_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_short_1_r.exe_3346]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_short_1_r\seq_gc_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_val_1_d.exe_3347]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_d\seq_gc_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_gc_val_1_r.exe_3348]
+RelativePath=JIT\Methodical\explicit\coverage\seq_gc_val_1_r\seq_gc_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_gc_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_int_1_d.exe_3349]
+RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_d\seq_int_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_int_1_r.exe_3350]
+RelativePath=JIT\Methodical\explicit\coverage\seq_int_1_r\seq_int_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_int_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_long_1_d.exe_3351]
+RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_d\seq_long_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_long_1_r.exe_3352]
+RelativePath=JIT\Methodical\explicit\coverage\seq_long_1_r\seq_long_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_long_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_obj_1_d.exe_3353]
+RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_d\seq_obj_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_obj_1_r.exe_3354]
+RelativePath=JIT\Methodical\explicit\coverage\seq_obj_1_r\seq_obj_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_obj_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_short_1_d.exe_3355]
+RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_d\seq_short_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_short_1_r.exe_3356]
+RelativePath=JIT\Methodical\explicit\coverage\seq_short_1_r\seq_short_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_short_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_val_1_d.exe_3357]
+RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_d\seq_val_1_d.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_val_1_r.exe_3358]
+RelativePath=JIT\Methodical\explicit\coverage\seq_val_1_r\seq_val_1_r.exe
+WorkingDir=JIT\Methodical\explicit\coverage\seq_val_1_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_funcptr_gc_d.exe_3359]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d\expl_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_funcptr_gc_r.exe_3360]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r\expl_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_gc_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_funcptr_val_d.exe_3361]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d\expl_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_funcptr_val_r.exe_3362]
+RelativePath=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r\expl_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\expl_funcptr_val_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_funcptr_gc_d.exe_3363]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d\seq_funcptr_gc_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_funcptr_gc_r.exe_3364]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r\seq_funcptr_gc_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_gc_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_funcptr_val_d.exe_3365]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d\seq_funcptr_val_d.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seq_funcptr_val_r.exe_3366]
+RelativePath=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r\seq_funcptr_val_r.exe
+WorkingDir=JIT\Methodical\explicit\funcptr\seq_funcptr_val_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit1.exe_3367]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit1\_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit2.exe_3368]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit2\_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit3.exe_3369]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit3\_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit4.exe_3370]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit4\_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit5.exe_3371]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit5\_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit6.exe_3372]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit6\_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit7.exe_3373]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit7\_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgexplicit8.exe_3374]
+RelativePath=JIT\Methodical\explicit\misc\_dbgexplicit8\_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_dbgexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_box_f8.exe_3375]
+RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8\_il_dbgrefarg_box_f8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefarg_box_val.exe_3376]
+RelativePath=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val\_il_dbgrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_dbgrefarg_box_val
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_box_f8.exe_3377]
+RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8\_il_relrefarg_box_f8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_f8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefarg_box_val.exe_3378]
+RelativePath=JIT\Methodical\explicit\misc\_il_relrefarg_box_val\_il_relrefarg_box_val.exe
+WorkingDir=JIT\Methodical\explicit\misc\_il_relrefarg_box_val
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit1.exe_3379]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit1\_opt_dbgexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit2.exe_3380]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit2\_opt_dbgexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit3.exe_3381]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit3\_opt_dbgexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit4.exe_3382]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit4\_opt_dbgexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit5.exe_3383]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit5\_opt_dbgexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit6.exe_3384]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit6\_opt_dbgexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit7.exe_3385]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit7\_opt_dbgexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgexplicit8.exe_3386]
+RelativePath=JIT\Methodical\explicit\misc\_opt_dbgexplicit8\_opt_dbgexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_dbgexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit1.exe_3387]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit1\_opt_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit2.exe_3388]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit2\_opt_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit3.exe_3389]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit3\_opt_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit4.exe_3390]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit4\_opt_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit5.exe_3391]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit5\_opt_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit6.exe_3392]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit6\_opt_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit7.exe_3393]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit7\_opt_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relexplicit8.exe_3394]
+RelativePath=JIT\Methodical\explicit\misc\_opt_relexplicit8\_opt_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_opt_relexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit1.exe_3395]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit1\_relexplicit1.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit2.exe_3396]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit2\_relexplicit2.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit3.exe_3397]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit3\_relexplicit3.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit4.exe_3398]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit4\_relexplicit4.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit5.exe_3399]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit5\_relexplicit5.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit6.exe_3400]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit6\_relexplicit6.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit7.exe_3401]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit7\_relexplicit7.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relexplicit8.exe_3402]
+RelativePath=JIT\Methodical\explicit\misc\_relexplicit8\_relexplicit8.exe
+WorkingDir=JIT\Methodical\explicit\misc\_relexplicit8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrotarg_double.exe_3403]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_double\_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrotarg_float.exe_3404]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_float\_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrotarg_objref.exe_3405]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_objref\_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrotarg_valref.exe_3406]
+RelativePath=JIT\Methodical\explicit\rotate\_dbgrotarg_valref\_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotarg_double.exe_3407]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double\_il_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotarg_float.exe_3408]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float\_il_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotarg_objref.exe_3409]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref\_il_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotarg_valref.exe_3410]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref\_il_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotate_i4.exe_3411]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4\_il_dbgrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrotate_u2.exe_3412]
+RelativePath=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2\_il_dbgrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_dbgrotate_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotarg_double.exe_3413]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_double\_il_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotarg_float.exe_3414]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_float\_il_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotarg_objref.exe_3415]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_objref\_il_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotarg_valref.exe_3416]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotarg_valref\_il_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotate_i4.exe_3417]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_i4\_il_relrotate_i4.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrotate_u2.exe_3418]
+RelativePath=JIT\Methodical\explicit\rotate\_il_relrotate_u2\_il_relrotate_u2.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_il_relrotate_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrotarg_double.exe_3419]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double\_opt_dbgrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrotarg_float.exe_3420]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float\_opt_dbgrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrotarg_objref.exe_3421]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref\_opt_dbgrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_dbgrotarg_valref.exe_3422]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref\_opt_dbgrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_dbgrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrotarg_double.exe_3423]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_double\_opt_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrotarg_float.exe_3424]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_float\_opt_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrotarg_objref.exe_3425]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref\_opt_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_opt_relrotarg_valref.exe_3426]
+RelativePath=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref\_opt_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_opt_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrotarg_double.exe_3427]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_double\_relrotarg_double.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrotarg_float.exe_3428]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_float\_relrotarg_float.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_float
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrotarg_objref.exe_3429]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_objref\_relrotarg_objref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_objref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrotarg_valref.exe_3430]
+RelativePath=JIT\Methodical\explicit\rotate\_relrotarg_valref\_relrotarg_valref.exe
+WorkingDir=JIT\Methodical\explicit\rotate\_relrotarg_valref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intToByte.exe_3431]
+RelativePath=JIT\Methodical\flowgraph\bug614098\intToByte\intToByte.exe
+WorkingDir=JIT\Methodical\flowgraph\bug614098\intToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ehCodeMotion.exe_3432]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ehCodeMotion\ehCodeMotion.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ehCodeMotion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[finallyclone.exe_3433]
+RelativePath=JIT\Methodical\flowgraph\bug619534\finallyclone\finallyclone.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\finallyclone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ILStackAllocRepro.exe_3434]
+RelativePath=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro\ILStackAllocRepro.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\ILStackAllocRepro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[moduleHandleCache.exe_3435]
+RelativePath=JIT\Methodical\flowgraph\bug619534\moduleHandleCache\moduleHandleCache.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\moduleHandleCache
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NonVirtualCall.exe_3436]
+RelativePath=JIT\Methodical\flowgraph\bug619534\NonVirtualCall\NonVirtualCall.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\NonVirtualCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[twoEndFinallys.exe_3437]
+RelativePath=JIT\Methodical\flowgraph\bug619534\twoEndFinallys\twoEndFinallys.exe
+WorkingDir=JIT\Methodical\flowgraph\bug619534\twoEndFinallys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ptuple_lost.exe_3438]
+RelativePath=JIT\Methodical\flowgraph\bug621705\ptuple_lost\ptuple_lost.exe
+WorkingDir=JIT\Methodical\flowgraph\bug621705\ptuple_lost
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ssa_tuIsAddr.exe_3439]
+RelativePath=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr\ssa_tuIsAddr.exe
+WorkingDir=JIT\Methodical\flowgraph\bug647189\ssa_tuIsAddr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GCMaskForGSCookie.exe_3440]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie\GCMaskForGSCookie.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug642944\GCMaskForGSCookie
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arrayDim.exe_3441]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim\arrayDim.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\arrayDim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopIV_init.exe_3442]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init\loopIV_init.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\loopIV_init
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[osrAddovershot.exe_3443]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot\osrAddovershot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug675304\osrAddovershot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[castClassEH.exe_3444]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH\castClassEH.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\castClassEH
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dependentlifetimes.exe_3445]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes\dependentlifetimes.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\dependentlifetimes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[EHCopyProp.exe_3446]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp\EHCopyProp.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\EHCopyProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ehDescriptorPtrUpdate.exe_3447]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate\ehDescriptorPtrUpdate.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\ehDescriptorPtrUpdate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fgloop.exe_3448]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop\fgloop.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fgloop2.exe_3449]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2\fgloop2.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\fgloop2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GCOverReporting.exe_3450]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting\GCOverReporting.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\GCOverReporting
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sealedCastVariance.exe_3451]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance\sealedCastVariance.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\sealedCastVariance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[singleRefField.exe_3452]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField\singleRefField.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\singleRefField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroInitStackSlot.exe_3453]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot\zeroInitStackSlot.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679008\zeroInitStackSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblkInt32.exe_3454]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32\cpblkInt32.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\cpblkInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[flowgraph.exe_3455]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph\flowgraph.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\flowgraph
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[regionLive.exe_3456]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679053\regionLive\regionLive.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679053\regionLive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[indexMinusOne.exe_3457]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne\indexMinusOne.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\indexMinusOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatileLocal1.exe_3458]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1\volatileLocal1.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[volatileLocal2.exe_3459]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2\volatileLocal2.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug679955\volatileLocal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[qMarkColon.exe_3460]
+RelativePath=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon\qMarkColon.exe
+WorkingDir=JIT\Methodical\flowgraph\dev10_bug723489\qMarkColon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bouncingball_cs_d.exe_3461]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_d\bouncingball_cs_d.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bouncingball_cs_do.exe_3462]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_do\bouncingball_cs_do.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bouncingball_cs_r.exe_3463]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_r\bouncingball_cs_r.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bouncingball_cs_ro.exe_3464]
+RelativePath=JIT\Methodical\fp\apps\bouncingball_cs_ro\bouncingball_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\apps\bouncingball_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[1000w1d_cs_d.exe_3465]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_d\1000w1d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[1000w1d_cs_do.exe_3466]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_do\1000w1d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[1000w1d_cs_r.exe_3467]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_r\1000w1d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[1000w1d_cs_ro.exe_3468]
+RelativePath=JIT\Methodical\fp\exgen\1000w1d_cs_ro\1000w1d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\1000w1d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w250d_cs_d.exe_3469]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_d\10w250d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w250d_cs_do.exe_3470]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_do\10w250d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w250d_cs_r.exe_3471]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_r\10w250d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w250d_cs_ro.exe_3472]
+RelativePath=JIT\Methodical\fp\exgen\10w250d_cs_ro\10w250d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w250d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w5d_cs_d.exe_3473]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_d\10w5d_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w5d_cs_do.exe_3474]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_do\10w5d_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w5d_cs_r.exe_3475]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_r\10w5d_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[10w5d_cs_ro.exe_3476]
+RelativePath=JIT\Methodical\fp\exgen\10w5d_cs_ro\10w5d_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\10w5d_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-01_cs_d.exe_3477]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_d\200w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-01_cs_do.exe_3478]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_do\200w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-01_cs_r.exe_3479]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_r\200w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-01_cs_ro.exe_3480]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-01_cs_ro\200w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-02_cs_d.exe_3481]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_d\200w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-02_cs_do.exe_3482]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_do\200w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-02_cs_r.exe_3483]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_r\200w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[200w1d-02_cs_ro.exe_3484]
+RelativePath=JIT\Methodical\fp\exgen\200w1d-02_cs_ro\200w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\200w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-01_cs_d.exe_3485]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_d\3w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-01_cs_do.exe_3486]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_do\3w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-01_cs_r.exe_3487]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_r\3w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-01_cs_ro.exe_3488]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-01_cs_ro\3w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-02_cs_d.exe_3489]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_d\3w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-02_cs_do.exe_3490]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_do\3w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-02_cs_r.exe_3491]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_r\3w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[3w1d-02_cs_ro.exe_3492]
+RelativePath=JIT\Methodical\fp\exgen\3w1d-02_cs_ro\3w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\3w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-01_cs_d.exe_3493]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_d\5w1d-01_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-01_cs_do.exe_3494]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_do\5w1d-01_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-01_cs_r.exe_3495]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_r\5w1d-01_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-01_cs_ro.exe_3496]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-01_cs_ro\5w1d-01_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-01_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-02_cs_d.exe_3497]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_d\5w1d-02_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-02_cs_do.exe_3498]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_do\5w1d-02_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-02_cs_r.exe_3499]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_r\5w1d-02_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-02_cs_ro.exe_3500]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-02_cs_ro\5w1d-02_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-02_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-03_cs_d.exe_3501]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_d\5w1d-03_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-03_cs_do.exe_3502]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_do\5w1d-03_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-03_cs_r.exe_3503]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_r\5w1d-03_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-03_cs_ro.exe_3504]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-03_cs_ro\5w1d-03_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-03_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-04_cs_d.exe_3505]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_d\5w1d-04_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-04_cs_do.exe_3506]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_do\5w1d-04_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-04_cs_r.exe_3507]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_r\5w1d-04_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-04_cs_ro.exe_3508]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-04_cs_ro\5w1d-04_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-04_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-05_cs_d.exe_3509]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_d\5w1d-05_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-05_cs_do.exe_3510]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_do\5w1d-05_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-05_cs_r.exe_3511]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_r\5w1d-05_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-05_cs_ro.exe_3512]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-05_cs_ro\5w1d-05_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-05_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-06_cs_d.exe_3513]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_d\5w1d-06_cs_d.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-06_cs_do.exe_3514]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_do\5w1d-06_cs_do.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-06_cs_r.exe_3515]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_r\5w1d-06_cs_r.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[5w1d-06_cs_ro.exe_3516]
+RelativePath=JIT\Methodical\fp\exgen\5w1d-06_cs_ro\5w1d-06_cs_ro.exe
+WorkingDir=JIT\Methodical\fp\exgen\5w1d-06_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4a_cs_d.exe_3517]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_d\convr4a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4a_cs_do.exe_3518]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_do\convr4a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4a_cs_r.exe_3519]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_r\convr4a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4a_cs_ro.exe_3520]
+RelativePath=JIT\Methodical\FPtrunc\convr4a_cs_ro\convr4a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4d_il_d.exe_3521]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_d\convr4d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr4d_il_r.exe_3522]
+RelativePath=JIT\Methodical\FPtrunc\convr4d_il_r\convr4d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr4d_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8a_cs_d.exe_3523]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_d\convr8a_cs_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8a_cs_do.exe_3524]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_do\convr8a_cs_do.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8a_cs_r.exe_3525]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_r\convr8a_cs_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8a_cs_ro.exe_3526]
+RelativePath=JIT\Methodical\FPtrunc\convr8a_cs_ro\convr8a_cs_ro.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8d_il_d.exe_3527]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_d\convr8d_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convr8d_il_r.exe_3528]
+RelativePath=JIT\Methodical\FPtrunc\convr8d_il_r\convr8d_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convr8d_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convx_il_d.exe_3529]
+RelativePath=JIT\Methodical\FPtrunc\convx_il_d\convx_il_d.exe
+WorkingDir=JIT\Methodical\FPtrunc\convx_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[convx_il_r.exe_3530]
+RelativePath=JIT\Methodical\FPtrunc\convx_il_r\convx_il_r.exe
+WorkingDir=JIT\Methodical\FPtrunc\convx_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_3531]
+RelativePath=JIT\Methodical\inlining\bug505642\test\test.exe
+WorkingDir=JIT\Methodical\inlining\bug505642\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[variancesmall.exe_3532]
+RelativePath=JIT\Methodical\inlining\dev10_bug719093\variancesmall\variancesmall.exe
+WorkingDir=JIT\Methodical\inlining\dev10_bug719093\variancesmall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs_long.exe_3533]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_long\_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs_ulong.exe_3534]
+RelativePath=JIT\Methodical\int64\arrays\_dbglcs_ulong\_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghugedim.exe_3535]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbghugedim\_il_dbghugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbghugedim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglcs_long.exe_3536]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_long\_il_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglcs_ulong.exe_3537]
+RelativePath=JIT\Methodical\int64\arrays\_il_dbglcs_ulong\_il_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhugedim.exe_3538]
+RelativePath=JIT\Methodical\int64\arrays\_il_relhugedim\_il_relhugedim.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_relhugedim
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellcs_long.exe_3539]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_long\_il_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellcs_ulong.exe_3540]
+RelativePath=JIT\Methodical\int64\arrays\_il_rellcs_ulong\_il_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_il_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs_long.exe_3541]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_long\_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs_ulong.exe_3542]
+RelativePath=JIT\Methodical\int64\arrays\_rellcs_ulong\_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs_long.exe_3543]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_long\_speed_dbglcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs_ulong.exe_3544]
+RelativePath=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong\_speed_dbglcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_dbglcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs_long.exe_3545]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_long\_speed_rellcs_long.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_long
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs_ulong.exe_3546]
+RelativePath=JIT\Methodical\int64\arrays\_speed_rellcs_ulong\_speed_rellcs_ulong.exe
+WorkingDir=JIT\Methodical\int64\arrays\_speed_rellcs_ulong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgbinop.exe_3547]
+RelativePath=JIT\Methodical\int64\misc\_dbgbinop\_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgbox.exe_3548]
+RelativePath=JIT\Methodical\int64\misc\_dbgbox\_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgbinop.exe_3549]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbinop\_il_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgbox.exe_3550]
+RelativePath=JIT\Methodical\int64\misc\_il_dbgbox\_il_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relbinop.exe_3551]
+RelativePath=JIT\Methodical\int64\misc\_il_relbinop\_il_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relbox.exe_3552]
+RelativePath=JIT\Methodical\int64\misc\_il_relbox\_il_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_il_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relbinop.exe_3553]
+RelativePath=JIT\Methodical\int64\misc\_relbinop\_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relbox.exe_3554]
+RelativePath=JIT\Methodical\int64\misc\_relbox\_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgbinop.exe_3555]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbinop\_speed_dbgbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgbox.exe_3556]
+RelativePath=JIT\Methodical\int64\misc\_speed_dbgbox\_speed_dbgbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_dbgbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relbinop.exe_3557]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbinop\_speed_relbinop.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbinop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relbox.exe_3558]
+RelativePath=JIT\Methodical\int64\misc\_speed_relbox\_speed_relbox.exe
+WorkingDir=JIT\Methodical\int64\misc\_speed_relbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_addsub.exe_3559]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_addsub\_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldc_div.exe_3560]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_div\_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldc_mul.exe_3561]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mul\_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldc_mulovf.exe_3562]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf\_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldfld_mul.exe_3563]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mul\_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldfld_mulovf.exe_3564]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf\_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldsfld_mul.exe_3565]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul\_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_ldsfld_mulovf.exe_3566]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf\_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgs_muldiv.exe_3567]
+RelativePath=JIT\Methodical\int64\signed\_dbgs_muldiv\_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_addsub.exe_3568]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_addsub\_il_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldc_div.exe_3569]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_div\_il_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldc_mul.exe_3570]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul\_il_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldc_mulovf.exe_3571]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf\_il_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldfld_mul.exe_3572]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul\_il_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldfld_mulovf.exe_3573]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf\_il_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldsfld_mul.exe_3574]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul\_il_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_ldsfld_mulovf.exe_3575]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf\_il_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgs_muldiv.exe_3576]
+RelativePath=JIT\Methodical\int64\signed\_il_dbgs_muldiv\_il_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_addsub.exe_3577]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_addsub\_il_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldc_div.exe_3578]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_div\_il_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldc_mul.exe_3579]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mul\_il_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldc_mulovf.exe_3580]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf\_il_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldfld_mul.exe_3581]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mul\_il_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldfld_mulovf.exe_3582]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf\_il_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldsfld_mul.exe_3583]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul\_il_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_ldsfld_mulovf.exe_3584]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf\_il_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rels_muldiv.exe_3585]
+RelativePath=JIT\Methodical\int64\signed\_il_rels_muldiv\_il_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_il_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_addsub.exe_3586]
+RelativePath=JIT\Methodical\int64\signed\_rels_addsub\_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldc_div.exe_3587]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_div\_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldc_mul.exe_3588]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mul\_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldc_mulovf.exe_3589]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldc_mulovf\_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldfld_mul.exe_3590]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mul\_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldfld_mulovf.exe_3591]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldfld_mulovf\_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldsfld_mul.exe_3592]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mul\_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_ldsfld_mulovf.exe_3593]
+RelativePath=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf\_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rels_muldiv.exe_3594]
+RelativePath=JIT\Methodical\int64\signed\_rels_muldiv\_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_addsub.exe_3595]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_addsub\_speed_dbgs_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldc_div.exe_3596]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div\_speed_dbgs_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldc_mul.exe_3597]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul\_speed_dbgs_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldc_mulovf.exe_3598]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf\_speed_dbgs_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldfld_mul.exe_3599]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul\_speed_dbgs_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldfld_mulovf.exe_3600]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf\_speed_dbgs_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldsfld_mul.exe_3601]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul\_speed_dbgs_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_ldsfld_mulovf.exe_3602]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf\_speed_dbgs_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgs_muldiv.exe_3603]
+RelativePath=JIT\Methodical\int64\signed\_speed_dbgs_muldiv\_speed_dbgs_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_dbgs_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_addsub.exe_3604]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_addsub\_speed_rels_addsub.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_addsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldc_div.exe_3605]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_div\_speed_rels_ldc_div.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_div
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldc_mul.exe_3606]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mul\_speed_rels_ldc_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldc_mulovf.exe_3607]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf\_speed_rels_ldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldfld_mul.exe_3608]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul\_speed_rels_ldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldfld_mulovf.exe_3609]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf\_speed_rels_ldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldsfld_mul.exe_3610]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul\_speed_rels_ldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_ldsfld_mulovf.exe_3611]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf\_speed_rels_ldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_ldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rels_muldiv.exe_3612]
+RelativePath=JIT\Methodical\int64\signed\_speed_rels_muldiv\_speed_rels_muldiv.exe
+WorkingDir=JIT\Methodical\int64\signed\_speed_rels_muldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsuperlong.exe_3613]
+RelativePath=JIT\Methodical\int64\superlong\_dbgsuperlong\_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsuperlong.exe_3614]
+RelativePath=JIT\Methodical\int64\superlong\_il_dbgsuperlong\_il_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsuperlong.exe_3615]
+RelativePath=JIT\Methodical\int64\superlong\_il_relsuperlong\_il_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_il_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsuperlong.exe_3616]
+RelativePath=JIT\Methodical\int64\superlong\_relsuperlong\_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgsuperlong.exe_3617]
+RelativePath=JIT\Methodical\int64\superlong\_speed_dbgsuperlong\_speed_dbgsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_dbgsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relsuperlong.exe_3618]
+RelativePath=JIT\Methodical\int64\superlong\_speed_relsuperlong\_speed_relsuperlong.exe
+WorkingDir=JIT\Methodical\int64\superlong\_speed_relsuperlong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgaddsub.exe_3619]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgaddsub\_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldc_mul.exe_3620]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mul\_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldc_mulovf.exe_3621]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldc_mulovf\_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldfld_mul.exe_3622]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mul\_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldfld_mulovf.exe_3623]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf\_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldsfld_mul.exe_3624]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mul\_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgldsfld_mulovf.exe_3625]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf\_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgmuldiv.exe_3626]
+RelativePath=JIT\Methodical\int64\unsigned\_dbgmuldiv\_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgaddsub.exe_3627]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgaddsub\_il_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldc_mul.exe_3628]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mul\_il_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldc_mulovf.exe_3629]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf\_il_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldfld_mul.exe_3630]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul\_il_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldfld_mulovf.exe_3631]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf\_il_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldsfld_mul.exe_3632]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul\_il_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldsfld_mulovf.exe_3633]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf\_il_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgmuldiv.exe_3634]
+RelativePath=JIT\Methodical\int64\unsigned\_il_dbgmuldiv\_il_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reladdsub.exe_3635]
+RelativePath=JIT\Methodical\int64\unsigned\_il_reladdsub\_il_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldc_mul.exe_3636]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mul\_il_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldc_mulovf.exe_3637]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldc_mulovf\_il_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldfld_mul.exe_3638]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mul\_il_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldfld_mulovf.exe_3639]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf\_il_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldsfld_mul.exe_3640]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mul\_il_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldsfld_mulovf.exe_3641]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf\_il_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relmuldiv.exe_3642]
+RelativePath=JIT\Methodical\int64\unsigned\_il_relmuldiv\_il_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_il_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reladdsub.exe_3643]
+RelativePath=JIT\Methodical\int64\unsigned\_reladdsub\_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldc_mul.exe_3644]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mul\_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldc_mulovf.exe_3645]
+RelativePath=JIT\Methodical\int64\unsigned\_relldc_mulovf\_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldfld_mul.exe_3646]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mul\_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldfld_mulovf.exe_3647]
+RelativePath=JIT\Methodical\int64\unsigned\_relldfld_mulovf\_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldsfld_mul.exe_3648]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mul\_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relldsfld_mulovf.exe_3649]
+RelativePath=JIT\Methodical\int64\unsigned\_relldsfld_mulovf\_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relmuldiv.exe_3650]
+RelativePath=JIT\Methodical\int64\unsigned\_relmuldiv\_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgaddsub.exe_3651]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgaddsub\_speed_dbgaddsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgaddsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldc_mul.exe_3652]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul\_speed_dbgldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldc_mulovf.exe_3653]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf\_speed_dbgldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldfld_mul.exe_3654]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul\_speed_dbgldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldfld_mulovf.exe_3655]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf\_speed_dbgldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldsfld_mul.exe_3656]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul\_speed_dbgldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgldsfld_mulovf.exe_3657]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf\_speed_dbgldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgmuldiv.exe_3658]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv\_speed_dbgmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_dbgmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reladdsub.exe_3659]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_reladdsub\_speed_reladdsub.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_reladdsub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldc_mul.exe_3660]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mul\_speed_relldc_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldc_mulovf.exe_3661]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf\_speed_relldc_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldc_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldfld_mul.exe_3662]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mul\_speed_relldfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldfld_mulovf.exe_3663]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf\_speed_relldfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldsfld_mul.exe_3664]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul\_speed_relldsfld_mul.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relldsfld_mulovf.exe_3665]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf\_speed_relldsfld_mulovf.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relldsfld_mulovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relmuldiv.exe_3666]
+RelativePath=JIT\Methodical\int64\unsigned\_speed_relmuldiv\_speed_relmuldiv.exe
+WorkingDir=JIT\Methodical\int64\unsigned\_speed_relmuldiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1a_cs_d.exe_3667]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_d\25param1a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1a_cs_do.exe_3668]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_do\25param1a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1a_cs_r.exe_3669]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_r\25param1a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1a_cs_ro.exe_3670]
+RelativePath=JIT\Methodical\Invoke\25params\25param1a_cs_ro\25param1a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1b_il_d.exe_3671]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_d\25param1b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1b_il_r.exe_3672]
+RelativePath=JIT\Methodical\Invoke\25params\25param1b_il_r\25param1b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1c_il_d.exe_3673]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_d\25param1c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param1c_il_r.exe_3674]
+RelativePath=JIT\Methodical\Invoke\25params\25param1c_il_r\25param1c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param1c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2a_cs_d.exe_3675]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_d\25param2a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2a_cs_do.exe_3676]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_do\25param2a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2a_cs_r.exe_3677]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_r\25param2a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2a_cs_ro.exe_3678]
+RelativePath=JIT\Methodical\Invoke\25params\25param2a_cs_ro\25param2a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2b_il_d.exe_3679]
+RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_d\25param2b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2b_il_r.exe_3680]
+RelativePath=JIT\Methodical\Invoke\25params\25param2b_il_r\25param2b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2c_il_d.exe_3681]
+RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_d\25param2c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param2c_il_r.exe_3682]
+RelativePath=JIT\Methodical\Invoke\25params\25param2c_il_r\25param2c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param2c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3a_cs_d.exe_3683]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_d\25param3a_cs_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3a_cs_do.exe_3684]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_do\25param3a_cs_do.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3a_cs_r.exe_3685]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_r\25param3a_cs_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3a_cs_ro.exe_3686]
+RelativePath=JIT\Methodical\Invoke\25params\25param3a_cs_ro\25param3a_cs_ro.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3a_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3b_il_d.exe_3687]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_d\25param3b_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3b_il_r.exe_3688]
+RelativePath=JIT\Methodical\Invoke\25params\25param3b_il_r\25param3b_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3b_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3c_il_d.exe_3689]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_d\25param3c_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25param3c_il_r.exe_3690]
+RelativePath=JIT\Methodical\Invoke\25params\25param3c_il_r\25param3c_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25param3c_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25paramMixed_il_d.exe_3691]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_d\25paramMixed_il_d.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[25paramMixed_il_r.exe_3692]
+RelativePath=JIT\Methodical\Invoke\25params\25paramMixed_il_r\25paramMixed_il_r.exe
+WorkingDir=JIT\Methodical\Invoke\25params\25paramMixed_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgtest1.exe_3693]
+RelativePath=JIT\Methodical\Invoke\callvirt\_dbgtest1\_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest1.exe_3694]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest1\_il_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest2.exe_3695]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest2\_il_dbgtest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest3.exe_3696]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_dbgtest3\_il_dbgtest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_dbgtest3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest1.exe_3697]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest1\_il_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest2.exe_3698]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest2\_il_reltest2.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest3.exe_3699]
+RelativePath=JIT\Methodical\Invoke\callvirt\_il_reltest3\_il_reltest3.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_il_reltest3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reltest1.exe_3700]
+RelativePath=JIT\Methodical\Invoke\callvirt\_reltest1\_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgtest1.exe_3701]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1\_speed_dbgtest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_dbgtest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reltest1.exe_3702]
+RelativePath=JIT\Methodical\Invoke\callvirt\_speed_reltest1\_speed_reltest1.exe
+WorkingDir=JIT\Methodical\Invoke\callvirt\_speed_reltest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgval_ctor.exe_3703]
+RelativePath=JIT\Methodical\Invoke\ctor\_dbgval_ctor\_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_dbgval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgval_cctor.exe_3704]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor\_il_dbgval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_cctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgval_ctor_newobj.exe_3705]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj\_il_dbgval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_dbgval_ctor_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relval_cctor.exe_3706]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_cctor\_il_relval_cctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_cctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relval_ctor_newobj.exe_3707]
+RelativePath=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj\_il_relval_ctor_newobj.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_il_relval_ctor_newobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relval_ctor.exe_3708]
+RelativePath=JIT\Methodical\Invoke\ctor\_relval_ctor\_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_relval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgval_ctor.exe_3709]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor\_speed_dbgval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_dbgval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relval_ctor.exe_3710]
+RelativePath=JIT\Methodical\Invoke\ctor\_speed_relval_ctor\_speed_relval_ctor.exe
+WorkingDir=JIT\Methodical\Invoke\ctor\_speed_relval_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgdeep.exe_3711]
+RelativePath=JIT\Methodical\Invoke\deep\_dbgdeep\_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_dbgdeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep1.exe_3712]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep1\_il_dbgdeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep2.exe_3713]
+RelativePath=JIT\Methodical\Invoke\deep\_il_dbgdeep2\_il_dbgdeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_dbgdeep2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep1.exe_3714]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep1\_il_reldeep1.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep2.exe_3715]
+RelativePath=JIT\Methodical\Invoke\deep\_il_reldeep2\_il_reldeep2.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_il_reldeep2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reldeep.exe_3716]
+RelativePath=JIT\Methodical\Invoke\deep\_reldeep\_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_reldeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgdeep.exe_3717]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_dbgdeep\_speed_dbgdeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_dbgdeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reldeep.exe_3718]
+RelativePath=JIT\Methodical\Invoke\deep\_speed_reldeep\_speed_reldeep.exe
+WorkingDir=JIT\Methodical\Invoke\deep\_speed_reldeep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrecurse.exe_3719]
+RelativePath=JIT\Methodical\Invoke\fptr\_dbgrecurse\_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_dbgrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgftn_t.exe_3720]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgftn_t\_il_dbgftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbginstftn.exe_3721]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn\_il_dbginstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbginstftn_t.exe_3722]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t\_il_dbginstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbginstftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_calli.exe_3723]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli\_il_dbgrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_jmp.exe_3724]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp\_il_dbgrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_jmpi.exe_3725]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi\_il_dbgrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_jmpi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_tail_call.exe_3726]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call\_il_dbgrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_tail_calli.exe_3727]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli\_il_dbgrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgrecurse_tail_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvalftn.exe_3728]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn\_il_dbgvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvalftn_t.exe_3729]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t\_il_dbgvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvalftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvirtftn.exe_3730]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn\_il_dbgvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvirtftn_t.exe_3731]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t\_il_dbgvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_dbgvirtftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relftn_t.exe_3732]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relftn_t\_il_relftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relinstftn.exe_3733]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn\_il_relinstftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relinstftn_t.exe_3734]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relinstftn_t\_il_relinstftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relinstftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_calli.exe_3735]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli\_il_relrecurse_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_jmp.exe_3736]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp\_il_relrecurse_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_jmpi.exe_3737]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi\_il_relrecurse_jmpi.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_jmpi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_tail_call.exe_3738]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call\_il_relrecurse_tail_call.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_call
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_tail_calli.exe_3739]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli\_il_relrecurse_tail_calli.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relrecurse_tail_calli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvalftn.exe_3740]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn\_il_relvalftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvalftn_t.exe_3741]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvalftn_t\_il_relvalftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvalftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvirtftn.exe_3742]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn\_il_relvirtftn.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvirtftn_t.exe_3743]
+RelativePath=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t\_il_relvirtftn_t.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_il_relvirtftn_t
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrecurse.exe_3744]
+RelativePath=JIT\Methodical\Invoke\fptr\_relrecurse\_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_relrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgrecurse.exe_3745]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse\_speed_dbgrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_dbgrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relrecurse.exe_3746]
+RelativePath=JIT\Methodical\Invoke\fptr\_speed_relrecurse\_speed_relrecurse.exe
+WorkingDir=JIT\Methodical\Invoke\fptr\_speed_relrecurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgobj.exe_3747]
+RelativePath=JIT\Methodical\Invoke\implicit\_dbgobj\_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_dbgobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfr4.exe_3748]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr4\_il_dbgfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgfr8.exe_3749]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgfr8\_il_dbgfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgfr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi4i1.exe_3750]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i1\_il_dbgi4i1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi4i2.exe_3751]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4i2\_il_dbgi4i2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi4u1.exe_3752]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u1\_il_dbgi4u1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi4u2.exe_3753]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u2\_il_dbgi4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi4u4.exe_3754]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi4u4\_il_dbgi4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi4u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgi8u8.exe_3755]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgi8u8\_il_dbgi8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgi8u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgii1.exe_3756]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii1\_il_dbgii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgii2.exe_3757]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii2\_il_dbgii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgii4.exe_3758]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgii4\_il_dbgii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgii4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgiu1.exe_3759]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu1\_il_dbgiu1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgiu2.exe_3760]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu2\_il_dbgiu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgiu4.exe_3761]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgiu4\_il_dbgiu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgiu4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgobjref.exe_3762]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_dbgobjref\_il_dbgobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_dbgobjref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfr4.exe_3763]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr4\_il_relfr4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relfr8.exe_3764]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relfr8\_il_relfr8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relfr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli4i1.exe_3765]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i1\_il_reli4i1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli4i2.exe_3766]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4i2\_il_reli4i2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4i2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli4u1.exe_3767]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u1\_il_reli4u1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli4u2.exe_3768]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u2\_il_reli4u2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli4u4.exe_3769]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli4u4\_il_reli4u4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli4u4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reli8u8.exe_3770]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reli8u8\_il_reli8u8.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reli8u8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relii1.exe_3771]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii1\_il_relii1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relii2.exe_3772]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii2\_il_relii2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relii4.exe_3773]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relii4\_il_relii4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relii4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reliu1.exe_3774]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu1\_il_reliu1.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reliu2.exe_3775]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu2\_il_reliu2.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reliu4.exe_3776]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_reliu4\_il_reliu4.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_reliu4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relobjref.exe_3777]
+RelativePath=JIT\Methodical\Invoke\implicit\_il_relobjref\_il_relobjref.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_il_relobjref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relobj.exe_3778]
+RelativePath=JIT\Methodical\Invoke\implicit\_relobj\_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_relobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgobj.exe_3779]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_dbgobj\_speed_dbgobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_dbgobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relobj.exe_3780]
+RelativePath=JIT\Methodical\Invoke\implicit\_speed_relobj\_speed_relobj.exe
+WorkingDir=JIT\Methodical\Invoke\implicit\_speed_relobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcatchfinally.exe_3781]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally\_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcatchfinally_tail.exe_3782]
+RelativePath=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail\_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfault.exe_3783]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault\_il_dbgcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfault_jmp.exe_3784]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp\_il_dbgcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfault_tail.exe_3785]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail\_il_dbgcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfault_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfinally_ind.exe_3786]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind\_il_dbgcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_ind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfinally_jmp.exe_3787]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp\_il_dbgcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfinally_jmpind.exe_3788]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind\_il_dbgcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_jmpind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcatchfinally_tail.exe_3789]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail\_il_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfault.exe_3790]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault\_il_relcatchfault.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfault_jmp.exe_3791]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp\_il_relcatchfault_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfault_tail.exe_3792]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail\_il_relcatchfault_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfault_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfinally_ind.exe_3793]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind\_il_relcatchfinally_ind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_ind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfinally_jmp.exe_3794]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp\_il_relcatchfinally_jmp.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfinally_jmpind.exe_3795]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind\_il_relcatchfinally_jmpind.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_jmpind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcatchfinally_tail.exe_3796]
+RelativePath=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail\_il_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_il_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcatchfinally.exe_3797]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally\_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcatchfinally_tail.exe_3798]
+RelativePath=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail\_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcatchfinally.exe_3799]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally\_speed_dbgcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcatchfinally_tail.exe_3800]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail\_speed_dbgcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_dbgcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcatchfinally.exe_3801]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally\_speed_relcatchfinally.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcatchfinally_tail.exe_3802]
+RelativePath=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail\_speed_relcatchfinally_tail.exe
+WorkingDir=JIT\Methodical\Invoke\SEH\_speed_relcatchfinally_tail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgthisnull.exe_3803]
+RelativePath=JIT\Methodical\Invoke\thiscall\_dbgthisnull\_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_dbgthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relthisnull.exe_3804]
+RelativePath=JIT\Methodical\Invoke\thiscall\_relthisnull\_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_relthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgthisnull.exe_3805]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull\_speed_dbgthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_dbgthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relthisnull.exe_3806]
+RelativePath=JIT\Methodical\Invoke\thiscall\_speed_relthisnull\_speed_relthisnull.exe
+WorkingDir=JIT\Methodical\Invoke\thiscall\_speed_relthisnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bug603649.exe_3807]
+RelativePath=JIT\Methodical\jitinterface\bug603649\bug603649.exe
+WorkingDir=JIT\Methodical\jitinterface\bug603649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldtoken.exe_3808]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtoken\_il_dbgldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldtokena.exe_3809]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgldtokena\_il_dbgldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgldtokena
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgptr_types.exe_3810]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgptr_types\_il_dbgptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgptr_types
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtypes.exe_3811]
+RelativePath=JIT\Methodical\ldtoken\_il_dbgtypes\_il_dbgtypes.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_dbgtypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldtoken.exe_3812]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtoken\_il_relldtoken.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldtokena.exe_3813]
+RelativePath=JIT\Methodical\ldtoken\_il_relldtokena\_il_relldtokena.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relldtokena
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relptr_types.exe_3814]
+RelativePath=JIT\Methodical\ldtoken\_il_relptr_types\_il_relptr_types.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_relptr_types
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltypes.exe_3815]
+RelativePath=JIT\Methodical\ldtoken\_il_reltypes\_il_reltypes.exe
+WorkingDir=JIT\Methodical\ldtoken\_il_reltypes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[call01_small.exe_3816]
+RelativePath=JIT\Methodical\localloc\call\call01_small\call01_small.exe
+WorkingDir=JIT\Methodical\localloc\call\call01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_dynamic.exe_3817]
+RelativePath=JIT\Methodical\localloc\verify\verify01_dynamic\verify01_dynamic.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_dynamic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_large.exe_3818]
+RelativePath=JIT\Methodical\localloc\verify\verify01_large\verify01_large.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[verify01_small.exe_3819]
+RelativePath=JIT\Methodical\localloc\verify\verify01_small\verify01_small.exe
+WorkingDir=JIT\Methodical\localloc\verify\verify01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroInit01_large.exe_3820]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroInit01_large\zeroInit01_large.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroInit01_large
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[zeroinit01_small.exe_3821]
+RelativePath=JIT\Methodical\localloc\zeroinit\zeroinit01_small\zeroinit01_small.exe
+WorkingDir=JIT\Methodical\localloc\zeroinit\zeroinit01_small
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_d.exe_3822]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_do.exe_3823]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_r.exe_3824]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_ro.exe_3825]
+RelativePath=JIT\Methodical\MDArray\basics\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_d.exe_3826]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_do.exe_3827]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_r.exe_3828]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_ro.exe_3829]
+RelativePath=JIT\Methodical\MDArray\basics\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\doublearr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_d.exe_3830]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_do.exe_3831]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_r.exe_3832]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3833]
+RelativePath=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_d.exe_3834]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_do.exe_3835]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_r.exe_3836]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_ro.exe_3837]
+RelativePath=JIT\Methodical\MDArray\basics\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\stringarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_d.exe_3838]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_do.exe_3839]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_r.exe_3840]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_ro.exe_3841]
+RelativePath=JIT\Methodical\MDArray\basics\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\basics\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bool_cs_d.exe_3842]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_d\bool_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bool_cs_do.exe_3843]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_do\bool_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bool_cs_r.exe_3844]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_r\bool_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bool_cs_ro.exe_3845]
+RelativePath=JIT\Methodical\MDArray\DataTypes\bool_cs_ro\bool_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\bool_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byte_cs_d.exe_3846]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_d\byte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byte_cs_do.exe_3847]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_do\byte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byte_cs_r.exe_3848]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_r\byte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[byte_cs_ro.exe_3849]
+RelativePath=JIT\Methodical\MDArray\DataTypes\byte_cs_ro\byte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\byte_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[char_cs_d.exe_3850]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_d\char_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[char_cs_do.exe_3851]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_do\char_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[char_cs_r.exe_3852]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_r\char_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[char_cs_ro.exe_3853]
+RelativePath=JIT\Methodical\MDArray\DataTypes\char_cs_ro\char_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\char_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimal_cs_d.exe_3854]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_d\decimal_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimal_cs_do.exe_3855]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_do\decimal_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimal_cs_r.exe_3856]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_r\decimal_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[decimal_cs_ro.exe_3857]
+RelativePath=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro\decimal_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\decimal_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[double_cs_d.exe_3858]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_d\double_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[double_cs_do.exe_3859]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_do\double_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[double_cs_r.exe_3860]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_r\double_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[double_cs_ro.exe_3861]
+RelativePath=JIT\Methodical\MDArray\DataTypes\double_cs_ro\double_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\double_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[float_cs_d.exe_3862]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_d\float_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[float_cs_do.exe_3863]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_do\float_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[float_cs_r.exe_3864]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_r\float_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[float_cs_ro.exe_3865]
+RelativePath=JIT\Methodical\MDArray\DataTypes\float_cs_ro\float_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\float_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int_cs_d.exe_3866]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_d\int_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int_cs_do.exe_3867]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_do\int_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int_cs_r.exe_3868]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_r\int_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[int_cs_ro.exe_3869]
+RelativePath=JIT\Methodical\MDArray\DataTypes\int_cs_ro\int_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\int_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[long_cs_d.exe_3870]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_d\long_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[long_cs_do.exe_3871]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_do\long_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[long_cs_r.exe_3872]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_r\long_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[long_cs_ro.exe_3873]
+RelativePath=JIT\Methodical\MDArray\DataTypes\long_cs_ro\long_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\long_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sbyte_cs_d.exe_3874]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d\sbyte_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sbyte_cs_do.exe_3875]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do\sbyte_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sbyte_cs_r.exe_3876]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r\sbyte_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[sbyte_cs_ro.exe_3877]
+RelativePath=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro\sbyte_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\sbyte_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[short_cs_d.exe_3878]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_d\short_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[short_cs_do.exe_3879]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_do\short_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[short_cs_r.exe_3880]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_r\short_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[short_cs_ro.exe_3881]
+RelativePath=JIT\Methodical\MDArray\DataTypes\short_cs_ro\short_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\short_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint_cs_d.exe_3882]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_d\uint_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint_cs_do.exe_3883]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_do\uint_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint_cs_r.exe_3884]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_r\uint_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[uint_cs_ro.exe_3885]
+RelativePath=JIT\Methodical\MDArray\DataTypes\uint_cs_ro\uint_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\uint_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ulong_cs_d.exe_3886]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_d\ulong_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ulong_cs_do.exe_3887]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_do\ulong_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ulong_cs_r.exe_3888]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_r\ulong_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ulong_cs_ro.exe_3889]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro\ulong_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ulong_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ushort_cs_d.exe_3890]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_d\ushort_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ushort_cs_do.exe_3891]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_do\ushort_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ushort_cs_r.exe_3892]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_r\ushort_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ushort_cs_ro.exe_3893]
+RelativePath=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro\ushort_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\DataTypes\ushort_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_d.exe_3894]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_do.exe_3895]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_r.exe_3896]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_ro.exe_3897]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_d.exe_3898]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_do.exe_3899]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_r.exe_3900]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3901]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[plainarr_cs_d.exe_3902]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d\plainarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[plainarr_cs_do.exe_3903]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do\plainarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[plainarr_cs_r.exe_3904]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r\plainarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[plainarr_cs_ro.exe_3905]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro\plainarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\plainarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_d.exe_3906]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_do.exe_3907]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_r.exe_3908]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_ro.exe_3909]
+RelativePath=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\GaussJordan\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_d.exe_3910]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_d\classarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_do.exe_3911]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_do\classarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_r.exe_3912]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_r\classarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classarr_cs_ro.exe_3913]
+RelativePath=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro\classarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\classarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_d.exe_3914]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d\doublearr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_do.exe_3915]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do\doublearr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_r.exe_3916]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r\doublearr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[doublearr_cs_ro.exe_3917]
+RelativePath=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro\doublearr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\doublearr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intarr_cs_d.exe_3918]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_d\intarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intarr_cs_do.exe_3919]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_do\intarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intarr_cs_r.exe_3920]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_r\intarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intarr_cs_ro.exe_3921]
+RelativePath=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro\intarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\intarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_d.exe_3922]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d\jaggedarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_do.exe_3923]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do\jaggedarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_r.exe_3924]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r\jaggedarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[jaggedarr_cs_ro.exe_3925]
+RelativePath=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro\jaggedarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\jaggedarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_d.exe_3926]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d\stringarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_do.exe_3927]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do\stringarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_r.exe_3928]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r\stringarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[stringarr_cs_ro.exe_3929]
+RelativePath=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro\stringarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\stringarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_d.exe_3930]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_d\structarr_cs_d.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_do.exe_3931]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_do\structarr_cs_do.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_r.exe_3932]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_r\structarr_cs_r.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structarr_cs_ro.exe_3933]
+RelativePath=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro\structarr_cs_ro.exe
+WorkingDir=JIT\Methodical\MDArray\InnerProd\structarr_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_cs_d.exe_3934]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_d\arithm32_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_cs_do.exe_3935]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_do\arithm32_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_cs_r.exe_3936]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_r\arithm32_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_cs_ro.exe_3937]
+RelativePath=JIT\Methodical\NaN\arithm32_cs_ro\arithm32_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_d.exe_3938]
+RelativePath=JIT\Methodical\NaN\arithm32_d\arithm32_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_do.exe_3939]
+RelativePath=JIT\Methodical\NaN\arithm32_do\arithm32_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_r.exe_3940]
+RelativePath=JIT\Methodical\NaN\arithm32_r\arithm32_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm32_ro.exe_3941]
+RelativePath=JIT\Methodical\NaN\arithm32_ro\arithm32_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm32_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_cs_d.exe_3942]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_d\arithm64_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_cs_do.exe_3943]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_do\arithm64_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_cs_r.exe_3944]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_r\arithm64_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_cs_ro.exe_3945]
+RelativePath=JIT\Methodical\NaN\arithm64_cs_ro\arithm64_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_d.exe_3946]
+RelativePath=JIT\Methodical\NaN\arithm64_d\arithm64_d.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_do.exe_3947]
+RelativePath=JIT\Methodical\NaN\arithm64_do\arithm64_do.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_r.exe_3948]
+RelativePath=JIT\Methodical\NaN\arithm64_r\arithm64_r.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[arithm64_ro.exe_3949]
+RelativePath=JIT\Methodical\NaN\arithm64_ro\arithm64_ro.exe
+WorkingDir=JIT\Methodical\NaN\arithm64_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[comp32_il_d.exe_3950]
+RelativePath=JIT\Methodical\NaN\comp32_il_d\comp32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[comp32_il_r.exe_3951]
+RelativePath=JIT\Methodical\NaN\comp32_il_r\comp32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp32_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[comp64_il_d.exe_3952]
+RelativePath=JIT\Methodical\NaN\comp64_il_d\comp64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[comp64_il_r.exe_3953]
+RelativePath=JIT\Methodical\NaN\comp64_il_r\comp64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\comp64_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cond32_il_d.exe_3954]
+RelativePath=JIT\Methodical\NaN\cond32_il_d\cond32_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cond32_il_r.exe_3955]
+RelativePath=JIT\Methodical\NaN\cond32_il_r\cond32_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond32_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cond64_il_d.exe_3956]
+RelativePath=JIT\Methodical\NaN\cond64_il_d\cond64_il_d.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cond64_il_r.exe_3957]
+RelativePath=JIT\Methodical\NaN\cond64_il_r\cond64_il_r.exe
+WorkingDir=JIT\Methodical\NaN\cond64_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_cs_d.exe_3958]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_d\intrinsic_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_cs_do.exe_3959]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_do\intrinsic_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_cs_r.exe_3960]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_r\intrinsic_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_cs_ro.exe_3961]
+RelativePath=JIT\Methodical\NaN\intrinsic_cs_ro\intrinsic_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_nonf_il_d.exe_3962]
+RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_d\intrinsic_nonf_il_d.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[intrinsic_nonf_il_r.exe_3963]
+RelativePath=JIT\Methodical\NaN\intrinsic_nonf_il_r\intrinsic_nonf_il_r.exe
+WorkingDir=JIT\Methodical\NaN\intrinsic_nonf_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNadd_cs_d.exe_3964]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_d\r4NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNadd_cs_do.exe_3965]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_do\r4NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNadd_cs_r.exe_3966]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_r\r4NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNadd_cs_ro.exe_3967]
+RelativePath=JIT\Methodical\NaN\r4NaNadd_cs_ro\r4NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4nanconv_il_d.exe_3968]
+RelativePath=JIT\Methodical\NaN\r4nanconv_il_d\r4nanconv_il_d.exe
+WorkingDir=JIT\Methodical\NaN\r4nanconv_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4nanconv_il_r.exe_3969]
+RelativePath=JIT\Methodical\NaN\r4nanconv_il_r\r4nanconv_il_r.exe
+WorkingDir=JIT\Methodical\NaN\r4nanconv_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNdiv_cs_d.exe_3970]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_d\r4NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNdiv_cs_do.exe_3971]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_do\r4NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNdiv_cs_r.exe_3972]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_r\r4NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNdiv_cs_ro.exe_3973]
+RelativePath=JIT\Methodical\NaN\r4NaNdiv_cs_ro\r4NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNdiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNmul_cs_d.exe_3974]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_d\r4NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNmul_cs_do.exe_3975]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_do\r4NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNmul_cs_r.exe_3976]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_r\r4NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNmul_cs_ro.exe_3977]
+RelativePath=JIT\Methodical\NaN\r4NaNmul_cs_ro\r4NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNrem_cs_d.exe_3978]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_d\r4NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNrem_cs_do.exe_3979]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_do\r4NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNrem_cs_r.exe_3980]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_r\r4NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNrem_cs_ro.exe_3981]
+RelativePath=JIT\Methodical\NaN\r4NaNrem_cs_ro\r4NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNsub_cs_d.exe_3982]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_d\r4NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNsub_cs_do.exe_3983]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_do\r4NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNsub_cs_r.exe_3984]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_r\r4NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r4NaNsub_cs_ro.exe_3985]
+RelativePath=JIT\Methodical\NaN\r4NaNsub_cs_ro\r4NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r4NaNsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNadd_cs_d.exe_3986]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_d\r8NaNadd_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNadd_cs_do.exe_3987]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_do\r8NaNadd_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNadd_cs_r.exe_3988]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_r\r8NaNadd_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNadd_cs_ro.exe_3989]
+RelativePath=JIT\Methodical\NaN\r8NaNadd_cs_ro\r8NaNadd_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNadd_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8nanconv_il_d.exe_3990]
+RelativePath=JIT\Methodical\NaN\r8nanconv_il_d\r8nanconv_il_d.exe
+WorkingDir=JIT\Methodical\NaN\r8nanconv_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8nanconv_il_r.exe_3991]
+RelativePath=JIT\Methodical\NaN\r8nanconv_il_r\r8nanconv_il_r.exe
+WorkingDir=JIT\Methodical\NaN\r8nanconv_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNdiv_cs_d.exe_3992]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_d\r8NaNdiv_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNdiv_cs_do.exe_3993]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_do\r8NaNdiv_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNdiv_cs_r.exe_3994]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_r\r8NaNdiv_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNdiv_cs_ro.exe_3995]
+RelativePath=JIT\Methodical\NaN\r8NaNdiv_cs_ro\r8NaNdiv_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNdiv_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNmul_cs_d.exe_3996]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_d\r8NaNmul_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNmul_cs_do.exe_3997]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_do\r8NaNmul_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNmul_cs_r.exe_3998]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_r\r8NaNmul_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNmul_cs_ro.exe_3999]
+RelativePath=JIT\Methodical\NaN\r8NaNmul_cs_ro\r8NaNmul_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNmul_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNrem_cs_d.exe_4000]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_d\r8NaNrem_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNrem_cs_do.exe_4001]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_do\r8NaNrem_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNrem_cs_r.exe_4002]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_r\r8NaNrem_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNrem_cs_ro.exe_4003]
+RelativePath=JIT\Methodical\NaN\r8NaNrem_cs_ro\r8NaNrem_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNrem_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNsub_cs_d.exe_4004]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_d\r8NaNsub_cs_d.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNsub_cs_do.exe_4005]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_do\r8NaNsub_cs_do.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNsub_cs_r.exe_4006]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_r\r8NaNsub_cs_r.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[r8NaNsub_cs_ro.exe_4007]
+RelativePath=JIT\Methodical\NaN\r8NaNsub_cs_ro\r8NaNsub_cs_ro.exe
+WorkingDir=JIT\Methodical\NaN\r8NaNsub_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classic.exe_4008]
+RelativePath=JIT\Methodical\nonvirtualcall\classic\classic.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classic_d.exe_4009]
+RelativePath=JIT\Methodical\nonvirtualcall\classic_d\classic_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[classic_r.exe_4010]
+RelativePath=JIT\Methodical\nonvirtualcall\classic_r\classic_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\classic_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[delegate.exe_4011]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate\delegate.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[delegate_d.exe_4012]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate_d\delegate_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[delegate_r.exe_4013]
+RelativePath=JIT\Methodical\nonvirtualcall\delegate_r\delegate_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\delegate_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics.exe_4014]
+RelativePath=JIT\Methodical\nonvirtualcall\generics\generics.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics2.exe_4015]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2\generics2.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics2_d.exe_4016]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_d\generics2_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics2_r.exe_4017]
+RelativePath=JIT\Methodical\nonvirtualcall\generics2_r\generics2_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics_d.exe_4018]
+RelativePath=JIT\Methodical\nonvirtualcall\generics_d\generics_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[generics_r.exe_4019]
+RelativePath=JIT\Methodical\nonvirtualcall\generics_r\generics_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\generics_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall.exe_4020]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall\tailcall.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall_d.exe_4021]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_d\tailcall_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall_r.exe_4022]
+RelativePath=JIT\Methodical\nonvirtualcall\tailcall_r\tailcall_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\tailcall_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[valuetype.exe_4023]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype\valuetype.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[valuetype_d.exe_4024]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_d\valuetype_d.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[valuetype_r.exe_4025]
+RelativePath=JIT\Methodical\nonvirtualcall\valuetype_r\valuetype_r.exe
+WorkingDir=JIT\Methodical\nonvirtualcall\valuetype_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatInfinitiesToInt_d.exe_4026]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_d\FloatInfinitiesToInt_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatInfinitiesToInt_do.exe_4027]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_do\FloatInfinitiesToInt_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatInfinitiesToInt_r.exe_4028]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_r\FloatInfinitiesToInt_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatInfinitiesToInt_ro.exe_4029]
+RelativePath=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro\FloatInfinitiesToInt_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatInfinitiesToInt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatOvfToInt2_d.exe_4030]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_d\FloatOvfToInt2_d.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatOvfToInt2_do.exe_4031]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_do\FloatOvfToInt2_do.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatOvfToInt2_r.exe_4032]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_r\FloatOvfToInt2_r.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FloatOvfToInt2_ro.exe_4033]
+RelativePath=JIT\Methodical\Overflow\FloatOvfToInt2_ro\FloatOvfToInt2_ro.exe
+WorkingDir=JIT\Methodical\Overflow\FloatOvfToInt2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array1.exe_4034]
+RelativePath=JIT\Methodical\refany\array1\array1.exe
+WorkingDir=JIT\Methodical\refany\array1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array2.exe_4035]
+RelativePath=JIT\Methodical\refany\array2\array2.exe
+WorkingDir=JIT\Methodical\refany\array2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[format.exe_4036]
+RelativePath=JIT\Methodical\refany\format\format.exe
+WorkingDir=JIT\Methodical\refany\format
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gcreport.exe_4037]
+RelativePath=JIT\Methodical\refany\gcreport\gcreport.exe
+WorkingDir=JIT\Methodical\refany\gcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[lcs.exe_4038]
+RelativePath=JIT\Methodical\refany\lcs\lcs.exe
+WorkingDir=JIT\Methodical\refany\lcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[native.exe_4039]
+RelativePath=JIT\Methodical\refany\native\native.exe
+WorkingDir=JIT\Methodical\refany\native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[virtcall.exe_4040]
+RelativePath=JIT\Methodical\refany\virtcall\virtcall.exe
+WorkingDir=JIT\Methodical\refany\virtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbggcreport.exe_4041]
+RelativePath=JIT\Methodical\refany\_dbggcreport\_dbggcreport.exe
+WorkingDir=JIT\Methodical\refany\_dbggcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgnative.exe_4042]
+RelativePath=JIT\Methodical\refany\_dbgnative\_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgstress1.exe_4043]
+RelativePath=JIT\Methodical\refany\_dbgstress1\_dbgstress1.exe
+WorkingDir=JIT\Methodical\refany\_dbgstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgstress3.exe_4044]
+RelativePath=JIT\Methodical\refany\_dbgstress3\_dbgstress3.exe
+WorkingDir=JIT\Methodical\refany\_dbgstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgvirtcall.exe_4045]
+RelativePath=JIT\Methodical\refany\_dbgvirtcall\_dbgvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_dbgvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarray1.exe_4046]
+RelativePath=JIT\Methodical\refany\_il_dbgarray1\_il_dbgarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarray2.exe_4047]
+RelativePath=JIT\Methodical\refany\_il_dbgarray2\_il_dbgarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgarray3.exe_4048]
+RelativePath=JIT\Methodical\refany\_il_dbgarray3\_il_dbgarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgarray3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgformat.exe_4049]
+RelativePath=JIT\Methodical\refany\_il_dbgformat\_il_dbgformat.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgformat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgindcall.exe_4050]
+RelativePath=JIT\Methodical\refany\_il_dbgindcall\_il_dbgindcall.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgindcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglcs.exe_4051]
+RelativePath=JIT\Methodical\refany\_il_dbglcs\_il_dbglcs.exe
+WorkingDir=JIT\Methodical\refany\_il_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglongsig.exe_4052]
+RelativePath=JIT\Methodical\refany\_il_dbglongsig\_il_dbglongsig.exe
+WorkingDir=JIT\Methodical\refany\_il_dbglongsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgnative.exe_4053]
+RelativePath=JIT\Methodical\refany\_il_dbgnative\_il_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgseq.exe_4054]
+RelativePath=JIT\Methodical\refany\_il_dbgseq\_il_dbgseq.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgseq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgshortsig.exe_4055]
+RelativePath=JIT\Methodical\refany\_il_dbgshortsig\_il_dbgshortsig.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgshortsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgstress2.exe_4056]
+RelativePath=JIT\Methodical\refany\_il_dbgstress2\_il_dbgstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgstress2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgu_native.exe_4057]
+RelativePath=JIT\Methodical\refany\_il_dbgu_native\_il_dbgu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_dbgu_native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarray1.exe_4058]
+RelativePath=JIT\Methodical\refany\_il_relarray1\_il_relarray1.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarray2.exe_4059]
+RelativePath=JIT\Methodical\refany\_il_relarray2\_il_relarray2.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relarray3.exe_4060]
+RelativePath=JIT\Methodical\refany\_il_relarray3\_il_relarray3.exe
+WorkingDir=JIT\Methodical\refany\_il_relarray3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relformat.exe_4061]
+RelativePath=JIT\Methodical\refany\_il_relformat\_il_relformat.exe
+WorkingDir=JIT\Methodical\refany\_il_relformat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relindcall.exe_4062]
+RelativePath=JIT\Methodical\refany\_il_relindcall\_il_relindcall.exe
+WorkingDir=JIT\Methodical\refany\_il_relindcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellcs.exe_4063]
+RelativePath=JIT\Methodical\refany\_il_rellcs\_il_rellcs.exe
+WorkingDir=JIT\Methodical\refany\_il_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellongsig.exe_4064]
+RelativePath=JIT\Methodical\refany\_il_rellongsig\_il_rellongsig.exe
+WorkingDir=JIT\Methodical\refany\_il_rellongsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relnative.exe_4065]
+RelativePath=JIT\Methodical\refany\_il_relnative\_il_relnative.exe
+WorkingDir=JIT\Methodical\refany\_il_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relseq.exe_4066]
+RelativePath=JIT\Methodical\refany\_il_relseq\_il_relseq.exe
+WorkingDir=JIT\Methodical\refany\_il_relseq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relshortsig.exe_4067]
+RelativePath=JIT\Methodical\refany\_il_relshortsig\_il_relshortsig.exe
+WorkingDir=JIT\Methodical\refany\_il_relshortsig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relstress2.exe_4068]
+RelativePath=JIT\Methodical\refany\_il_relstress2\_il_relstress2.exe
+WorkingDir=JIT\Methodical\refany\_il_relstress2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relu_native.exe_4069]
+RelativePath=JIT\Methodical\refany\_il_relu_native\_il_relu_native.exe
+WorkingDir=JIT\Methodical\refany\_il_relu_native
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relgcreport.exe_4070]
+RelativePath=JIT\Methodical\refany\_relgcreport\_relgcreport.exe
+WorkingDir=JIT\Methodical\refany\_relgcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relnative.exe_4071]
+RelativePath=JIT\Methodical\refany\_relnative\_relnative.exe
+WorkingDir=JIT\Methodical\refany\_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relstress1.exe_4072]
+RelativePath=JIT\Methodical\refany\_relstress1\_relstress1.exe
+WorkingDir=JIT\Methodical\refany\_relstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relstress3.exe_4073]
+RelativePath=JIT\Methodical\refany\_relstress3\_relstress3.exe
+WorkingDir=JIT\Methodical\refany\_relstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relvirtcall.exe_4074]
+RelativePath=JIT\Methodical\refany\_relvirtcall\_relvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_relvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbggcreport.exe_4075]
+RelativePath=JIT\Methodical\refany\_speed_dbggcreport\_speed_dbggcreport.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbggcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgnative.exe_4076]
+RelativePath=JIT\Methodical\refany\_speed_dbgnative\_speed_dbgnative.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgstress1.exe_4077]
+RelativePath=JIT\Methodical\refany\_speed_dbgstress1\_speed_dbgstress1.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgstress3.exe_4078]
+RelativePath=JIT\Methodical\refany\_speed_dbgstress3\_speed_dbgstress3.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgvirtcall.exe_4079]
+RelativePath=JIT\Methodical\refany\_speed_dbgvirtcall\_speed_dbgvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_speed_dbgvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relgcreport.exe_4080]
+RelativePath=JIT\Methodical\refany\_speed_relgcreport\_speed_relgcreport.exe
+WorkingDir=JIT\Methodical\refany\_speed_relgcreport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relnative.exe_4081]
+RelativePath=JIT\Methodical\refany\_speed_relnative\_speed_relnative.exe
+WorkingDir=JIT\Methodical\refany\_speed_relnative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relstress1.exe_4082]
+RelativePath=JIT\Methodical\refany\_speed_relstress1\_speed_relstress1.exe
+WorkingDir=JIT\Methodical\refany\_speed_relstress1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relstress3.exe_4083]
+RelativePath=JIT\Methodical\refany\_speed_relstress3\_speed_relstress3.exe
+WorkingDir=JIT\Methodical\refany\_speed_relstress3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relvirtcall.exe_4084]
+RelativePath=JIT\Methodical\refany\_speed_relvirtcall\_speed_relvirtcall.exe
+WorkingDir=JIT\Methodical\refany\_speed_relvirtcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1-xassem.exe_4085]
+RelativePath=JIT\Methodical\stringintern\test1-xassem\test1-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test1-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2-xassem.exe_4086]
+RelativePath=JIT\Methodical\stringintern\test2-xassem\test2-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test2-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test4-xassem.exe_4087]
+RelativePath=JIT\Methodical\stringintern\test4-xassem\test4-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\test4-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Simpleb207621.exe_4088]
+RelativePath=JIT\Methodical\stringintern\_Simpleb207621\_Simpleb207621.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpleb207621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Simpletest1.exe_4089]
+RelativePath=JIT\Methodical\stringintern\_Simpletest1\_Simpletest1.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Simpletest2.exe_4090]
+RelativePath=JIT\Methodical\stringintern\_Simpletest2\_Simpletest2.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_Simpletest4.exe_4091]
+RelativePath=JIT\Methodical\stringintern\_Simpletest4\_Simpletest4.exe
+WorkingDir=JIT\Methodical\stringintern\_Simpletest4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XAssemblytest1-xassem.exe_4092]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest1-xassem\_XAssemblytest1-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest1-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XAssemblytest2-xassem.exe_4093]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest2-xassem\_XAssemblytest2-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest2-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XAssemblytest4-xassem.exe_4094]
+RelativePath=JIT\Methodical\stringintern\_XAssemblytest4-xassem\_XAssemblytest4-xassem.exe
+WorkingDir=JIT\Methodical\stringintern\_XAssemblytest4-xassem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XModuletest1-xmod.exe_4095]
+RelativePath=JIT\Methodical\stringintern\_XModuletest1-xmod\_XModuletest1-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest1-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XModuletest2-xmod.exe_4096]
+RelativePath=JIT\Methodical\stringintern\_XModuletest2-xmod\_XModuletest2-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest2-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_XModuletest4-xmod.exe_4097]
+RelativePath=JIT\Methodical\stringintern\_XModuletest4-xmod\_XModuletest4-xmod.exe
+WorkingDir=JIT\Methodical\stringintern\_XModuletest4-xmod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[structinregs.exe_4098]
+RelativePath=JIT\Methodical\structs\systemvbringup\structinregs\structinregs.exe
+WorkingDir=JIT\Methodical\structs\systemvbringup\structinregs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch1.exe_4099]
+RelativePath=JIT\Methodical\switch\switch1\switch1.exe
+WorkingDir=JIT\Methodical\switch\switch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch10.exe_4100]
+RelativePath=JIT\Methodical\switch\switch10\switch10.exe
+WorkingDir=JIT\Methodical\switch\switch10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch11.exe_4101]
+RelativePath=JIT\Methodical\switch\switch11\switch11.exe
+WorkingDir=JIT\Methodical\switch\switch11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch2.exe_4102]
+RelativePath=JIT\Methodical\switch\switch2\switch2.exe
+WorkingDir=JIT\Methodical\switch\switch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch3.exe_4103]
+RelativePath=JIT\Methodical\switch\switch3\switch3.exe
+WorkingDir=JIT\Methodical\switch\switch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch4.exe_4104]
+RelativePath=JIT\Methodical\switch\switch4\switch4.exe
+WorkingDir=JIT\Methodical\switch\switch4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch5.exe_4105]
+RelativePath=JIT\Methodical\switch\switch5\switch5.exe
+WorkingDir=JIT\Methodical\switch\switch5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch6.exe_4106]
+RelativePath=JIT\Methodical\switch\switch6\switch6.exe
+WorkingDir=JIT\Methodical\switch\switch6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch7.exe_4107]
+RelativePath=JIT\Methodical\switch\switch7\switch7.exe
+WorkingDir=JIT\Methodical\switch\switch7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch8.exe_4108]
+RelativePath=JIT\Methodical\switch\switch8\switch8.exe
+WorkingDir=JIT\Methodical\switch\switch8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[switch9.exe_4109]
+RelativePath=JIT\Methodical\switch\switch9\switch9.exe
+WorkingDir=JIT\Methodical\switch\switch9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relthread-race.exe_4110]
+RelativePath=JIT\Methodical\tailcall\Desktop\_il_relthread-race\_il_relthread-race.exe
+WorkingDir=JIT\Methodical\tailcall\Desktop\_il_relthread-race
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_enum.exe_4111]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_enum\_il_dbgcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_i2_bool.exe_4112]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool\_il_dbgcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i2_bool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_i4_i1.exe_4113]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1\_il_dbgcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_i4_u.exe_4114]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i4_u\_il_dbgcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i4_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_i_u2.exe_4115]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_i_u2\_il_dbgcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_i_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_obj.exe_4116]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_obj\_il_dbgcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_obj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_r4_r8.exe_4117]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8\_il_dbgcompat_r4_r8.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_r4_r8_inl.exe_4118]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl\_il_dbgcompat_r4_r8_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r4_r8_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_r8_r4.exe_4119]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4\_il_dbgcompat_r8_r4.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_r8_r4_inl.exe_4120]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl\_il_dbgcompat_r8_r4_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_r8_r4_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcompat_v.exe_4121]
+RelativePath=JIT\Methodical\tailcall\_il_dbgcompat_v\_il_dbgcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgcompat_v
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_array.exe_4122]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array\_il_dbgdeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_array_nz.exe_4123]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_array_nz\_il_dbgdeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_array_nz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_gc.exe_4124]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_gc\_il_dbgdeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_gc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_inst.exe_4125]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_inst\_il_dbgdeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_inst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_value.exe_4126]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_value\_il_dbgdeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdeep_virt.exe_4127]
+RelativePath=JIT\Methodical\tailcall\_il_dbgdeep_virt\_il_dbgdeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgdeep_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbggcval.exe_4128]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval\_il_dbggcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbggcval_nested.exe_4129]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_nested\_il_dbggcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbggcval_sideeffect.exe_4130]
+RelativePath=JIT\Methodical\tailcall\_il_dbggcval_sideeffect\_il_dbggcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbggcval_sideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgpointer.exe_4131]
+RelativePath=JIT\Methodical\tailcall\_il_dbgpointer\_il_dbgpointer.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgpointer_i.exe_4132]
+RelativePath=JIT\Methodical\tailcall\_il_dbgpointer_i\_il_dbgpointer_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgpointer_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_ep.exe_4133]
+RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep\_il_dbgrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrecurse_ep_void.exe_4134]
+RelativePath=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void\_il_dbgrecurse_ep_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgrecurse_ep_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgreference_i.exe_4135]
+RelativePath=JIT\Methodical\tailcall\_il_dbgreference_i\_il_dbgreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgreference_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_2a.exe_4136]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2a\_il_dbgtest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_2b.exe_4137]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2b\_il_dbgtest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_2c.exe_4138]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_2c\_il_dbgtest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_3b.exe_4139]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_3b\_il_dbgtest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_implicit.exe_4140]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_implicit\_il_dbgtest_implicit.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_implicit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_mutual_rec.exe_4141]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec\_il_dbgtest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_mutual_rec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_switch.exe_4142]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_switch\_il_dbgtest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_virt.exe_4143]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_virt\_il_dbgtest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgtest_void.exe_4144]
+RelativePath=JIT\Methodical\tailcall\_il_dbgtest_void\_il_dbgtest_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_dbgtest_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_enum.exe_4145]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_enum\_il_relcompat_enum.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_enum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_i2_bool.exe_4146]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i2_bool\_il_relcompat_i2_bool.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i2_bool
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_i4_i1.exe_4147]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_i1\_il_relcompat_i4_i1.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_i1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_i4_u.exe_4148]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i4_u\_il_relcompat_i4_u.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i4_u
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_i_u2.exe_4149]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_i_u2\_il_relcompat_i_u2.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_i_u2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_obj.exe_4150]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_obj\_il_relcompat_obj.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_obj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_r4_r8.exe_4151]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8\_il_relcompat_r4_r8.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_r4_r8_inl.exe_4152]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl\_il_relcompat_r4_r8_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r4_r8_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_r8_r4.exe_4153]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4\_il_relcompat_r8_r4.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_r8_r4_inl.exe_4154]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl\_il_relcompat_r8_r4_inl.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_r8_r4_inl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcompat_v.exe_4155]
+RelativePath=JIT\Methodical\tailcall\_il_relcompat_v\_il_relcompat_v.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relcompat_v
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_array.exe_4156]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array\_il_reldeep_array.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_array_nz.exe_4157]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_array_nz\_il_reldeep_array_nz.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_array_nz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_gc.exe_4158]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_gc\_il_reldeep_gc.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_gc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_inst.exe_4159]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_inst\_il_reldeep_inst.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_inst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_value.exe_4160]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_value\_il_reldeep_value.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldeep_virt.exe_4161]
+RelativePath=JIT\Methodical\tailcall\_il_reldeep_virt\_il_reldeep_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reldeep_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relgcval.exe_4162]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval\_il_relgcval.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relgcval_nested.exe_4163]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_nested\_il_relgcval_nested.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relgcval_sideeffect.exe_4164]
+RelativePath=JIT\Methodical\tailcall\_il_relgcval_sideeffect\_il_relgcval_sideeffect.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relgcval_sideeffect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relpointer.exe_4165]
+RelativePath=JIT\Methodical\tailcall\_il_relpointer\_il_relpointer.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relpointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relpointer_i.exe_4166]
+RelativePath=JIT\Methodical\tailcall\_il_relpointer_i\_il_relpointer_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relpointer_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_ep.exe_4167]
+RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep\_il_relrecurse_ep.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrecurse_ep_void.exe_4168]
+RelativePath=JIT\Methodical\tailcall\_il_relrecurse_ep_void\_il_relrecurse_ep_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relrecurse_ep_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relreference_i.exe_4169]
+RelativePath=JIT\Methodical\tailcall\_il_relreference_i\_il_relreference_i.exe
+WorkingDir=JIT\Methodical\tailcall\_il_relreference_i
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_2a.exe_4170]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2a\_il_reltest_2a.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_2b.exe_4171]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2b\_il_reltest_2b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_2c.exe_4172]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_2c\_il_reltest_2c.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_2c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_3b.exe_4173]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_3b\_il_reltest_3b.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_implicit.exe_4174]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_implicit\_il_reltest_implicit.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_implicit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_mutual_rec.exe_4175]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_mutual_rec\_il_reltest_mutual_rec.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_mutual_rec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_switch.exe_4176]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_switch\_il_reltest_switch.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_switch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_virt.exe_4177]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_virt\_il_reltest_virt.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_virt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reltest_void.exe_4178]
+RelativePath=JIT\Methodical\tailcall\_il_reltest_void\_il_reltest_void.exe
+WorkingDir=JIT\Methodical\tailcall\_il_reltest_void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[delegateParamCallTarget.exe_4179]
+RelativePath=JIT\Methodical\tailcall_v4\delegateParamCallTarget\delegateParamCallTarget.exe
+WorkingDir=JIT\Methodical\tailcall_v4\delegateParamCallTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[delegatetail.exe_4180]
+RelativePath=JIT\Methodical\tailcall_v4\delegatetail\delegatetail.exe
+WorkingDir=JIT\Methodical\tailcall_v4\delegatetail
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[hijacking.exe_4181]
+RelativePath=JIT\Methodical\tailcall_v4\hijacking\hijacking.exe
+WorkingDir=JIT\Methodical\tailcall_v4\hijacking
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[smallFrame.exe_4182]
+RelativePath=JIT\Methodical\tailcall_v4\smallFrame\smallFrame.exe
+WorkingDir=JIT\Methodical\tailcall_v4\smallFrame
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[tailcall_AV.exe_4183]
+RelativePath=JIT\Methodical\tailcall_v4\tailcall_AV\tailcall_AV.exe
+WorkingDir=JIT\Methodical\tailcall_v4\tailcall_AV
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-0.exe_4184]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-0\_dbgunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-1.exe_4185]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-1\_dbgunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-2.exe_4186]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-2\_dbgunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-3.exe_4187]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-3\_dbgunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-4.exe_4188]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-4\_dbgunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-5.exe_4189]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-5\_dbgunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunsafe-6.exe_4190]
+RelativePath=JIT\Methodical\unsafecsharp\_dbgunsafe-6\_dbgunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_dbgunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-0.exe_4191]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-0\_relunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-1.exe_4192]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-1\_relunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-2.exe_4193]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-2\_relunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-3.exe_4194]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-3\_relunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-4.exe_4195]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-4\_relunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-5.exe_4196]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-5\_relunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunsafe-6.exe_4197]
+RelativePath=JIT\Methodical\unsafecsharp\_relunsafe-6\_relunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_relunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-0.exe_4198]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0\_speed_dbgunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-1.exe_4199]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1\_speed_dbgunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-2.exe_4200]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2\_speed_dbgunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-3.exe_4201]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3\_speed_dbgunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-4.exe_4202]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4\_speed_dbgunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-5.exe_4203]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5\_speed_dbgunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunsafe-6.exe_4204]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6\_speed_dbgunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_dbgunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-0.exe_4205]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-0\_speed_relunsafe-0.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-1.exe_4206]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-1\_speed_relunsafe-1.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-2.exe_4207]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-2\_speed_relunsafe-2.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-3.exe_4208]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-3\_speed_relunsafe-3.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-4.exe_4209]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-4\_speed_relunsafe-4.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-5.exe_4210]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-5\_speed_relunsafe-5.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunsafe-6.exe_4211]
+RelativePath=JIT\Methodical\unsafecsharp\_speed_relunsafe-6\_speed_relunsafe-6.exe
+WorkingDir=JIT\Methodical\unsafecsharp\_speed_relunsafe-6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gc_ctor_il_d.exe_4212]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_d\gc_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gc_ctor_il_r.exe_4213]
+RelativePath=JIT\Methodical\varargs\callconv\gc_ctor_il_r\gc_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\gc_ctor_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[val_ctor_il_d.exe_4214]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_d\val_ctor_il_d.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[val_ctor_il_r.exe_4215]
+RelativePath=JIT\Methodical\varargs\callconv\val_ctor_il_r\val_ctor_il_r.exe
+WorkingDir=JIT\Methodical\varargs\callconv\val_ctor_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev10_615402.exe_4216]
+RelativePath=JIT\Methodical\varargs\misc\Dev10_615402\Dev10_615402.exe
+WorkingDir=JIT\Methodical\varargs\misc\Dev10_615402
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fault_il_d.exe_4217]
+RelativePath=JIT\Methodical\varargs\seh\fault_il_d\fault_il_d.exe
+WorkingDir=JIT\Methodical\varargs\seh\fault_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fault_il_r.exe_4218]
+RelativePath=JIT\Methodical\varargs\seh\fault_il_r\fault_il_r.exe
+WorkingDir=JIT\Methodical\varargs\seh\fault_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter_il_d.exe_4219]
+RelativePath=JIT\Methodical\varargs\seh\filter_il_d\filter_il_d.exe
+WorkingDir=JIT\Methodical\varargs\seh\filter_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[filter_il_r.exe_4220]
+RelativePath=JIT\Methodical\varargs\seh\filter_il_r\filter_il_r.exe
+WorkingDir=JIT\Methodical\varargs\seh\filter_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgcall.exe_4221]
+RelativePath=JIT\Methodical\VT\callconv\_dbgcall\_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgjumper.exe_4222]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumper\_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgjumps.exe_4223]
+RelativePath=JIT\Methodical\VT\callconv\_dbgjumps\_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgjumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgvtret.exe_4224]
+RelativePath=JIT\Methodical\VT\callconv\_dbgvtret\_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgaa.exe_4225]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgaa\_il_dbgaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgaa
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgcalli.exe_4226]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgcalli\_il_dbgcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgcalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgdd.exe_4227]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgdd\_il_dbgdd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgee.exe_4228]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgee\_il_dbgee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumper1.exe_4229]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper1\_il_dbgjumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumper2.exe_4230]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper2\_il_dbgjumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumper3.exe_4231]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper3\_il_dbgjumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumper4.exe_4232]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper4\_il_dbgjumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumper5.exe_4233]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumper5\_il_dbgjumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumper5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumps1.exe_4234]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps1\_il_dbgjumps1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumps2.exe_4235]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps2\_il_dbgjumps2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumps3.exe_4236]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps3\_il_dbgjumps3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumps4.exe_4237]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps4\_il_dbgjumps4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgjumps5.exe_4238]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgjumps5\_il_dbgjumps5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgjumps5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvtret.exe_4239]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret\_il_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvtret2.exe_4240]
+RelativePath=JIT\Methodical\VT\callconv\_il_dbgvtret2\_il_dbgvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_dbgvtret2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relaa.exe_4241]
+RelativePath=JIT\Methodical\VT\callconv\_il_relaa\_il_relaa.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relaa
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relcalli.exe_4242]
+RelativePath=JIT\Methodical\VT\callconv\_il_relcalli\_il_relcalli.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relcalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reldd.exe_4243]
+RelativePath=JIT\Methodical\VT\callconv\_il_reldd\_il_reldd.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reldd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relee.exe_4244]
+RelativePath=JIT\Methodical\VT\callconv\_il_relee\_il_relee.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumper1.exe_4245]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper1\_il_reljumper1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumper2.exe_4246]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper2\_il_reljumper2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumper3.exe_4247]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper3\_il_reljumper3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumper4.exe_4248]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper4\_il_reljumper4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumper5.exe_4249]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumper5\_il_reljumper5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumper5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumps1.exe_4250]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps1\_il_reljumps1.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumps2.exe_4251]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps2\_il_reljumps2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumps3.exe_4252]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps3\_il_reljumps3.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumps4.exe_4253]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps4\_il_reljumps4.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_reljumps5.exe_4254]
+RelativePath=JIT\Methodical\VT\callconv\_il_reljumps5\_il_reljumps5.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_reljumps5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvtret.exe_4255]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret\_il_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvtret2.exe_4256]
+RelativePath=JIT\Methodical\VT\callconv\_il_relvtret2\_il_relvtret2.exe
+WorkingDir=JIT\Methodical\VT\callconv\_il_relvtret2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relcall.exe_4257]
+RelativePath=JIT\Methodical\VT\callconv\_relcall\_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reljumper.exe_4258]
+RelativePath=JIT\Methodical\VT\callconv\_reljumper\_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_reljumps.exe_4259]
+RelativePath=JIT\Methodical\VT\callconv\_reljumps\_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_reljumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relvtret.exe_4260]
+RelativePath=JIT\Methodical\VT\callconv\_relvtret\_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgcall.exe_4261]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgcall\_speed_dbgcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgjumper.exe_4262]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumper\_speed_dbgjumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgjumps.exe_4263]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgjumps\_speed_dbgjumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgjumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgvtret.exe_4264]
+RelativePath=JIT\Methodical\VT\callconv\_speed_dbgvtret\_speed_dbgvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_dbgvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relcall.exe_4265]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relcall\_speed_relcall.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reljumper.exe_4266]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumper\_speed_reljumper.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumper
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_reljumps.exe_4267]
+RelativePath=JIT\Methodical\VT\callconv\_speed_reljumps\_speed_reljumps.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_reljumps
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relvtret.exe_4268]
+RelativePath=JIT\Methodical\VT\callconv\_speed_relvtret\_speed_relvtret.exe
+WorkingDir=JIT\Methodical\VT\callconv\_speed_relvtret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[gc_nested.exe_4269]
+RelativePath=JIT\Methodical\VT\etc\gc_nested\gc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\gc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nested.exe_4270]
+RelativePath=JIT\Methodical\VT\etc\nested\nested.exe
+WorkingDir=JIT\Methodical\VT\etc\nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgctor_recurse.exe_4271]
+RelativePath=JIT\Methodical\VT\etc\_dbgctor_recurse\_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbggc_nested.exe_4272]
+RelativePath=JIT\Methodical\VT\etc\_dbggc_nested\_dbggc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbggc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbghan2.exe_4273]
+RelativePath=JIT\Methodical\VT\etc\_dbghan2\_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbghan3.exe_4274]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3\_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbghan3_ctor.exe_4275]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ctor\_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbghan3_ref.exe_4276]
+RelativePath=JIT\Methodical\VT\etc\_dbghan3_ref\_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbghanoi.exe_4277]
+RelativePath=JIT\Methodical\VT\etc\_dbghanoi\_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgknight.exe_4278]
+RelativePath=JIT\Methodical\VT\etc\_dbgknight\_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgnested.exe_4279]
+RelativePath=JIT\Methodical\VT\etc\_dbgnested\_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghan3.exe_4280]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3\_il_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghan3_ctor.exe_4281]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ctor\_il_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghan3_ref.exe_4282]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghan3_ref\_il_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghanoi.exe_4283]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi\_il_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghanoi2.exe_4284]
+RelativePath=JIT\Methodical\VT\etc\_il_dbghanoi2\_il_dbghanoi2.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbghanoi2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgknight.exe_4285]
+RelativePath=JIT\Methodical\VT\etc\_il_dbgknight\_il_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgnested.exe_4286]
+RelativePath=JIT\Methodical\VT\etc\_il_dbgnested\_il_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhan3.exe_4287]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3\_il_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhan3_ctor.exe_4288]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ctor\_il_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhan3_ref.exe_4289]
+RelativePath=JIT\Methodical\VT\etc\_il_relhan3_ref\_il_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhanoi.exe_4290]
+RelativePath=JIT\Methodical\VT\etc\_il_relhanoi\_il_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhanoi2.exe_4291]
+RelativePath=JIT\Methodical\VT\etc\_il_relhanoi2\_il_relhanoi2.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relhanoi2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relknight.exe_4292]
+RelativePath=JIT\Methodical\VT\etc\_il_relknight\_il_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relnested.exe_4293]
+RelativePath=JIT\Methodical\VT\etc\_il_relnested\_il_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_il_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relctor_recurse.exe_4294]
+RelativePath=JIT\Methodical\VT\etc\_relctor_recurse\_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_relctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relgc_nested.exe_4295]
+RelativePath=JIT\Methodical\VT\etc\_relgc_nested\_relgc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_relgc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relhan2.exe_4296]
+RelativePath=JIT\Methodical\VT\etc\_relhan2\_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relhan3.exe_4297]
+RelativePath=JIT\Methodical\VT\etc\_relhan3\_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relhan3_ctor.exe_4298]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ctor\_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relhan3_ref.exe_4299]
+RelativePath=JIT\Methodical\VT\etc\_relhan3_ref\_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relhanoi.exe_4300]
+RelativePath=JIT\Methodical\VT\etc\_relhanoi\_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relknight.exe_4301]
+RelativePath=JIT\Methodical\VT\etc\_relknight\_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relnested.exe_4302]
+RelativePath=JIT\Methodical\VT\etc\_relnested\_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgctor_recurse.exe_4303]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgctor_recurse\_speed_dbgctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbggc_nested.exe_4304]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbggc_nested\_speed_dbggc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbggc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbghan2.exe_4305]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan2\_speed_dbghan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbghan3.exe_4306]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3\_speed_dbghan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbghan3_ctor.exe_4307]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ctor\_speed_dbghan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbghan3_ref.exe_4308]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghan3_ref\_speed_dbghan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbghanoi.exe_4309]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbghanoi\_speed_dbghanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbghanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgknight.exe_4310]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgknight\_speed_dbgknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgnested.exe_4311]
+RelativePath=JIT\Methodical\VT\etc\_speed_dbgnested\_speed_dbgnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_dbgnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relctor_recurse.exe_4312]
+RelativePath=JIT\Methodical\VT\etc\_speed_relctor_recurse\_speed_relctor_recurse.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relctor_recurse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relgc_nested.exe_4313]
+RelativePath=JIT\Methodical\VT\etc\_speed_relgc_nested\_speed_relgc_nested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relgc_nested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relhan2.exe_4314]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan2\_speed_relhan2.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relhan3.exe_4315]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3\_speed_relhan3.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relhan3_ctor.exe_4316]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ctor\_speed_relhan3_ctor.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relhan3_ref.exe_4317]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhan3_ref\_speed_relhan3_ref.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhan3_ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relhanoi.exe_4318]
+RelativePath=JIT\Methodical\VT\etc\_speed_relhanoi\_speed_relhanoi.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relhanoi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relknight.exe_4319]
+RelativePath=JIT\Methodical\VT\etc\_speed_relknight\_speed_relknight.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relknight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relnested.exe_4320]
+RelativePath=JIT\Methodical\VT\etc\_speed_relnested\_speed_relnested.exe
+WorkingDir=JIT\Methodical\VT\etc\_speed_relnested
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgaccum.exe_4321]
+RelativePath=JIT\Methodical\VT\identity\_dbgaccum\_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgvcall.exe_4322]
+RelativePath=JIT\Methodical\VT\identity\_dbgvcall\_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_dbgvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgaccum.exe_4323]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgaccum\_il_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglivecall.exe_4324]
+RelativePath=JIT\Methodical\VT\identity\_il_dbglivecall\_il_dbglivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbglivecall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgvolatile.exe_4325]
+RelativePath=JIT\Methodical\VT\identity\_il_dbgvolatile\_il_dbgvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_dbgvolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relaccum.exe_4326]
+RelativePath=JIT\Methodical\VT\identity\_il_relaccum\_il_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellivecall.exe_4327]
+RelativePath=JIT\Methodical\VT\identity\_il_rellivecall\_il_rellivecall.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_rellivecall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relvolatile.exe_4328]
+RelativePath=JIT\Methodical\VT\identity\_il_relvolatile\_il_relvolatile.exe
+WorkingDir=JIT\Methodical\VT\identity\_il_relvolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relaccum.exe_4329]
+RelativePath=JIT\Methodical\VT\identity\_relaccum\_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relvcall.exe_4330]
+RelativePath=JIT\Methodical\VT\identity\_relvcall\_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_relvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgaccum.exe_4331]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgaccum\_speed_dbgaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgvcall.exe_4332]
+RelativePath=JIT\Methodical\VT\identity\_speed_dbgvcall\_speed_dbgvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_dbgvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relaccum.exe_4333]
+RelativePath=JIT\Methodical\VT\identity\_speed_relaccum\_speed_relaccum.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relaccum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relvcall.exe_4334]
+RelativePath=JIT\Methodical\VT\identity\_speed_relvcall\_speed_relvcall.exe
+WorkingDir=JIT\Methodical\VT\identity\_speed_relvcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs.exe_4335]
+RelativePath=JIT\Methodical\VT\port\_dbglcs\_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbglcs_gcref.exe_4336]
+RelativePath=JIT\Methodical\VT\port\_dbglcs_gcref\_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_dbglcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbghuge_gcref.exe_4337]
+RelativePath=JIT\Methodical\VT\port\_il_dbghuge_gcref\_il_dbghuge_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_il_dbghuge_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relhuge_gcref.exe_4338]
+RelativePath=JIT\Methodical\VT\port\_il_relhuge_gcref\_il_relhuge_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_il_relhuge_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs.exe_4339]
+RelativePath=JIT\Methodical\VT\port\_rellcs\_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_rellcs_gcref.exe_4340]
+RelativePath=JIT\Methodical\VT\port\_rellcs_gcref\_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_rellcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs.exe_4341]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs\_speed_dbglcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbglcs_gcref.exe_4342]
+RelativePath=JIT\Methodical\VT\port\_speed_dbglcs_gcref\_speed_dbglcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_dbglcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs.exe_4343]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs\_speed_rellcs.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_rellcs_gcref.exe_4344]
+RelativePath=JIT\Methodical\VT\port\_speed_rellcs_gcref\_speed_rellcs_gcref.exe
+WorkingDir=JIT\Methodical\VT\port\_speed_rellcs_gcref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk3_il_d.exe_4345]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_d\cpblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[cpblk3_il_r.exe_4346]
+RelativePath=JIT\Methodical\xxblk\cpblk3_il_r\cpblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\cpblk3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk3_il_d.exe_4347]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_d\initblk3_il_d.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[initblk3_il_r.exe_4348]
+RelativePath=JIT\Methodical\xxblk\initblk3_il_r\initblk3_il_r.exe
+WorkingDir=JIT\Methodical\xxblk\initblk3_il_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_I.exe_4349]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I\_il_dbgldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_I8.exe_4350]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8\_il_dbgldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_R4.exe_4351]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4\_il_dbgldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_R8.exe_4352]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8\_il_dbgldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_U2.exe_4353]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2\_il_dbgldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldobj_V.exe_4354]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V\_il_dbgldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_dbgldobj_V
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_I.exe_4355]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I\_il_relldobj_I.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_I8.exe_4356]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8\_il_relldobj_I8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_R4.exe_4357]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4\_il_relldobj_R4.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_R8.exe_4358]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8\_il_relldobj_R8.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_U2.exe_4359]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2\_il_relldobj_U2.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldobj_V.exe_4360]
+RelativePath=JIT\Methodical\xxobj\ldobj\_il_relldobj_V\_il_relldobj_V.exe
+WorkingDir=JIT\Methodical\xxobj\ldobj\_il_relldobj_V
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[refanyval.exe_4361]
+RelativePath=JIT\Methodical\xxobj\operand\refanyval\refanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\refanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgrefanyval.exe_4362]
+RelativePath=JIT\Methodical\xxobj\operand\_dbgrefanyval\_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgunbox.exe_4363]
+RelativePath=JIT\Methodical\xxobj\operand\_dbgunbox\_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgconst.exe_4364]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgconst\_il_dbgconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgconst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgldelema.exe_4365]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgldelema\_il_dbgldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgldelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbglocalloc.exe_4366]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbglocalloc\_il_dbglocalloc.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbglocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgmdarray.exe_4367]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgmdarray\_il_dbgmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgmdarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgrefanyval.exe_4368]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgrefanyval\_il_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgunbox.exe_4369]
+RelativePath=JIT\Methodical\xxobj\operand\_il_dbgunbox\_il_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relconst.exe_4370]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relconst\_il_relconst.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relconst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relldelema.exe_4371]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relldelema\_il_relldelema.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relldelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_rellocalloc.exe_4372]
+RelativePath=JIT\Methodical\xxobj\operand\_il_rellocalloc\_il_rellocalloc.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_rellocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relmdarray.exe_4373]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relmdarray\_il_relmdarray.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relmdarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relrefanyval.exe_4374]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relrefanyval\_il_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relunbox.exe_4375]
+RelativePath=JIT\Methodical\xxobj\operand\_il_relunbox\_il_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_il_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relrefanyval.exe_4376]
+RelativePath=JIT\Methodical\xxobj\operand\_relrefanyval\_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relunbox.exe_4377]
+RelativePath=JIT\Methodical\xxobj\operand\_relunbox\_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgrefanyval.exe_4378]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval\_speed_dbgrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgunbox.exe_4379]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_dbgunbox\_speed_dbgunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_dbgunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relrefanyval.exe_4380]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_relrefanyval\_speed_relrefanyval.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_relrefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relunbox.exe_4381]
+RelativePath=JIT\Methodical\xxobj\operand\_speed_relunbox\_speed_relunbox.exe
+WorkingDir=JIT\Methodical\xxobj\operand\_speed_relunbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsizeof32.exe_4382]
+RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof32\_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_dbgsizeof64.exe_4383]
+RelativePath=JIT\Methodical\xxobj\sizeof\_dbgsizeof64\_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsizeof.exe_4384]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof\_il_dbgsizeof.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsizeof32.exe_4385]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32\_il_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_dbgsizeof64.exe_4386]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64\_il_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsizeof.exe_4387]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof\_il_relsizeof.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsizeof32.exe_4388]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof32\_il_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_il_relsizeof64.exe_4389]
+RelativePath=JIT\Methodical\xxobj\sizeof\_il_relsizeof64\_il_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_il_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsizeof32.exe_4390]
+RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof32\_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_relsizeof64.exe_4391]
+RelativePath=JIT\Methodical\xxobj\sizeof\_relsizeof64\_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgsizeof32.exe_4392]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32\_speed_dbgsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_dbgsizeof64.exe_4393]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64\_speed_dbgsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_dbgsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relsizeof32.exe_4394]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32\_speed_relsizeof32.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_speed_relsizeof64.exe_4395]
+RelativePath=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64\_speed_relsizeof64.exe
+WorkingDir=JIT\Methodical\xxobj\sizeof\_speed_relsizeof64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ConstantProp.exe_4396]
+RelativePath=JIT\opt\AssertionPropagation\ConstantProp\ConstantProp.exe
+WorkingDir=JIT\opt\AssertionPropagation\ConstantProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CopyProp.exe_4397]
+RelativePath=JIT\opt\AssertionPropagation\CopyProp\CopyProp.exe
+WorkingDir=JIT\opt\AssertionPropagation\CopyProp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CPropOverflow.exe_4398]
+RelativePath=JIT\opt\AssertionPropagation\CPropOverflow\CPropOverflow.exe
+WorkingDir=JIT\opt\AssertionPropagation\CPropOverflow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion1.exe_4399]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion1\NullCheckAssertion1.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion2.exe_4400]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion2\NullCheckAssertion2.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion3.exe_4401]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion3\NullCheckAssertion3.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion4.exe_4402]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion4\NullCheckAssertion4.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion5.exe_4403]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion5\NullCheckAssertion5.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion6.exe_4404]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion6\NullCheckAssertion6.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NullCheckAssertion7.exe_4405]
+RelativePath=JIT\opt\AssertionPropagation\NullCheckAssertion7\NullCheckAssertion7.exe
+WorkingDir=JIT\opt\AssertionPropagation\NullCheckAssertion7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bug573840.exe_4406]
+RelativePath=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840\bug573840.exe
+WorkingDir=JIT\opt\AssertionPropagation\regression\dev10\bug573840\bug573840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TypeOfAssertion.exe_4407]
+RelativePath=JIT\opt\AssertionPropagation\TypeOfAssertion\TypeOfAssertion.exe
+WorkingDir=JIT\opt\AssertionPropagation\TypeOfAssertion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BBCnt1.exe_4408]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\BBCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CodeSize1.exe_4409]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\CodeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InstrCnt1.exe_4410]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\InstrCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVNumCnt1.exe_4411]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVNumCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVRefCnt1.exe_4412]
+RelativePath=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\DumpDisasm\JitMinOpts\LVRefCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TailCallCases.exe_4413]
+RelativePath=JIT\opt\ETW\TailCallCases\TailCallCases.exe
+WorkingDir=JIT\opt\ETW\TailCallCases
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[badcallee.exe_4414]
+RelativePath=JIT\opt\Inline\regression\badcallee\badcallee\badcallee.exe
+WorkingDir=JIT\opt\Inline\regression\badcallee\badcallee
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[inliningVars.exe_4415]
+RelativePath=JIT\opt\Inline\regression\bug584219\inliningVars\inliningVars.exe
+WorkingDir=JIT\opt\Inline\regression\bug584219\inliningVars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bug595776.exe_4416]
+RelativePath=JIT\opt\Inline\regression\bug595776\bug595776\bug595776.exe
+WorkingDir=JIT\opt\Inline\regression\bug595776\bug595776
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mismatch32.exe_4417]
+RelativePath=JIT\opt\Inline\regression\mismatch32\mismatch32\mismatch32.exe
+WorkingDir=JIT\opt\Inline\regression\mismatch32\mismatch32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mismatch64.exe_4418]
+RelativePath=JIT\opt\Inline\regression\mismatch64\mismatch64\mismatch64.exe
+WorkingDir=JIT\opt\Inline\regression\mismatch64\mismatch64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[args1.exe_4419]
+RelativePath=JIT\opt\Inline\tests\args1\args1.exe
+WorkingDir=JIT\opt\Inline\tests\args1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[args2.exe_4420]
+RelativePath=JIT\opt\Inline\tests\args2\args2.exe
+WorkingDir=JIT\opt\Inline\tests\args2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[args3.exe_4421]
+RelativePath=JIT\opt\Inline\tests\args3\args3.exe
+WorkingDir=JIT\opt\Inline\tests\args3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[array.exe_4422]
+RelativePath=JIT\opt\Inline\tests\array\array.exe
+WorkingDir=JIT\opt\Inline\tests\array
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayOfStructs.exe_4423]
+RelativePath=JIT\opt\Inline\tests\ArrayOfStructs\ArrayOfStructs.exe
+WorkingDir=JIT\opt\Inline\tests\ArrayOfStructs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[debug.exe_4424]
+RelativePath=JIT\opt\Inline\tests\debug\debug.exe
+WorkingDir=JIT\opt\Inline\tests\debug
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[deepcall.exe_4425]
+RelativePath=JIT\opt\Inline\tests\deepcall\deepcall.exe
+WorkingDir=JIT\opt\Inline\tests\deepcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DelegInstanceFtn.exe_4426]
+RelativePath=JIT\opt\Inline\tests\DelegInstanceFtn\DelegInstanceFtn.exe
+WorkingDir=JIT\opt\Inline\tests\DelegInstanceFtn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DelegStaticFtn.exe_4427]
+RelativePath=JIT\opt\Inline\tests\DelegStaticFtn\DelegStaticFtn.exe
+WorkingDir=JIT\opt\Inline\tests\DelegStaticFtn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fact.exe_4428]
+RelativePath=JIT\opt\Inline\tests\fact\fact.exe
+WorkingDir=JIT\opt\Inline\tests\fact
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GenericStructs.exe_4429]
+RelativePath=JIT\opt\Inline\tests\GenericStructs\GenericStructs.exe
+WorkingDir=JIT\opt\Inline\tests\GenericStructs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ifelse.exe_4430]
+RelativePath=JIT\opt\Inline\tests\ifelse\ifelse.exe
+WorkingDir=JIT\opt\Inline\tests\ifelse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[indexer.exe_4431]
+RelativePath=JIT\opt\Inline\tests\indexer\indexer.exe
+WorkingDir=JIT\opt\Inline\tests\indexer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline.exe_4432]
+RelativePath=JIT\opt\Inline\tests\Inline\Inline.exe
+WorkingDir=JIT\opt\Inline\tests\Inline
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InlineThrow.exe_4433]
+RelativePath=JIT\opt\Inline\tests\InlineThrow\InlineThrow.exe
+WorkingDir=JIT\opt\Inline\tests\InlineThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_DelegateStruct.exe_4434]
+RelativePath=JIT\opt\Inline\tests\Inline_DelegateStruct\Inline_DelegateStruct.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_DelegateStruct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_GenericMethods.exe_4435]
+RelativePath=JIT\opt\Inline\tests\Inline_GenericMethods\Inline_GenericMethods.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_GenericMethods
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_handler.exe_4436]
+RelativePath=JIT\opt\Inline\tests\Inline_handler\Inline_handler.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_handler
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_Many.exe_4437]
+RelativePath=JIT\opt\Inline\tests\Inline_Many\Inline_Many.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Many
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_MultipleReturn.exe_4438]
+RelativePath=JIT\opt\Inline\tests\Inline_MultipleReturn\Inline_MultipleReturn.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_MultipleReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_NewObj.exe_4439]
+RelativePath=JIT\opt\Inline\tests\Inline_NewObj\Inline_NewObj.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_NewObj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_NormalizeStack.exe_4440]
+RelativePath=JIT\opt\Inline\tests\Inline_NormalizeStack\Inline_NormalizeStack.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_NormalizeStack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_Recursion.exe_4441]
+RelativePath=JIT\opt\Inline\tests\Inline_Recursion\Inline_Recursion.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Recursion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_RecursiveMethod.exe_4442]
+RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod\Inline_RecursiveMethod.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_RecursiveMethod21.exe_4443]
+RelativePath=JIT\opt\Inline\tests\Inline_RecursiveMethod21\Inline_RecursiveMethod21.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_RecursiveMethod21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_SideAffects.exe_4444]
+RelativePath=JIT\opt\Inline\tests\Inline_SideAffects\Inline_SideAffects.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_SideAffects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_STARG.exe_4445]
+RelativePath=JIT\opt\Inline\tests\Inline_STARG\Inline_STARG.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_STARG
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Inline_Vars.exe_4446]
+RelativePath=JIT\opt\Inline\tests\Inline_Vars\Inline_Vars.exe
+WorkingDir=JIT\opt\Inline\tests\Inline_Vars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interfaceCall.exe_4447]
+RelativePath=JIT\opt\Inline\tests\interfaceCall\interfaceCall.exe
+WorkingDir=JIT\opt\Inline\tests\interfaceCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interfaceproperty.exe_4448]
+RelativePath=JIT\opt\Inline\tests\interfaceproperty\interfaceproperty.exe
+WorkingDir=JIT\opt\Inline\tests\interfaceproperty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mathfunc.exe_4449]
+RelativePath=JIT\opt\Inline\tests\mathfunc\mathfunc.exe
+WorkingDir=JIT\opt\Inline\tests\mathfunc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mthdimpl.exe_4450]
+RelativePath=JIT\opt\Inline\tests\mthdimpl\mthdimpl.exe
+WorkingDir=JIT\opt\Inline\tests\mthdimpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[property.exe_4451]
+RelativePath=JIT\opt\Inline\tests\property\property.exe
+WorkingDir=JIT\opt\Inline\tests\property
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ReturnStruct_Method.exe_4452]
+RelativePath=JIT\opt\Inline\tests\ReturnStruct_Method\ReturnStruct_Method.exe
+WorkingDir=JIT\opt\Inline\tests\ReturnStruct_Method
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[size.exe_4453]
+RelativePath=JIT\opt\Inline\tests\size\size.exe
+WorkingDir=JIT\opt\Inline\tests\size
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StructAsParam_Method.exe_4454]
+RelativePath=JIT\opt\Inline\tests\StructAsParam_Method\StructAsParam_Method.exe
+WorkingDir=JIT\opt\Inline\tests\StructAsParam_Method
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StructInClass.exe_4455]
+RelativePath=JIT\opt\Inline\tests\StructInClass\StructInClass.exe
+WorkingDir=JIT\opt\Inline\tests\StructInClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[struct_opcodes.exe_4456]
+RelativePath=JIT\opt\Inline\tests\struct_opcodes\struct_opcodes.exe
+WorkingDir=JIT\opt\Inline\tests\struct_opcodes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[throwtest.exe_4457]
+RelativePath=JIT\opt\Inline\tests\throwtest\throwtest.exe
+WorkingDir=JIT\opt\Inline\tests\throwtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[trycatch.exe_4458]
+RelativePath=JIT\opt\Inline\tests\trycatch\trycatch.exe
+WorkingDir=JIT\opt\Inline\tests\trycatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BBCnt0.exe_4459]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt0\BBCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BBCnt1.exe_4460]
+RelativePath=JIT\opt\JitMinOpts\Perf\BBCnt1\BBCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\BBCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CodeSize0.exe_4461]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize0\CodeSize0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CodeSize1.exe_4462]
+RelativePath=JIT\opt\JitMinOpts\Perf\CodeSize1\CodeSize1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\CodeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InstrCnt0.exe_4463]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt0\InstrCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InstrCnt1.exe_4464]
+RelativePath=JIT\opt\JitMinOpts\Perf\InstrCnt1\InstrCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\InstrCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVNumCnt0.exe_4465]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt0\LVNumCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVNumCnt1.exe_4466]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVNumCnt1\LVNumCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVNumCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVRefCnt0.exe_4467]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt0\LVRefCnt0.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LVRefCnt1.exe_4468]
+RelativePath=JIT\opt\JitMinOpts\Perf\LVRefCnt1\LVRefCnt1.exe
+WorkingDir=JIT\opt\JitMinOpts\Perf\LVRefCnt1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Arrays.exe_4469]
+RelativePath=JIT\opt\perf\doublealign\Arrays\Arrays.exe
+WorkingDir=JIT\opt\perf\doublealign\Arrays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Locals.exe_4470]
+RelativePath=JIT\opt\perf\doublealign\Locals\Locals.exe
+WorkingDir=JIT\opt\perf\doublealign\Locals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[objects.exe_4471]
+RelativePath=JIT\opt\perf\doublealign\objects\objects.exe
+WorkingDir=JIT\opt\perf\doublealign\objects
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TailcallVerifyWithPrefix.exe_4472]
+RelativePath=JIT\opt\Tailcall\TailcallVerifyWithPrefix\TailcallVerifyWithPrefix.exe
+WorkingDir=JIT\opt\Tailcall\TailcallVerifyWithPrefix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bigvtbl_cs_d.exe_4473]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d\bigvtbl_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bigvtbl_cs_do.exe_4474]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do\bigvtbl_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bigvtbl_cs_r.exe_4475]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r\bigvtbl_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[bigvtbl_cs_ro.exe_4476]
+RelativePath=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro\bigvtbl_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\bigvtbl\bigvtbl_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest1_cs_d.exe_4477]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d\ctest1_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest1_cs_do.exe_4478]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do\ctest1_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest1_cs_r.exe_4479]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r\ctest1_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest1_cs_ro.exe_4480]
+RelativePath=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro\ctest1_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\hashcode\ctest1_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest_cs_d.exe_4481]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d\ctest_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest_cs_do.exe_4482]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do\ctest_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest_cs_r.exe_4483]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r\ctest_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ctest_cs_ro.exe_4484]
+RelativePath=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro\ctest_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\manyintf\ctest_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed_cs_d.exe_4485]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d\mixed_cs_d.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed_cs_do.exe_4486]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do\mixed_cs_do.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed_cs_r.exe_4487]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r\mixed_cs_r.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[mixed_cs_ro.exe_4488]
+RelativePath=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro\mixed_cs_ro.exe
+WorkingDir=JIT\opt\virtualstubdispatch\mixed\mixed_cs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Adams.exe_4489]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Adams\Adams\Adams.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Adams\Adams
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BenchMk2.exe_4490]
+RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2\BenchMk2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMk2\BenchMk2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BenchMrk.exe_4491]
+RelativePath=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk\BenchMrk.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\BenchMrk\BenchMrk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bisect.exe_4492]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect\Bisect.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Bisect\Bisect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DMath.exe_4493]
+RelativePath=JIT\Performance\CodeQuality\BenchF\DMath\DMath\DMath.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\DMath\DMath
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FFT.exe_4494]
+RelativePath=JIT\Performance\CodeQuality\BenchF\FFT\FFT\FFT.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\FFT\FFT
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InProd.exe_4495]
+RelativePath=JIT\Performance\CodeQuality\BenchF\InProd\InProd\InProd.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\InProd\InProd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[InvMt.exe_4496]
+RelativePath=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt\InvMt.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\InvMt\InvMt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LLoops.exe_4497]
+RelativePath=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops\LLoops.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\LLoops\LLoops
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Lorenz.exe_4498]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz\Lorenz.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Lorenz\Lorenz
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MatInv4.exe_4499]
+RelativePath=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4\MatInv4.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\MatInv4\MatInv4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NewtE.exe_4500]
+RelativePath=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE\NewtE.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtE\NewtE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NewtR.exe_4501]
+RelativePath=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR\NewtR.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\NewtR\NewtR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Regula.exe_4502]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Regula\Regula\Regula.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Regula\Regula
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Romber.exe_4503]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Romber\Romber\Romber.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Romber\Romber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Secant.exe_4504]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Secant\Secant\Secant.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Secant\Secant
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Simpsn.exe_4505]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn\Simpsn.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Simpsn\Simpsn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SqMtx.exe_4506]
+RelativePath=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx\SqMtx.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\SqMtx\SqMtx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Trap.exe_4507]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Trap\Trap\Trap.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Trap\Trap
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Whetsto.exe_4508]
+RelativePath=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto\Whetsto.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchF\Whetsto\Whetsto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[8Queens.exe_4509]
+RelativePath=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens\8Queens.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\8Queens\8Queens
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ackermann.exe_4510]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann\Ackermann.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Ackermann\Ackermann
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AddArray.exe_4511]
+RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray\AddArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray\AddArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AddArray2.exe_4512]
+RelativePath=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2\AddArray2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\AddArray2\AddArray2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Array1.exe_4513]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Array1\Array1\Array1.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Array1\Array1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Array2.exe_4514]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Array2\Array2\Array2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Array2\Array2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BenchE.exe_4515]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE\BenchE.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BenchE\BenchE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BubbleSort.exe_4516]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort\BubbleSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort\BubbleSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BubbleSort2.exe_4517]
+RelativePath=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2\BubbleSort2.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\BubbleSort2\BubbleSort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CSieve.exe_4518]
+RelativePath=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve\CSieve.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\CSieve\CSieve
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Fib.exe_4519]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Fib\Fib\Fib.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Fib\Fib
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[HeapSort.exe_4520]
+RelativePath=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort\HeapSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\HeapSort\HeapSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[IniArray.exe_4521]
+RelativePath=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray\IniArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\IniArray\IniArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LogicArray.exe_4522]
+RelativePath=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray\LogicArray.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\LogicArray\LogicArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Midpoint.exe_4523]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint\Midpoint.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Midpoint\Midpoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MulMatrix.exe_4524]
+RelativePath=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix\MulMatrix.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\MulMatrix\MulMatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[NDhrystone.exe_4525]
+RelativePath=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone\NDhrystone.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\NDhrystone\NDhrystone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Permutate.exe_4526]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate\Permutate.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Permutate\Permutate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Pi.exe_4527]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Pi\Pi\Pi.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Pi\Pi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Puzzle.exe_4528]
+RelativePath=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle\Puzzle.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\Puzzle\Puzzle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[QuickSort.exe_4529]
+RelativePath=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort\QuickSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\QuickSort\QuickSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TreeInsert.exe_4530]
+RelativePath=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert\TreeInsert.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeInsert\TreeInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[TreeSort.exe_4531]
+RelativePath=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort\TreeSort.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\TreeSort\TreeSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[XposMatrix.exe_4532]
+RelativePath=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix\XposMatrix.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchI\XposMatrix\XposMatrix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[binarytrees.exe_4533]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees\binarytrees.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\binarytrees\binarytrees
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fasta.exe_4534]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta\fasta.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fasta\fasta
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[fastaredux.exe_4535]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux\fastaredux.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\fastaredux\fastaredux
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[nbody.exe_4536]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody\nbody.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\nbody\nbody
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pi-digits.exe_4537]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits\pi-digits.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\pidigits\pi-digits
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[spectralnorm.exe_4538]
+RelativePath=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm\spectralnorm.exe
+WorkingDir=JIT\Performance\CodeQuality\BenchmarksGame\spectralnorm\spectralnorm
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Burgers.exe_4539]
+RelativePath=JIT\Performance\CodeQuality\Burgers\Burgers\Burgers.exe
+WorkingDir=JIT\Performance\CodeQuality\Burgers\Burgers
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Bytemark.exe_4540]
+RelativePath=JIT\Performance\CodeQuality\Bytemark\Bytemark\Bytemark.exe
+WorkingDir=JIT\Performance\CodeQuality\Bytemark\Bytemark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FractalPerf.exe_4541]
+RelativePath=JIT\Performance\CodeQuality\FractalPerf\FractalPerf\FractalPerf.exe
+WorkingDir=JIT\Performance\CodeQuality\FractalPerf\FractalPerf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Linq.exe_4542]
+RelativePath=JIT\Performance\CodeQuality\Linq\Linq\Linq.exe
+WorkingDir=JIT\Performance\CodeQuality\Linq\Linq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CscBench.exe_4543]
+RelativePath=JIT\Performance\CodeQuality\Roslyn\CscBench\CscBench.exe
+WorkingDir=JIT\Performance\CodeQuality\Roslyn\CscBench
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SciMark.exe_4544]
+RelativePath=JIT\Performance\CodeQuality\SciMark\SciMark\SciMark.exe
+WorkingDir=JIT\Performance\CodeQuality\SciMark\SciMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Deserialize.exe_4545]
+RelativePath=JIT\Performance\CodeQuality\Serialization\Deserialize\Deserialize.exe
+WorkingDir=JIT\Performance\CodeQuality\Serialization\Deserialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Serialize.exe_4546]
+RelativePath=JIT\Performance\CodeQuality\Serialization\Serialize\Serialize.exe
+WorkingDir=JIT\Performance\CodeQuality\Serialization\Serialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ConsoleMandel.exe_4547]
+RelativePath=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel\ConsoleMandel.exe
+WorkingDir=JIT\Performance\CodeQuality\SIMD\ConsoleMandel\ConsoleMandel
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[RayTracer.exe_4548]
+RelativePath=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer\RayTracer.exe
+WorkingDir=JIT\Performance\CodeQuality\SIMD\RayTracer\RayTracer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Crypto.exe_4549]
+RelativePath=JIT\Performance\CodeQuality\V8\Crypto\Crypto\Crypto.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\Crypto\Crypto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DeltaBlue.exe_4550]
+RelativePath=JIT\Performance\CodeQuality\V8\DeltaBlue\DeltaBlue\DeltaBlue.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\DeltaBlue\DeltaBlue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Richards.exe_4551]
+RelativePath=JIT\Performance\CodeQuality\V8\Richards\Richards\Richards.exe
+WorkingDir=JIT\Performance\CodeQuality\V8\Richards\Richards
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b173569.exe_4552]
+RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569\b173569.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b173569\b173569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b601838.exe_4553]
+RelativePath=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838\b601838.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v2.1\b601838\b601838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b602182.exe_4554]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182\b602182.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\b602182\b602182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[overRepLocalOpt.exe_4555]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt\overRepLocalOpt.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\DevDiv34372\overRepLocalOpt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12008.exe_4556]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008\b12008.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b12008\b12008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14426.exe_4557]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426\b14426.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b14426\b14426
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16935.exe_4558]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935\b16935.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M09.5-PDC\b16935\b16935
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02353.exe_4559]
+RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353\b02353.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b02353\b02353
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07847.exe_4560]
+RelativePath=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847\b07847.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\v1-m10\b07847\b07847
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40089.exe_4561]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089\b40089.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40089\b40089
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40138.exe_4562]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138\b40138.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b40138\b40138
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44018.exe_4563]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018\b44018.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b44018\b44018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45046.exe_4564]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046\b45046.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45046\b45046
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45679.exe_4565]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679\b45679.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M11-Beta1\b45679\b45679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26323.exe_4566]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323\b26323.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b26323\b26323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35455.exe_4567]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455\b35455.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b35455\b35455
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46847.exe_4568]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847\b46847.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b46847\b46847
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47392.exe_4569]
+RelativePath=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392\b47392.exe
+WorkingDir=JIT\Regression\CLR-x86-EJIT\V1-M12-Beta2\b47392\b47392
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b392262.exe_4570]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262\b392262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b392262\b392262
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b393481.exe_4571]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481\b393481.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b393481\b393481
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[_b400971b400971.exe_4572]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971\_b400971b400971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b400791\_b400971b400971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b402658.exe_4573]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658\b402658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402658\b402658
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b402701.exe_4574]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701\b402701.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b402701\b402701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b404051.exe_4575]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051\b404051.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b404051\b404051
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b440158.exe_4576]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158\b440158.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b440158\b440158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b464149.exe_4577]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149\b464149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b464149\b464149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b519927.exe_4578]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev10\b519927\b519927\b519927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev10\b519927\b519927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_376412.exe_4579]
+RelativePath=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412\DevDiv_376412.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\dev11\DevDiv_376412\DevDiv_376412
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12668.exe_4580]
+RelativePath=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668\b12668.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v1-m08\b12668\b12668
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13170.exe_4581]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170\b13170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13170\b13170
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13178.exe_4582]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178\b13178.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13178\b13178
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13621.exe_4583]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621\b13621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13621\b13621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13647.exe_4584]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647\b13647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13647\b13647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13944.exe_4585]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944\b13944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b13944\b13944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14057.exe_4586]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057\b14057.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14057\b14057
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14059.exe_4587]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059\b14059.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14059\b14059
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14228.exe_4588]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228\b14228.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14228\b14228
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14277.exe_4589]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277\b14277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14277\b14277
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14314.exe_4590]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314\b14314.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14314\b14314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14323.exe_4591]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323\b14323.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14323\b14323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14367.exe_4592]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367\b14367.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14367\b14367
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14396.exe_4593]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396\b14396.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14396\b14396
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14422.exe_4594]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422\b14422.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14422\b14422
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14428.exe_4595]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428\b14428.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14428\b14428
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14443.exe_4596]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443\b14443.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14443\b14443
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14475.exe_4597]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475\b14475.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14475\b14475
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14616.exe_4598]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616\b14616.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14616\b14616
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14624.exe_4599]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624\b14624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14624\b14624
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14640.exe_4600]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640\b14640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14640\b14640
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14673.exe_4601]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673\b14673.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14673\b14673
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14779.exe_4602]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779\b14779.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b14779\b14779
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15155.exe_4603]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155\b15155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15155\b15155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15307.exe_4604]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307\b15307.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15307\b15307
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15468.exe_4605]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468\b15468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15468\b15468
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15526.exe_4606]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526\b15526.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15526\b15526
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15783.exe_4607]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783\b15783.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15783\b15783
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15786.exe_4608]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786\b15786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15786\b15786
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15797.exe_4609]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797\b15797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15797\b15797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15864.exe_4610]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864\b15864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b15864\b15864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16054.exe_4611]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054\b16054.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16054\b16054
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16102.exe_4612]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102\b16102.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16102\b16102
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16294.exe_4613]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294\b16294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09\b16294\b16294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06440a.exe_4614]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a\b06440a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06440b.exe_4615]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b\b06440b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06440c.exe_4616]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c\b06440c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b06440\b06440c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07341.exe_4617]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341\b07341.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b07341\b07341
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b09495.exe_4618]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495\b09495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b09495\b09495
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10665.exe_4619]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665\b10665.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10665\b10665
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10666.exe_4620]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666\b10666.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10666\b10666
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10894.exe_4621]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894\b10894.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10894\b10894
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10897.exe_4622]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897\b10897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10897\b10897
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10939.exe_4623]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939\b10939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10939\b10939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10940a.exe_4624]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a\b10940a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10940b.exe_4625]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b\b10940b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b10940\b10940b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11021.exe_4626]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021\b11021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11021\b11021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11413.exe_4627]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413\b11413.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11413\b11413
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11490.exe_4628]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490\b11490.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11490\b11490
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11949.exe_4629]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949\b11949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b11949\b11949
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12053.exe_4630]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053\b12053.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12053\b12053
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12274.exe_4631]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274\b12274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12274\b12274
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12399.exe_4632]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399\b12399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12399\b12399
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12487.exe_4633]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487\b12487.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12487\b12487
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12624.exe_4634]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624\b12624.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12624\b12624
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12795.exe_4635]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795\b12795.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b12795\b12795
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13509.exe_4636]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509\b13509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13509\b13509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13522.exe_4637]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522\b13522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13522\b13522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13569.exe_4638]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569\b13569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13569\b13569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13586.exe_4639]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586\b13586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13586\b13586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13738.exe_4640]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738\b13738.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b13738\b13738
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14066.exe_4641]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066\b14066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14066\b14066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14067a.exe_4642]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a\b14067a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14067b.exe_4643]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b\b14067b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14067\b14067b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14068.exe_4644]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068\b14068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14068\b14068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14070.exe_4645]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070\b14070.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14070\b14070
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14077.exe_4646]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077\b14077.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14077\b14077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14135.exe_4647]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135\b14135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14135\b14135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14197.exe_4648]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197\b14197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14197\b14197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14199.exe_4649]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199\b14199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14199\b14199
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14202.exe_4650]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202\b14202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14202\b14202
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14264.exe_4651]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264\b14264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14264\b14264
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14294.exe_4652]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294\b14294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14294\b14294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14325.exe_4653]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325\b14325.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14325\b14325
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14326.exe_4654]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326\b14326.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14326\b14326
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14329.exe_4655]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329\b14329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14329\b14329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14350.exe_4656]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350\b14350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14350\b14350
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14431.exe_4657]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431\b14431.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14431\b14431
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14591.exe_4658]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591\b14591.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14591\b14591
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14716.exe_4659]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716\b14716.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14716\b14716
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14769.exe_4660]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769\b14769.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14769\b14769
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14770.exe_4661]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770\b14770.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14770\b14770
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14777.exe_4662]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777\b14777.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14777\b14777
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14927.exe_4663]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927\b14927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14927\b14927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14928.exe_4664]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928\b14928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b14928\b14928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15203.exe_4665]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203\b15203.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15203\b15203
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15222.exe_4666]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222\b15222.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15222\b15222
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15244.exe_4667]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244\b15244.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15244\b15244
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15299.exe_4668]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299\b15299.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15299\b15299
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15728.exe_4669]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728\b15728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b15728\b15728
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16039.exe_4670]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039\b16039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16039\b16039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16049.exe_4671]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049\b16049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16049\b16049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16071.exe_4672]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071\b16071.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16071\b16071
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16238.exe_4673]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238\b16238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16238\b16238
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16241.exe_4674]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241\b16241.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16241\b16241
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16295.exe_4675]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295\b16295.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16295\b16295
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16328.exe_4676]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328\b16328.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16328\b16328
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16335.exe_4677]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335\b16335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16335\b16335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16345.exe_4678]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345\b16345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16345\b16345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16423.exe_4679]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423\b16423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16423\b16423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16498.exe_4680]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498\b16498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16498\b16498
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16499a.exe_4681]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a\b16499a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16499b.exe_4682]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b\b16499b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16499\b16499b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16500.exe_4683]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500\b16500.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16500\b16500
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16503.exe_4684]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503\b16503.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16503\b16503
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16554.exe_4685]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554\b16554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16554\b16554
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16881a.exe_4686]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a\b16881a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16881b.exe_4687]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b\b16881b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16881\b16881b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16886.exe_4688]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886\b16886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16886\b16886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16895.exe_4689]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895\b16895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16895\b16895
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16896.exe_4690]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896\b16896.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16896\b16896
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16922.exe_4691]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922\b16922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16922\b16922
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16928.exe_4692]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928\b16928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b16928\b16928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b18852.exe_4693]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852\b18852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b18852\b18852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b20079.exe_4694]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079\b20079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20079\b20079
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b20217.exe_4695]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217\b20217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20217\b20217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b20249.exe_4696]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249\b20249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20249\b20249
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b20913.exe_4697]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913\b20913.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b20913\b20913
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b22290.exe_4698]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290\b22290.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b22290\b22290
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b24727.exe_4699]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727\b24727.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24727\b24727
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b24728.exe_4700]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728\b24728.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b24728\b24728
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25458.exe_4701]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458\b25458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25458\b25458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25459.exe_4702]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459\b25459.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25459\b25459
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25463.exe_4703]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463\b25463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25463\b25463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25468.exe_4704]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468\b25468.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25468\b25468
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25474.exe_4705]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474\b25474.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25474\b25474
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25491.exe_4706]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491\b25491.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25491\b25491
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25507.exe_4707]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507\b25507.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25507\b25507
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25647.exe_4708]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647\b25647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25647\b25647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25701.exe_4709]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701\b25701.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25701\b25701
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25739.exe_4710]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739\b25739.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25739\b25739
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25813.exe_4711]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813\b25813.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25813\b25813
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25815.exe_4712]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815\b25815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25815\b25815
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25833.exe_4713]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833\b25833.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25833\b25833
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25835.exe_4714]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835\b25835.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25835\b25835
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b25882.exe_4715]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882\b25882.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b25882\b25882
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26020.exe_4716]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020\b26020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26020\b26020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26153.exe_4717]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153\b26153.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26153\b26153
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26155.exe_4718]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155\b26155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26155\b26155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26324a.exe_4719]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a\b26324a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26324b.exe_4720]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b\b26324b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26324\b26324b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26332.exe_4721]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332\b26332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26332\b26332
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26512.exe_4722]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512\b26512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26512\b26512
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26558.exe_4723]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558\b26558.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26558\b26558
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26560.exe_4724]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560\b26560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26560\b26560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26732.exe_4725]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732\b26732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26732\b26732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26748.exe_4726]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748\b26748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26748\b26748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26863.exe_4727]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863\b26863.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26863\b26863
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26888.exe_4728]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888\b26888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26888\b26888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26957.exe_4729]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957\b26957.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b26957\b26957
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27535.exe_4730]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535\b27535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27535\b27535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27538.exe_4731]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538\b27538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27538\b27538
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27564.exe_4732]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564\b27564.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27564\b27564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27657.exe_4733]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657\b27657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27657\b27657
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27658.exe_4734]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658\b27658.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27658\b27658
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27811.exe_4735]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811\b27811.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27811\b27811
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27819.exe_4736]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819\b27819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27819\b27819
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27824.exe_4737]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824\b27824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27824\b27824
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27880.exe_4738]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880\b27880.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27880\b27880
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27883.exe_4739]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883\b27883.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27883\b27883
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27917.exe_4740]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917\b27917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b27917\b27917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28037.exe_4741]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037\b28037.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28037\b28037
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28042.exe_4742]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042\b28042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28042\b28042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28080.exe_4743]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080\b28080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28080\b28080
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28522.exe_4744]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522\b28522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28522\b28522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28594.exe_4745]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594\b28594.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28594\b28594
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28595.exe_4746]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595\b28595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28595\b28595
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28596.exe_4747]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596\b28596.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28596\b28596
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28597.exe_4748]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597\b28597.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28597\b28597
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28776.exe_4749]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776\b28776.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28776\b28776
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28787.exe_4750]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787\b28787.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28787\b28787
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28790.exe_4751]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790\b28790.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28790\b28790
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28805.exe_4752]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805\b28805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28805\b28805
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28806.exe_4753]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806\b28806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28806\b28806
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28901.exe_4754]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901\b28901.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28901\b28901
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28927.exe_4755]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927\b28927.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b28927\b28927
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29068.exe_4756]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068\b29068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29068\b29068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29456.exe_4757]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456\b29456.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29456\b29456
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29583.exe_4758]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583\b29583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b29583\b29583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30125.exe_4759]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125\b30125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30125\b30125
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30126.exe_4760]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126\b30126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30126\b30126
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30128.exe_4761]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128\b30128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30128\b30128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30630.exe_4762]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630\b30630.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30630\b30630
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30792.exe_4763]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792\b30792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30792\b30792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30799.exe_4764]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799\b30799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30799\b30799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30838.exe_4765]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838\b30838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30838\b30838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30862.exe_4766]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862\b30862.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30862\b30862
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30864.exe_4767]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864\b30864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30864\b30864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30869.exe_4768]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869\b30869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30869\b30869
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30892.exe_4769]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892\b30892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30892\b30892
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30905.exe_4770]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905\b30905.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b30905\b30905
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31102.exe_4771]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102\b31102.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31102\b31102
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31150.exe_4772]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150\b31150.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31150\b31150
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31273.exe_4773]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273\b31273.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31273\b31273
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31321.exe_4774]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321\b31321.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31321\b31321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31343.exe_4775]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343\b31343.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31343\b31343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31448.exe_4776]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448\b31448.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31448\b31448
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31732.exe_4777]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732\b31732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31732\b31732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31748.exe_4778]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748\b31748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31748\b31748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31749.exe_4779]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749\b31749.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31749\b31749
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31763.exe_4780]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763\b31763.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31763\b31763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31912.exe_4781]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912\b31912.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b31912\b31912
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32093.exe_4782]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093\b32093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32093\b32093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32303.exe_4783]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303\b32303.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32303\b32303
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32345.exe_4784]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345\b32345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32345\b32345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32374.exe_4785]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374\b32374.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32374\b32374
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32551a.exe_4786]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a\b32551a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32551b.exe_4787]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b\b32551b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32551\b32551b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32560.exe_4788]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560\b32560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32560\b32560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32801.exe_4789]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801\b32801.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32801\b32801
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32879.exe_4790]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879\b32879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b32879\b32879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b34423.exe_4791]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423\b34423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M09.5-PDC\b34423\b34423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02043.exe_4792]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043\b02043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02043\b02043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02051.exe_4793]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051\b02051.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02051\b02051
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02062.exe_4794]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062\b02062.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02062\b02062
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02076.exe_4795]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076\b02076.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02076\b02076
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02352.exe_4796]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352\b02352.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b02352\b02352
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b03995.exe_4797]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995\b03995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b03995\b03995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04083.exe_4798]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083\b04083.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04083\b04083
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04250.exe_4799]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250\b04250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04250\b04250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04257.exe_4800]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257\b04257.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04257\b04257
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04306.exe_4801]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306\b04306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04306\b04306
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[B04345.exe_4802]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345\B04345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04345\B04345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04384.exe_4803]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384\b04384.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04384\b04384
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04538.exe_4804]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538\b04538.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04538\b04538
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04574.exe_4805]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574\b04574.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04574\b04574
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04583.exe_4806]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583\b04583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04583\b04583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04612.exe_4807]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612\b04612.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04612\b04612
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04639.exe_4808]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639\b04639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04639\b04639
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04726.exe_4809]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726\b04726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04726\b04726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04914.exe_4810]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914\b04914.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b04914\b04914
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05214.exe_4811]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214\b05214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05214\b05214
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05477.exe_4812]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477\b05477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05477\b05477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05617.exe_4813]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617\b05617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05617\b05617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05619.exe_4814]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619\b05619.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05619\b05619
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05621.exe_4815]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621\b05621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05621\b05621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05622.exe_4816]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622\b05622.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05622\b05622
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05637.exe_4817]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637\b05637.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05637\b05637
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05639.exe_4818]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639\b05639.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05639\b05639
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05737.exe_4819]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737\b05737.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05737\b05737
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05740.exe_4820]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740\b05740.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05740\b05740
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05773.exe_4821]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773\b05773.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05773\b05773
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05780.exe_4822]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780\b05780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05780\b05780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05784.exe_4823]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784\b05784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05784\b05784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05933.exe_4824]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933\b05933.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b05933\b05933
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06436.exe_4825]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436\b06436.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06436\b06436
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06464.exe_4826]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464\b06464.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06464\b06464
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06595.exe_4827]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595\b06595.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06595\b06595
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06680.exe_4828]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680\b06680.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06680\b06680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06730.exe_4829]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730\b06730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06730\b06730
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06754.exe_4830]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754\b06754.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06754\b06754
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06811.exe_4831]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811\b06811.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06811\b06811
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06812.exe_4832]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812\b06812.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06812\b06812
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06859.exe_4833]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859\b06859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06859\b06859
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06924.exe_4834]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924\b06924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b06924\b06924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07082.exe_4835]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082\b07082.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07082\b07082
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07411.exe_4836]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411\b07411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07411\b07411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07458.exe_4837]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458\b07458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07458\b07458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07483.exe_4838]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483\b07483.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07483\b07483
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07704.exe_4839]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704\b07704.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b07704\b07704
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08109.exe_4841]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109\b08109.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08109\b08109
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08172.exe_4842]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172\b08172.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08172\b08172
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08672.exe_4843]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672\b08672.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08672\b08672
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08797.exe_4844]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797\b08797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08797\b08797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08944a.exe_4845]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a\b08944a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08944b.exe_4846]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b\b08944b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b08944\b08944b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b09246.exe_4847]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246\b09246.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09246\b09246
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b09254.exe_4848]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254\b09254.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09254\b09254
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b09287.exe_4849]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287\b09287.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09287\b09287
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b09452.exe_4850]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452\b09452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b09452\b09452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13330.exe_4851]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330\b13330.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13330\b13330
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13466.exe_4852]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466\b13466.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M10\b13466\b13466
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27873.exe_4853]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873\b27873.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b27873\b27873
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29351.exe_4854]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351\b29351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b29351\b29351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30586.exe_4855]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586\b30586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b30586\b30586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31878.exe_4856]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878\b31878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b31878\b31878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33759.exe_4857]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759\b33759.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33759\b33759
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33792.exe_4858]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792\b33792.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33792\b33792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33888.exe_4859]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888\b33888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33888\b33888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33922.exe_4860]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922\b33922.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33922\b33922
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33928.exe_4861]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928\b33928.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b33928\b33928
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b34945.exe_4862]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945\b34945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b34945\b34945
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35784.exe_4863]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784\b35784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b35784\b35784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36030.exe_4864]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030\b36030.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36030\b36030
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36274.exe_4865]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274\b36274.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36274\b36274
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36332.exe_4866]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332\b36332.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36332\b36332
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36470.exe_4867]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470\b36470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36470\b36470
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36471.exe_4868]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471\b36471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36471\b36471
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36472.exe_4869]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472\b36472.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b36472\b36472
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37131.exe_4870]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131\b37131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37131\b37131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37598.exe_4871]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598\b37598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37598\b37598
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37608.exe_4872]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608\b37608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37608\b37608
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37636.exe_4873]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636\b37636.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b37636\b37636
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b38403.exe_4874]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403\b38403.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38403\b38403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b38556.exe_4875]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556\b38556.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b38556\b38556
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39217.exe_4876]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217\b39217.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39217\b39217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39224.exe_4877]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224\b39224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39224\b39224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39381.exe_4878]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381\b39381.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39381\b39381
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39397.exe_4879]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397\b39397.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39397\b39397
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39417.exe_4880]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417\b39417.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39417\b39417
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39455.exe_4881]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455\b39455.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39455\b39455
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39946.exe_4882]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946\b39946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39946\b39946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b39951.exe_4883]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951\b39951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b39951\b39951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40141.exe_4884]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141\b40141.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40141\b40141
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40174.exe_4885]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174\b40174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40174\b40174
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40199.exe_4886]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199\b40199.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40199\b40199
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40216.exe_4887]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216\b40216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40216\b40216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40221.exe_4888]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221\b40221.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40221\b40221
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40269.exe_4889]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269\b40269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40269\b40269
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40347.exe_4890]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40347\b40347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40380.exe_4891]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380\b40380.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40380\b40380
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40411.exe_4892]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411\b40411.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40411\b40411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40496.exe_4893]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496\b40496.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40496\b40496
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40521.exe_4894]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521\b40521.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40521\b40521
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40721.exe_4895]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721\b40721.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40721\b40721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40725.exe_4896]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725\b40725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b40725\b40725
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41002.exe_4897]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002\b41002.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41002\b41002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41063.exe_4898]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063\b41063.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41063\b41063
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41126.exe_4899]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126\b41126.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41126\b41126
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41129.exe_4900]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129\b41129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41129\b41129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41149.exe_4901]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149\b41149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41149\b41149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41164.exe_4902]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164\b41164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41164\b41164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41234.exe_4903]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234\b41234.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41234\b41234
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41262.exe_4904]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262\b41262.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41262\b41262
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41278.exe_4905]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278\b41278.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41278\b41278
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41391.exe_4906]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391\b41391.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41391\b41391
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41470.exe_4907]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470\b41470.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41470\b41470
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41488.exe_4908]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488\b41488.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41488\b41488
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41495.exe_4909]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495\b41495.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41495\b41495
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41621.exe_4910]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621\b41621.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41621\b41621
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41627.exe_4911]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627\b41627.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41627\b41627
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41918.exe_4912]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918\b41918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41918\b41918
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41990.exe_4913]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990\b41990.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b41990\b41990
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42009.exe_4914]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009\b42009.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42009\b42009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42013.exe_4915]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013\b42013.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42013\b42013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42387.exe_4916]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387\b42387.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42387\b42387
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42732.exe_4917]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732\b42732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42732\b42732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42918.exe_4918]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918\b42918.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42918\b42918
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b42929.exe_4919]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929\b42929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b42929\b42929
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43010.exe_4920]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010\b43010.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43010\b43010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43033.exe_4921]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033\b43033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43033\b43033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43040.exe_4922]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040\b43040.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43040\b43040
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43069.exe_4923]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069\b43069.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43069\b43069
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43115.exe_4924]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115\b43115.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43115\b43115
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43121.exe_4925]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121\b43121.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43121\b43121
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43160.exe_4926]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160\b43160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43160\b43160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43313.exe_4927]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313\b43313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\b43313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43313.exe_4928]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313\b43313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43313\Desktop\b43313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43378.exe_4929]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378\b43378.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43378\b43378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43714.exe_4930]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714\b43714.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43714\b43714
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43719.exe_4931]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719\b43719.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43719\b43719
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43958.exe_4932]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958\b43958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43958\b43958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43963.exe_4933]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963\b43963.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43963\b43963
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43994.exe_4934]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994\b43994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b43994\b43994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44020.exe_4935]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020\b44020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44020\b44020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44193.exe_4936]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193\b44193.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44193\b44193
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44204.exe_4937]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204\b44204.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44204\b44204
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44224.exe_4938]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224\b44224.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44224\b44224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44297.exe_4939]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297\b44297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44297\b44297
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44410.exe_4940]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410\b44410.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44410\b44410
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44657.exe_4941]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657\b44657.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44657\b44657
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44723.exe_4942]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723\b44723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44723\b44723
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44724.exe_4943]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724\b44724.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44724\b44724
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44861.exe_4944]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861\b44861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44861\b44861
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44879.exe_4945]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879\b44879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44879\b44879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44946.exe_4946]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946\b44946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44946\b44946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44983.exe_4947]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983\b44983.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44983\b44983
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44984.exe_4948]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984\b44984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44984\b44984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b44985.exe_4949]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985\b44985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b44985\b44985
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45015.exe_4950]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015\b45015.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45015\b45015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45259.exe_4951]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259\b45259.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45259\b45259
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45270.exe_4952]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270\b45270.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45270\b45270
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45439.exe_4953]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439\b45439.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45439\b45439
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45458.exe_4954]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458\b45458.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45458\b45458
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45535.exe_4955]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535\b45535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45535\b45535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45541.exe_4956]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541\b45541.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45541\b45541
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45956.exe_4957]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956\b45956.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45956\b45956
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45984.exe_4958]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984\b45984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45984\b45984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b45985.exe_4959]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985\b45985.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b45985\b45985
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46170.exe_4960]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170\b46170.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46170\b46170
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46292.exe_4961]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292\b46292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46292\b46292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46569.exe_4962]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569\b46569.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46569\b46569
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46576.exe_4963]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576\b46576.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46576\b46576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46583.exe_4964]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583\b46583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46583\b46583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46629.exe_4965]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629\b46629.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46629\b46629
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46641.exe_4966]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641\b46641.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46641\b46641
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46649.exe_4967]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649\b46649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46649\b46649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46867.exe_4968]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867\b46867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46867\b46867
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46897.exe_4969]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897\b46897.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b46897\b46897
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47022.exe_4970]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022\b47022.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47022\b47022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47047.exe_4971]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047\b47047.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47047\b47047
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47080.exe_4972]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080\b47080.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47080\b47080
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47093.exe_4973]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093\b47093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47093\b47093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47610.exe_4974]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610\b47610.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47610\b47610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47885.exe_4975]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885\b47885.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47885\b47885
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47906.exe_4976]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906\b47906.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b47906\b47906
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48248.exe_4977]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248\b48248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48248\b48248
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48350.exe_4978]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350\b48350.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48350\b48350
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48554a.exe_4979]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a\b48554a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48554b.exe_4980]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b\b48554b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48554\b48554b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48614.exe_4981]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614\b48614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48614\b48614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48797.exe_4982]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797\b48797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48797\b48797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48805.exe_4983]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805\b48805.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48805\b48805
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48864.exe_4984]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864\b48864.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48864\b48864
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48872.exe_4985]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872\b48872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48872\b48872
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48990a.exe_4986]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a\b48990a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48990b.exe_4987]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b\b48990b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b48990\b48990b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49101.exe_4988]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101\b49101.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49101\b49101
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49318.exe_4989]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318\b49318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49318\b49318
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49322.exe_4990]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322\b49322.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49322\b49322
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49644.exe_4991]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644\b49644.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49644\b49644
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49717.exe_4992]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717\b49717.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49717\b49717
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49984.exe_4993]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984\b49984.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M11-Beta1\b49984\b49984
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11553.exe_4994]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553\b11553.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b11553\b11553
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16122.exe_4995]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122\b16122.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b16122\b16122
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b18857.exe_4996]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857\b18857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b18857\b18857
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28598.exe_4997]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598\b28598.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b28598\b28598
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30868.exe_4998]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868\b30868.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b30868\b30868
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31182.exe_4999]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182\b31182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31182\b31182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31283.exe_5000]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283\b31283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31283\b31283
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31289.exe_5001]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289\b31289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31289\b31289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31292.exe_5002]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292\b31292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31292\b31292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31423.exe_5003]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423\b31423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31423\b31423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31452.exe_5004]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452\b31452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31452\b31452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31493.exe_5005]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493\b31493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31493\b31493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31547.exe_5006]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547\b31547.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31547\b31547
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31745.exe_5007]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745\b31745.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31745\b31745
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31746.exe_5008]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746\b31746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31746\b31746
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31762.exe_5009]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762\b31762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31762\b31762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31780.exe_5010]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780\b31780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31780\b31780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31784.exe_5011]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784\b31784.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31784\b31784
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31903.exe_5012]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903\b31903.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31903\b31903
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31917.exe_5013]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917\b31917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b31917\b31917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32613.exe_5014]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613\b32613.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32613\b32613
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b32614.exe_5015]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614\b32614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b32614\b32614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33125.exe_5016]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125\b33125.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33125\b33125
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33131.exe_5017]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131\b33131.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33131\b33131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33135.exe_5018]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135\b33135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33135\b33135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33335.exe_5019]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335\b33335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33335\b33335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33361.exe_5020]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361\b33361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33361\b33361
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33362.exe_5021]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362\b33362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33362\b33362
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33388.exe_5022]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388\b33388.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33388\b33388
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33585.exe_5023]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585\b33585.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33585\b33585
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33586.exe_5024]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586\b33586.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b33586\b33586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b34951.exe_5025]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951\b34951.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34951\b34951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b34952.exe_5026]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952\b34952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34952\b34952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b34953.exe_5027]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953\b34953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b34953\b34953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35315.exe_5028]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315\b35315.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35315\b35315
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35344.exe_5029]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344\b35344.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35344\b35344
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35348.exe_5030]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348\b35348.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35348\b35348
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35351.exe_5031]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351\b35351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35351\b35351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35354.exe_5032]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354\b35354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35354\b35354
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35366.exe_5033]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366\b35366.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35366\b35366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35486.exe_5034]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486\b35486.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35486\b35486
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35635.exe_5035]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635\b35635.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35635\b35635
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b35779.exe_5036]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779\b35779.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b35779\b35779
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36301.exe_5037]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301\b36301.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36301\b36301
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36302.exe_5038]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302\b36302.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36302\b36302
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36304.exe_5039]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304\b36304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36304\b36304
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b36975.exe_5040]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975\b36975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b36975\b36975
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37214.exe_5041]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214\b37214.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37214\b37214
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37215.exe_5042]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215\b37215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37215\b37215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37238.exe_5043]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238\b37238.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37238\b37238
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37256.exe_5044]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256\b37256.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37256\b37256
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37578.exe_5045]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578\b37578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37578\b37578
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37646.exe_5046]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646\b37646.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37646\b37646
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b37830.exe_5047]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830\b37830.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b37830\b37830
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b38269.exe_5048]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269\b38269.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b38269\b38269
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40006.exe_5049]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006\b40006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40006\b40006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b40347.exe_5050]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347\b40347.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b40347\b40347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b41852.exe_5051]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852\b41852.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b41852\b41852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43693.exe_5052]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693\b43693.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43693\b43693
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b43694.exe_5053]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694\b43694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b43694\b43694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b46566.exe_5054]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566\b46566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b46566\b46566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47471.exe_5055]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471\b47471.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47471\b47471
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47886.exe_5056]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886\b47886.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47886\b47886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b47975.exe_5057]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975\b47975.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b47975\b47975
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48929.exe_5058]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929\b48929.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b48929\b48929
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49104.exe_5059]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104\b49104.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49104\b49104
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49142.exe_5060]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142\b49142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49142\b49142
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49335.exe_5061]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335\b49335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49335\b49335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49435.exe_5062]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435\b49435.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49435\b49435
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49809.exe_5063]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809\b49809.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b49809\b49809
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50026.exe_5064]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026\b50026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50026\b50026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50027.exe_5065]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027\b50027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50027\b50027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50033.exe_5066]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033\b50033.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50033\b50033
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50042.exe_5067]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042\b50042.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50042\b50042
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50145.exe_5068]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145\b50145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50145a.exe_5069]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a\b50145a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50145b.exe_5070]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b\b50145b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50145c.exe_5071]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c\b50145c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50145\b50145c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b50535.exe_5072]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535\b50535.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b50535\b50535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51420.exe_5073]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420\b51420.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51420\b51420
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51463.exe_5074]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463\b51463.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51463\b51463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51469.exe_5075]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469\b51469.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51469\b51469
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51515.exe_5076]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515\b51515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51515\b51515
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51565.exe_5077]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565\b51565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51565\b51565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51575.exe_5078]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575\b51575.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51575\b51575
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51817.exe_5079]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817\b51817.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51817\b51817
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51870.exe_5080]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870\b51870.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51870\b51870
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51875.exe_5081]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875\b51875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\b51875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b51875.exe_5082]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875\b51875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b51875\Desktop\b51875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52572.exe_5083]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572\b52572.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52572\b52572
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52578.exe_5084]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578\b52578.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52578\b52578
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52593.exe_5085]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593\b52593.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52593\b52593
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52733.exe_5086]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733\b52733.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52733\b52733
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52746.exe_5087]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746\b52746.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52746\b52746
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52760.exe_5088]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760\b52760.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52760\b52760
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52838.exe_5089]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838\b52838.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52838\b52838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52839.exe_5090]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839\b52839.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52839\b52839
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b52840.exe_5091]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840\b52840.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b52840\b52840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53226a.exe_5092]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a\b53226a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53226b.exe_5093]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b\b53226b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53226\b53226b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53547.exe_5094]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547\b53547.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53547\b53547
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53650.exe_5095]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650\b53650.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53650\b53650
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53662.exe_5096]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662\b53662.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53662\b53662
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53878.exe_5097]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878\b53878.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53878\b53878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53884.exe_5098]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884\b53884.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53884\b53884
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53942a.exe_5099]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a\b53942a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53942b.exe_5100]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b\b53942b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53942\b53942b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53958.exe_5101]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958\b53958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53958\b53958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53977.exe_5102]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977\b53977.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53977\b53977
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53980.exe_5103]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980\b53980.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53980\b53980
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53994.exe_5104]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994\b53994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53994\b53994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b53995.exe_5105]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995\b53995.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b53995\b53995
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54006.exe_5106]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006\b54006.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54006\b54006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54565.exe_5107]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565\b54565.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54565\b54565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54566.exe_5108]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566\b54566.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54566\b54566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54611.exe_5109]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611\b54611.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54611\b54611
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54667.exe_5110]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667\b54667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54667\b54667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b54971.exe_5111]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971\b54971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b54971\b54971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b55197.exe_5112]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197\b55197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\b55197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b55197.exe_5113]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197\b55197.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55197\Desktop\b55197
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b55216.exe_5114]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216\b55216.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55216\b55216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b55875.exe_5115]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875\b55875.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55875\b55875
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b55923.exe_5116]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923\b55923.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b55923\b55923
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56066.exe_5117]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066\b56066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56066\b56066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56068.exe_5118]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068\b56068.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56068\b56068
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56149.exe_5119]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149\b56149.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56149\b56149
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56154.exe_5120]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154\b56154.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56154\b56154
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56159.exe_5121]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159\b56159.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56159\b56159
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56174.exe_5122]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174\b56174.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56174\b56174
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56349.exe_5123]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349\b56349.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56349\b56349
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56772.exe_5124]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772\b56772.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56772\b56772
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b56780.exe_5125]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780\b56780.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b56780\b56780
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57367.exe_5126]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57367\b57367\b57367.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57367\b57367
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57492.exe_5127]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492\b57492.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57492\b57492
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57493.exe_5128]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493\b57493.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57493\b57493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57516.exe_5129]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516\b57516.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57516\b57516
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57518.exe_5130]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518\b57518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57518\b57518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b57952.exe_5131]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952\b57952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b57952\b57952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b58358.exe_5132]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358\b58358.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58358\b58358
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b58360.exe_5133]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360\b58360.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58360\b58360
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b58689.exe_5134]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689\b58689.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58689\b58689
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b58690.exe_5135]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690\b58690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58690\b58690
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b58866.exe_5136]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866\b58866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b58866\b58866
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59297.exe_5137]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297\b59297.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59297\b59297
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59319.exe_5138]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319\b59319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59319\b59319
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59320.exe_5139]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320\b59320.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59320\b59320
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59337.exe_5140]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337\b59337.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59337\b59337
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59477.exe_5141]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477\b59477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59477\b59477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59478.exe_5142]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478\b59478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59478\b59478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59508.exe_5143]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508\b59508.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59508\b59508
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59546.exe_5144]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546\b59546.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59546\b59546
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59554.exe_5145]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554\b59554.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59554\b59554
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59647.exe_5146]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647\b59647.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59647\b59647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59678.exe_5147]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678\b59678.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59678\b59678
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59782.exe_5148]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782\b59782.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59782\b59782
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59822.exe_5149]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822\b59822.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59822\b59822
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59857.exe_5150]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857\b59857.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59857\b59857
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59858.exe_5151]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858\b59858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59858\b59858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59899.exe_5152]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899\b59899.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59899\b59899
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59947.exe_5153]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947\b59947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59947\b59947
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59948.exe_5154]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948\b59948.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59948\b59948
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59949.exe_5155]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949\b59949.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59949\b59949
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59952.exe_5156]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952\b59952.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59952\b59952
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b59953.exe_5157]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953\b59953.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b59953\b59953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b60127.exe_5158]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127\b60127.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60127\b60127
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b60142.exe_5159]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142\b60142.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60142\b60142
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b60194.exe_5160]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194\b60194.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60194\b60194
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b60600.exe_5161]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600\b60600.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60600\b60600
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b60723.exe_5162]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723\b60723.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b60723\b60723
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61025.exe_5163]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025\b61025.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61025\b61025
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61028.exe_5164]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028\b61028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61028\b61028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61185.exe_5165]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185\b61185.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61185\b61185
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61215.exe_5166]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215\b61215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61215\b61215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61515.exe_5167]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515\b61515.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61515\b61515
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b61640.exe_5168]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640\b61640.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b61640\b61640
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b62145.exe_5169]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145\b62145.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62145\b62145
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b62498.exe_5170]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498\b62498.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62498\b62498
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b62555.exe_5171]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555\b62555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62555\b62555
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b62892.exe_5172]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892\b62892.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b62892\b62892
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63183.exe_5173]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183\b63183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63183\b63183
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63552.exe_5174]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552\b63552.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63552\b63552
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63725.exe_5175]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725\b63725.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63725\b63725
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63726.exe_5176]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726\b63726.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63726\b63726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63730.exe_5177]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730\b63730.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63730\b63730
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63732.exe_5178]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732\b63732.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63732\b63732
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63743.exe_5179]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743\b63743.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63743\b63743
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b63823.exe_5180]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823\b63823.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b63823\b63823
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b64026.exe_5181]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026\b64026.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64026\b64026
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b64560.exe_5182]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560\b64560.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64560\b64560
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b64579.exe_5183]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579\b64579.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b64579\b64579
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b65087.exe_5184]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087\b65087.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65087\b65087
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b65176.exe_5185]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176\b65176.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65176\b65176
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b65407.exe_5186]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407\b65407.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65407\b65407
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b65423.exe_5187]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423\b65423.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b65423\b65423
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66226.exe_5188]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226\b66226.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66226\b66226
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66425.exe_5189]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425\b66425.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66425\b66425
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66533.exe_5190]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533\b66533.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66533\b66533
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66583.exe_5191]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583\b66583.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66583\b66583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66620.exe_5192]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620\b66620.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66620\b66620
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b66679.exe_5193]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679\b66679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b66679\b66679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b67351.exe_5194]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351\b67351.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67351\b67351
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b67414.exe_5195]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414\b67414.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67414\b67414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b67744.exe_5196]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744\b67744.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67744\b67744
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b67819.exe_5197]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819\b67819.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67819\b67819
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b67987.exe_5198]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987\b67987.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b67987\b67987
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68028.exe_5199]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028\b68028.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68028\b68028
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68045.exe_5200]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045\b68045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68045\b68045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68361.exe_5201]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361\b68361.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68361\b68361
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68634.exe_5202]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634\b68634.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68634\b68634
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68757.exe_5203]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757\b68757.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68757\b68757
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b68872.exe_5204]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872\b68872.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b68872\b68872
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b69225.exe_5205]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225\b69225.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69225\b69225
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b69227.exe_5206]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227\b69227.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69227\b69227
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b69512.exe_5207]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512\b69512.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69512\b69512
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b69528.exe_5208]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528\b69528.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69528\b69528
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b69848.exe_5209]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848\b69848.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b69848\b69848
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70267.exe_5210]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267\b70267.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70267\b70267
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70289.exe_5211]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289\b70289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70289\b70289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70335.exe_5212]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335\b70335.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70335\b70335
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70354.exe_5213]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354\b70354.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70354\b70354
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70808.exe_5214]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808\b70808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70808\b70808
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70909.exe_5215]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909\b70909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70909\b70909
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70964.exe_5216]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964\b70964.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70964\b70964
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70967.exe_5217]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967\b70967.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70967\b70967
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70992.exe_5218]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992\b70992.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70992\b70992
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b70994.exe_5219]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994\b70994.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b70994\b70994
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71003.exe_5220]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003\b71003.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71003\b71003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71005.exe_5221]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005\b71005.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71005\b71005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71093.exe_5222]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093\b71093.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71093\b71093
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71099.exe_5223]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099\b71099.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71099\b71099
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71120.exe_5224]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120\b71120.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71120\b71120
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71135.exe_5225]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135\b71135.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71135\b71135
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71155.exe_5226]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155\b71155.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71155\b71155
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71179.exe_5227]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179\b71179.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71179\b71179
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71231.exe_5228]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231\b71231.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71231\b71231
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71318.exe_5229]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318\b71318.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71318\b71318
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71722.exe_5230]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722\b71722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71722\b71722
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71831.exe_5231]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831\b71831.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71831\b71831
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71869.exe_5232]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869\b71869.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71869\b71869
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b71999.exe_5233]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999\b71999.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b71999\b71999
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72136.exe_5234]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136\b72136.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72136\b72136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72160.exe_5235]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160\b72160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72160\b72160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72161.exe_5236]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161\b72161.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72161\b72161
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72164.exe_5237]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164\b72164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72164\b72164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72422.exe_5238]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422\b72422.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72422\b72422
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72518.exe_5239]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518\b72518.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72518\b72518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72522.exe_5240]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522\b72522.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72522\b72522
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72687.exe_5241]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687\b72687.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72687\b72687
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72699.exe_5242]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699\b72699.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72699\b72699
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72828.exe_5243]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828\b72828.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72828\b72828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72932.exe_5244]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932\b72932.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72932\b72932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72986.exe_5245]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986\b72986.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72986\b72986
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72996.exe_5246]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996\b72996.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b72996\b72996
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b73079.exe_5247]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079\b73079.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73079\b73079
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b73207.exe_5248]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207\b73207.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73207\b73207
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b73283.exe_5249]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283\b73283.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73283\b73283
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b73786.exe_5250]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786\b73786.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73786\b73786
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b73921.exe_5251]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921\b73921.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b73921\b73921
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b74182.exe_5252]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182\b74182.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74182\b74182
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b74608.exe_5253]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608\b74608.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74608\b74608
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b74937.exe_5254]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937\b74937.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74937\b74937
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b74939.exe_5255]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939\b74939.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74939\b74939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b74976.exe_5256]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976\b74976.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b74976\b74976
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75250.exe_5257]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250\b75250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75250\b75250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75509.exe_5258]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509\b75509.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75509\b75509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75888.exe_5259]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888\b75888.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75888\b75888
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75890.exe_5260]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890\b75890.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75890\b75890
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75944.exe_5261]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944\b75944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75944\b75944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75945.exe_5262]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945\b75945.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75945\b75945
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b75988.exe_5263]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988\b75988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b75988\b75988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b76267.exe_5264]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267\b76267.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76267\b76267
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b76511.exe_5265]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511\b76511.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76511\b76511
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b76590.exe_5266]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590\b76590.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76590\b76590
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b76717.exe_5267]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717\b76717.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b76717\b76717
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77304.exe_5268]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304\b77304.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77304\b77304
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77707.exe_5269]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707\b77707.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77707\b77707
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77713.exe_5270]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713\b77713.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77713\b77713
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77806.exe_5271]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806\b77806.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77806\b77806
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77950.exe_5272]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950\b77950.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b77950\b77950
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b78392.exe_5273]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392\b78392.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78392\b78392
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b78694.exe_5274]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694\b78694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b78694\b78694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b79250.exe_5275]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250\b79250.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79250\b79250
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b79418.exe_5276]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418\b79418.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79418\b79418
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b79642.exe_5277]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642\b79642.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b79642\b79642
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80043.exe_5278]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043\b80043.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80043\b80043
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80045.exe_5279]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045\b80045.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80045\b80045
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80764.exe_5280]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764\b80764.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80764\b80764
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80824.exe_5281]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824\b80824.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b80824\b80824
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b81618.exe_5282]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618\b81618.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81618\b81618
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b81938.exe_5283]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938\b81938.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b81938\b81938
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82048.exe_5284]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048\b82048.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82048\b82048
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82160.exe_5285]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160\b82160.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82160\b82160
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82247.exe_5286]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247\b82247.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82247\b82247
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82249.exe_5287]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249\b82249.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82249\b82249
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82715.exe_5288]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715\b82715.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82715\b82715
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b82866.exe_5289]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866\b82866.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b82866\b82866
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b83690.exe_5290]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690\b83690.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83690\b83690
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b83702.exe_5291]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702\b83702.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b83702\b83702
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84836.exe_5292]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836\b84836.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84836\b84836
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84909.exe_5293]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909\b84909.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84909\b84909
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84916.exe_5294]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916\b84916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84916\b84916
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84971.exe_5295]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971\b84971.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b84971\b84971
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85316.exe_5296]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b85316\b85316
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91377.exe_5297]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377\b91377.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M12-Beta2\b91377\b91377
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b101147.exe_5298]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147\b101147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b101147\b101147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b113239.exe_5299]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239\b113239.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b113239\b113239
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85477.exe_5300]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477\b85477.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b85477\b85477
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b86139.exe_5301]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139\b86139.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b86139\b86139
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b87284.exe_5302]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284\b87284.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87284\b87284
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b87285.exe_5303]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285\b87285.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b87285\b87285
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b88712.exe_5304]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712\b88712.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88712\b88712
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b88793.exe_5305]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793\b88793.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88793\b88793
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b88797.exe_5306]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797\b88797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b88797\b88797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89277.exe_5307]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277\b89277.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89277\b89277
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89279.exe_5308]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279\b89279.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89279\b89279
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89409.exe_5309]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409\b89409.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89409\b89409
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89506.exe_5310]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506\b89506.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89506\b89506
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89546.exe_5311]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546\b89546.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89546\b89546
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89600.exe_5312]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600\b89600.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89600\b89600
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89797.exe_5313]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797\b89797.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89797\b89797
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b89946.exe_5314]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946\b89946.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b89946\b89946
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b90129.exe_5315]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129\b90129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b90129\b90129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91021.exe_5316]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021\b91021.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91021\b91021
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91189.exe_5317]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189\b91189.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91189\b91189
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91203.exe_5318]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203\b91203.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91203\b91203
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91223.exe_5319]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223\b91223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91223\b91223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91230.exe_5320]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230\b91230.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91230\b91230
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91248.exe_5321]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248\b91248.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91248\b91248
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91359.exe_5322]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359\b91359.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91359\b91359
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91855.exe_5323]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855\b91855.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91855\b91855
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91859.exe_5324]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859\b91859.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91859\b91859
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91867.exe_5325]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867\b91867.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91867\b91867
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91917.exe_5326]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917\b91917.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b91917\b91917
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92066.exe_5327]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066\b92066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92066\b92066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92073.exe_5328]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073\b92073.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92073\b92073
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92289.exe_5329]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289\b92289.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92289\b92289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92568.exe_5330]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568\b92568.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92568\b92568
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92614.exe_5331]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614\b92614.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92614\b92614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92693.exe_5332]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693\b92693.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92693\b92693
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92714.exe_5333]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714\b92714.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92714\b92714
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92736.exe_5334]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736\b92736.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b92736\b92736
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b93027.exe_5335]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027\b93027.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93027\b93027
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b93635.exe_5336]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635\b93635.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b93635\b93635
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b94306.exe_5337]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306\b94306.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b94306\b94306
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b98958.exe_5338]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958\b98958.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b98958\b98958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99222.exe_5339]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222\b99222.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99222\b99222
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99235.exe_5340]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235\b99235.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99235\b99235
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99667.exe_5341]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667\b99667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99667\b99667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99969.exe_5342]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969\b99969.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M13-RTM\b99969\b99969
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b119538a.exe_5343]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a\b119538a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b119538b.exe_5344]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b\b119538b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-M14-SP1\b119538\b119538b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b147814_il.exe_5345]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il\b147814_il.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147814\b147814_il
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b147816.exe_5346]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816\b147816.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b147816\b147816
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b148815.exe_5347]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815\b148815.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b148815\b148815
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[params-mixed.exe_5348]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed\params-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[params-none.exe_5349]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none\params-none.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-none
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[params-object.exe_5350]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object\params-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[params-value.exe_5351]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value\params-value.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[params-varargs.exe_5352]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs\params-varargs.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\params-varargs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static-mixed.exe_5353]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed\static-mixed.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-mixed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static-none.exe_5354]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none\static-none.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-none
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static-object.exe_5355]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object\static-object.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[static-ref.exe_5356]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref\static-ref.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1-QFE\b151440\static-ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b119294.exe_5357]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294\b119294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b119294\b119294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b130333.exe_5358]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333\b130333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b130333\b130333
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b139895.exe_5359]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895\b139895.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b139895\b139895
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b140118.exe_5360]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118\b140118.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140118\b140118
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b140711.exe_5361]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711\b140711.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140711\b140711
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b140902.exe_5362]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902\b140902.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b140902\b140902
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b143840.exe_5363]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840\b143840.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.1-M1-Beta1\b143840\b143840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b101136.exe_5364]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b101136\b101136\b101136.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b101136\b101136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102637.exe_5365]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637\b102637.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102637\b102637
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102879.exe_5366]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879\b102879.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b102879\b102879
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b103058.exe_5367]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058\b103058.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b103058\b103058
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b124232.exe_5368]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232\b124232.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b124232\b124232
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b147147.exe_5369]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147\b147147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147147\b147147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b147924.exe_5370]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924\b147924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b147924\b147924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b169333.exe_5371]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333\b169333.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b169333\b169333
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b178119.exe_5372]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119\b178119.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178119\b178119
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b178128.exe_5373]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128\b178128.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b178128\b178128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b180381a.exe_5374]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a\b180381a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b180381b.exe_5375]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b\b180381b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b180381\b180381b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b191926.exe_5376]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926\b191926.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b191926\b191926
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[csharptester.exe_5377]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester\csharptester.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b210352\csharptester
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b213516.exe_5378]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516\b213516.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b213516\b213516
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b219940.exe_5379]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940\b219940.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b219940\b219940
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b220968.exe_5380]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968\b220968.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b220968\b220968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b223924.exe_5381]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924\b223924.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223924\b223924
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b223932.exe_5382]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932\b223932.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223932\b223932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b223936.exe_5383]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936\b223936.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-Beta1\b223936\b223936
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b00722.exe_5384]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722\b00722.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00722\b00722
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b00735.exe_5385]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735\b00735.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b00735\b00735
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02345.exe_5386]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345\b02345.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02345\b02345
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b02762.exe_5387]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762\b02762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b02762\b02762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b03689.exe_5388]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689\b03689.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b03689\b03689
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b04319.exe_5389]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319\b04319.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b04319\b04319
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b05623.exe_5390]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623\b05623.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b05623\b05623
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b06020.exe_5391]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020\b06020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b06020\b06020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07211.exe_5392]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211\b07211.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07211\b07211
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07369.exe_5393]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369\b07369.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07369\b07369
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07383.exe_5394]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383\b07383.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07383\b07383
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07900.exe_5395]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900\b07900.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07900\b07900
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b07947.exe_5396]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947\b07947.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b07947\b07947
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08020.exe_5397]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020\b08020.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08020\b08020
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b08046.exe_5398]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046\b08046.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b08046\b08046
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11762.exe_5399]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762\b11762.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b11762\b11762
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13452.exe_5400]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452\b13452.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b13452\b13452
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14617.exe_5401]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617\b14617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b14617\b14617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15617.exe_5402]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617\b15617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b15617\b15617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16378.exe_5403]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378\b16378.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16378\b16378
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16382.exe_5404]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382\b16382.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16382\b16382
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16386.exe_5405]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386\b16386.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16386\b16386
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16399.exe_5406]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399\b16399.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16399\b16399
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16473.exe_5407]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473\b16473.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16473\b16473
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16570.exe_5408]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570\b16570.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b16570\b16570
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b18049.exe_5409]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049\b18049.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M01\b18049\b18049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b00719.exe_5410]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719\b00719.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b00719\b00719
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102962a.exe_5411]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a\b102962a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102962b.exe_5412]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b\b102962b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102962c.exe_5413]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c\b102962c.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b102962\b102962c
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b115932a.exe_5414]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a\b115932a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b115932b.exe_5415]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b\b115932b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b115932\b115932b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b118260.exe_5416]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260\b118260.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b118260\b118260
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b138117.exe_5417]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117\b138117.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b138117\b138117
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19171.exe_5418]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171\b19171.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b19171\b19171
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b21296.exe_5419]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296\b21296.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b21296\b21296
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b30251.exe_5420]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251\b30251.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b30251\b30251
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b31398.exe_5421]
+RelativePath=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398\b31398.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V1.2-M02\b31398\b31398
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b091942.exe_5422]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942\b091942.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b091942\b091942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102533.exe_5423]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533\b102533.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b102533\b102533
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b125091.exe_5424]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091\b125091.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b125091\b125091
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b268908.exe_5425]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908\b268908.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b268908\b268908
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[OverwriteArray.exe_5426]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309042\OverwriteArray\OverwriteArray.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309042\OverwriteArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b309555.exe_5427]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555\b309555.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b309555\b309555
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b320147.exe_5428]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147\b320147.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b320147\b320147
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b321799.exe_5429]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799\b321799.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b321799\b321799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b323557-dbg.exe_5430]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg\b323557-dbg.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-dbg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b323557-ret.exe_5431]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret\b323557-ret.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b323557\b323557-ret
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b338014.exe_5432]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014\b338014.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b338014\b338014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b353858.exe_5433]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858\b353858.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b353858\b353858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b359564.exe_5434]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564\b359564.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b359564\b359564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b374944.exe_5435]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944\b374944.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b374944\b374944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b399444a.exe_5436]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a\b399444a.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b399444b.exe_5437]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b\b399444b.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b399444\b399444b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b405223.exe_5438]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223\b405223.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b405223\b405223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b409617.exe_5439]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617\b409617.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409617\b409617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b409748.exe_5440]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748\b409748.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b409748\b409748
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b415164.exe_5441]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164\b415164.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b415164\b415164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b416667.exe_5442]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667\b416667.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b416667\b416667
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b423721.exe_5443]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721\b423721.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423721\b423721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b423755.exe_5444]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755\b423755.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\b423755
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b423755.exe_5445]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755\b423755.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b423755\Desktop\b423755
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b425314.exe_5446]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314\b425314.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b425314\b425314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b426654.exe_5447]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654\b426654.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b426654\b426654
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b431011.exe_5448]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b431011\b431011\b431011.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b431011\b431011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b441487.exe_5449]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487\b441487.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b441487\b441487
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b448208.exe_5450]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208\b448208.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b448208\Desktop\b448208
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b449827.exe_5451]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827\b449827.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-Beta2\b449827\b449827
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b369916.exe_5452]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916\b369916.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b369916\b369916
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b471305.exe_5453]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305\b471305.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b471305\b471305
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b475589.exe_5454]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589\b475589.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b475589\b475589
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b487364.exe_5455]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364\b487364.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487364\b487364
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b487372.exe_5456]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372\b487372.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b487372\b487372
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b489329.exe_5457]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329\b489329.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b489329\b489329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b491215.exe_5458]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215\b491215.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b491215\b491215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b518440.exe_5459]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440\b518440.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b518440\b518440
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b530694.exe_5460]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694\b530694.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b530694\b530694
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_5461]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test\test.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test2.exe_5462]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2\test2.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b598031\test2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b604247.exe_5463]
+RelativePath=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247\b604247.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\V2.0-RTM\b604247\b604247
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b106272.exe_5464]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272\b106272.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b106272\b106272
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b152292.exe_5465]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292\b152292.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b152292\b152292
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b173313.exe_5466]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313\b173313.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b173313\b173313
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b193264.exe_5467]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264\b193264.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b193264\b193264
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b48850.exe_5468]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850\b48850.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b48850\b48850
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b561129.exe_5469]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129\b561129.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b561129\b561129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b565808.exe_5470]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808\b565808.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b565808\b565808
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b569942.exe_5471]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942\b569942.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b569942\b569942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b589202.exe_5472]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202\b589202.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b589202\b589202
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b598034.exe_5473]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034\b598034.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598034\b598034
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b598649.exe_5474]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649\b598649.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b598649\b598649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b602004.exe_5475]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004\b602004.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b602004\b602004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b608066.exe_5476]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066\b608066.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608066\b608066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b608198.exe_5477]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198\b608198.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b608198\b608198
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b609280.exe_5478]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280\b609280.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609280\b609280
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b609988.exe_5479]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988\b609988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\b609988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b609988.exe_5480]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988\b609988.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b609988\Desktop\b609988
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b610562.exe_5481]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562\b610562.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610562\b610562
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b610750.exe_5482]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750\b610750.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b610750_32vs64.exe_5483]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64\b610750_32vs64.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b610750\b610750_32vs64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b611219.exe_5484]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219\b611219.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b611219\b611219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b72218.exe_5485]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218\b72218.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\b72218\b72218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ConstToString.exe_5486]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString\ConstToString.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b121938\ConstToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b151497.exe_5487]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497\b151497.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b151497\b151497
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b158861.exe_5488]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861\b158861.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b158861\b158861
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b163200.exe_5489]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200\b163200.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b163200\b163200
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LdfldaHack.exe_5490]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack\LdfldaHack.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\B168384\LdfldaHack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b170362.exe_5491]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362\b170362.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b170362\b170362
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b174294.exe_5492]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294\b174294.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b174294\b174294
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b175679.exe_5493]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679\b175679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b175679\b175679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b176032.exe_5494]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032\b176032.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b176032\b176032
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b188478.exe_5495]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478\b188478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b188478\b188478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19679.exe_5496]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679\b19679.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b19679\b19679
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b202743.exe_5497]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743\b202743.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b202743\b202743
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b33183.exe_5498]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183\b33183.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b33183\b33183
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b49778.exe_5499]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778\b49778.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.1\DDB\b49778\b49778
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b429039.exe_5500]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039\b429039.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\b429039\b429039
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DDB188478.exe_5501]
+RelativePath=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478\DDB188478.exe
+WorkingDir=JIT\Regression\CLR-x86-JIT\v2.2\ddb\ddb188478\DDB188478
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev10_865840.exe_5502]
+RelativePath=JIT\Regression\Dev11\dev10_865840\dev10_865840\dev10_865840.exe
+WorkingDir=JIT\Regression\Dev11\dev10_865840\dev10_865840
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[loopvt.exe_5503]
+RelativePath=JIT\Regression\Dev11\dev10_94677\loopvt\loopvt.exe
+WorkingDir=JIT\Regression\Dev11\dev10_94677\loopvt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[conv_ovf_i4.exe_5504]
+RelativePath=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4\conv_ovf_i4.exe
+WorkingDir=JIT\Regression\Dev11\dev11_10427\conv_ovf_i4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev11_13912.exe_5505]
+RelativePath=JIT\Regression\Dev11\dev11_13912\dev11_13912\dev11_13912.exe
+WorkingDir=JIT\Regression\Dev11\dev11_13912\dev11_13912
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[seqpts.exe_5506]
+RelativePath=JIT\Regression\Dev11\dev11_165544\seqpts\seqpts.exe
+WorkingDir=JIT\Regression\Dev11\dev11_165544\seqpts
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev11_20929_d.exe_5507]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_d\dev11_20929_d.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev11_20929_do.exe_5508]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_do\dev11_20929_do.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev11_20929_r.exe_5509]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_r\dev11_20929_r.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev11_20929_ro.exe_5510]
+RelativePath=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro\dev11_20929_ro.exe
+WorkingDir=JIT\Regression\Dev11\dev11_20929\dev11_20929_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_4421.exe_5511]
+RelativePath=JIT\Regression\Dev11\dev11_4421\Dev11_4421\Dev11_4421.exe
+WorkingDir=JIT\Regression\Dev11\dev11_4421\Dev11_4421
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_457559.exe_5512]
+RelativePath=JIT\Regression\Dev11\Dev11_457559\Dev11_457559\Dev11_457559.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_457559\Dev11_457559
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_HndIndex_10_Plain.exe_5513]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain\Test_HndIndex_10_Plain.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Plain
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Test_HndIndex_10_Reordered.exe_5514]
+RelativePath=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered\Test_HndIndex_10_Reordered.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_468598\Test_HndIndex_10_Reordered
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_5437.exe_5515]
+RelativePath=JIT\Regression\Dev11\Dev11_5437\Dev11_5437\Dev11_5437.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_5437\Dev11_5437
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_617302.exe_5516]
+RelativePath=JIT\Regression\Dev11\Dev11_617302\Dev11_617302\Dev11_617302.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_617302\Dev11_617302
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_646049.exe_5517]
+RelativePath=JIT\Regression\Dev11\Dev11_646049\Dev11_646049\Dev11_646049.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_646049\Dev11_646049
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dev11_76013.exe_5518]
+RelativePath=JIT\Regression\Dev11\dev11_76013\Dev11_76013\Dev11_76013.exe
+WorkingDir=JIT\Regression\Dev11\dev11_76013\Dev11_76013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b473131.exe_5519]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131\b473131.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b473131_byte.exe_5520]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_byte\b473131_byte.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_byte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b473131_fld.exe_5521]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_fld\b473131_fld.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_fld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b473131_intptr.exe_5522]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr\b473131_intptr.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_intptr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b473131_struct.exe_5523]
+RelativePath=JIT\Regression\Dev11\Dev11_b473131\b473131_struct\b473131_struct.exe
+WorkingDir=JIT\Regression\Dev11\Dev11_b473131\b473131_struct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv2_10623.exe_5524]
+RelativePath=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623\DevDiv2_10623.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_10623\DevDiv2_10623
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv2_11321.exe_5525]
+RelativePath=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321\DevDiv2_11321.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_11321\DevDiv2_11321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv2_8863.exe_5526]
+RelativePath=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863\DevDiv2_8863.exe
+WorkingDir=JIT\Regression\Dev11\DevDiv2_8863\DevDiv2_8863
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BadMax1.exe_5527]
+RelativePath=JIT\Regression\Dev11\External\dev11_111914\BadMax1\BadMax1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_111914\BadMax1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BadBox1.exe_5528]
+RelativePath=JIT\Regression\Dev11\External\dev11_131317\BadBox1\BadBox1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_131317\BadBox1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CSharpPart.exe_5529]
+RelativePath=JIT\Regression\Dev11\External\dev11_132534\CSharpPart\CSharpPart.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_132534\CSharpPart
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[R3Trasher1.exe_5530]
+RelativePath=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1\R3Trasher1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_135245\R3Trasher1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ReflectOnField.exe_5531]
+RelativePath=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField\ReflectOnField.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_13748\ReflectOnField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorForwarder.exe_5532]
+RelativePath=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder\VectorForwarder.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_14131\VectorForwarder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CSharpPart.exe_5533]
+RelativePath=JIT\Regression\Dev11\External\dev11_145295\CSharpPart\CSharpPart.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_145295\CSharpPart
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GCHole1.exe_5534]
+RelativePath=JIT\Regression\Dev11\External\dev11_149090\GCHole1\GCHole1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_149090\GCHole1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DynamicStaticAlignment.exe_5535]
+RelativePath=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment\DynamicStaticAlignment.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_154899\DynamicStaticAlignment
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ShowLocallocAlignment.exe_5536]
+RelativePath=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment\ShowLocallocAlignment.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_239804\ShowLocallocAlignment
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[app.exe_5537]
+RelativePath=JIT\Regression\Dev11\External\Dev11_243742\app\app.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_243742\app
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[UninitializedHighWord.exe_5538]
+RelativePath=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord\UninitializedHighWord.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_27971\UninitializedHighWord
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[R3Contention.exe_5539]
+RelativePath=JIT\Regression\Dev11\External\dev11_28763\R3Contention\R3Contention.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_28763\R3Contention
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BadCheckedAdd1.exe_5540]
+RelativePath=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1\BadCheckedAdd1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_77709\BadCheckedAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[UseUnalignedDouble.exe_5541]
+RelativePath=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble\UseUnalignedDouble.exe
+WorkingDir=JIT\Regression\Dev11\External\Dev11_90434\UseUnalignedDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[UseTrashedVfp1.exe_5542]
+RelativePath=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1\UseTrashedVfp1.exe
+WorkingDir=JIT\Regression\Dev11\External\dev11_91048\UseTrashedVfp1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_876169_d.exe_5543]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d\DevDiv_876169_d.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_876169_do.exe_5544]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do\DevDiv_876169_do.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_876169_r.exe_5545]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r\DevDiv_876169_r.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_876169_ro.exe_5546]
+RelativePath=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro\DevDiv_876169_ro.exe
+WorkingDir=JIT\Regression\Dev14\DevDiv_876169\DevDiv_876169_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_168744.exe_5547]
+RelativePath=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744\DevDiv_168744.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_168744\DevDiv_168744
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[devdiv_174983.exe_5548]
+RelativePath=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983\devdiv_174983.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_174983\devdiv_174983
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[devdiv_180411.exe_5549]
+RelativePath=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411\devdiv_180411.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_180411\devdiv_180411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794115_d.exe_5550]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d\DevDiv_794115_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794115_do.exe_5551]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do\DevDiv_794115_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794115_r.exe_5552]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r\DevDiv_794115_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794115_ro.exe_5553]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro\DevDiv_794115_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794115\DevDiv_794115_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794631_d.exe_5554]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d\DevDiv_794631_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794631_do.exe_5555]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do\DevDiv_794631_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794631_r.exe_5556]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r\DevDiv_794631_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_794631_ro.exe_5557]
+RelativePath=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro\DevDiv_794631_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_794631\DevDiv_794631_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_815940_d.exe_5558]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d\DevDiv_815940_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_815940_do.exe_5559]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do\DevDiv_815940_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_815940_r.exe_5560]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r\DevDiv_815940_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_815940_ro.exe_5561]
+RelativePath=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro\DevDiv_815940_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_815940\DevDiv_815940_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[devdiv_815941.exe_5562]
+RelativePath=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941\devdiv_815941.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_815941\devdiv_815941
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[devdiv_815942.exe_5563]
+RelativePath=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942\devdiv_815942.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_815942\devdiv_815942
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_816617_d.exe_5564]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d\DevDiv_816617_d.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_816617_do.exe_5565]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do\DevDiv_816617_do.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_816617_r.exe_5566]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r\DevDiv_816617_r.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_816617_ro.exe_5567]
+RelativePath=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro\DevDiv_816617_ro.exe
+WorkingDir=JIT\Regression\JitBlue\DevDiv_816617\DevDiv_816617_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_902271.exe_5568]
+RelativePath=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271\DevDiv_902271.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_902271\DevDiv_902271
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_911875_d.exe_5569]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d\DevDiv_911875_d.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_d
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_911875_do.exe_5570]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do\DevDiv_911875_do.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_do
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_911875_r.exe_5571]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r\DevDiv_911875_r.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DevDiv_911875_ro.exe_5572]
+RelativePath=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro\DevDiv_911875_ro.exe
+WorkingDir=JIT\Regression\JitBlue\devdiv_911875\DevDiv_911875_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GitHub_1296.exe_5573]
+RelativePath=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296\GitHub_1296.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1296\GitHub_1296
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GitHub_1323.exe_5574]
+RelativePath=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323\GitHub_1323.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_1323\GitHub_1323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GitHub_2580.exe_5575]
+RelativePath=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580\GitHub_2580.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_2580\GitHub_2580
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[GitHub_2610.exe_5576]
+RelativePath=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610\GitHub_2610.exe
+WorkingDir=JIT\Regression\JitBlue\GitHub_2610\GitHub_2610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[dev10_804810.exe_5577]
+RelativePath=JIT\Regression\v4\dev10_804810\dev10_804810\dev10_804810.exe
+WorkingDir=JIT\Regression\v4\dev10_804810\dev10_804810
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b100336.exe_5578]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336\b100336.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b100336\b100336
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102759.exe_5579]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759\b102759.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102759\b102759
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102870.exe_5580]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870\b102870.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b102870\b102870
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b103838.exe_5581]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838\b103838.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103838\b103838
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b103846.exe_5582]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846\b103846.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b103846\b103846
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b106158.exe_5583]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158\b106158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b106158\b106158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b108366.exe_5584]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366\b108366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108366\b108366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b108908.exe_5585]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908\b108908.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b108908\b108908
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b109721.exe_5586]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721\b109721.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109721\b109721
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b109878.exe_5587]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878\b109878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b109878\b109878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b111130.exe_5588]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130\b111130.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111130\b111130
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b111192.exe_5589]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192\b111192.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b111192\b111192
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b112348.exe_5590]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348\b112348.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112348\b112348
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b112982.exe_5591]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982\b112982.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b112982\b112982
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b113286.exe_5592]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286\b113286.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113286\b113286
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b113493.exe_5593]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493\b113493.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b113493\b113493
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b114628.exe_5594]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628\b114628.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b114628\b114628
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b115103.exe_5595]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103\b115103.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115103\b115103
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b115253.exe_5596]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253\b115253.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b115253\b115253
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b119026a.exe_5597]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a\b119026a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b119026b.exe_5598]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b\b119026b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b119026\b119026b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b140298.exe_5599]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298\b140298.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b140298\b140298
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b141062.exe_5600]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062\b141062.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141062\b141062
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b141358.exe_5601]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358\b141358.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b141358\b141358
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b77951.exe_5602]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951\b77951.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b77951\b77951
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b79852.exe_5603]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852\b79852.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79852\b79852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b79858.exe_5604]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858\b79858.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b79858\b79858
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80365.exe_5605]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365\b80365.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80365\b80365
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80373.exe_5606]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373\b80373.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80373\b80373
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80737.exe_5607]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737\b80737.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80737\b80737
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b80738.exe_5608]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738\b80738.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b80738\b80738
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b81763.exe_5609]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763\b81763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81763\b81763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b81764.exe_5610]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764\b81764.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81764\b81764
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b81766.exe_5611]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766\b81766.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b81766\b81766
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84128.exe_5612]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128\b84128.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84128\b84128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84129.exe_5613]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129\b84129.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84129\b84129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84131.exe_5614]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131\b84131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84131\b84131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84136.exe_5615]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136\b84136.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84136\b84136
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84586.exe_5616]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586\b84586.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84586\b84586
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84590.exe_5617]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590\b84590.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84590\b84590
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84592.exe_5618]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592\b84592.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84592\b84592
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84957.exe_5619]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957\b84957.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84957\b84957
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84958.exe_5620]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958\b84958.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84958\b84958
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84961.exe_5621]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961\b84961.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84961\b84961
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b84962.exe_5622]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962\b84962.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b84962\b84962
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85314.exe_5623]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314\b85314.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85314\b85314
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85315.exe_5624]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315\b85315.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85315\b85315
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85316.exe_5625]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316\b85316.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85316\b85316
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85317.exe_5626]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317\b85317.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85317\b85317
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85564.exe_5627]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564\b85564.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85564\b85564
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85565.exe_5628]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565\b85565.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85565\b85565
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b85566.exe_5629]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566\b85566.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b85566\b85566
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92713.exe_5630]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713\b92713.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92713\b92713
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b92726.exe_5631]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726\b92726.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b92726\b92726
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b98431.exe_5632]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431\b98431.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b98431\b98431
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99219.exe_5633]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219\b99219.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99219\b99219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b99403.exe_5634]
+RelativePath=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403\b99403.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\M00\b99403\b99403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102615.exe_5635]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615\b102615.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102615\b102615
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102860.exe_5636]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860\b102860.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102860\b102860
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102887.exe_5637]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887\b102887.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b102887\b102887
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b124409.exe_5638]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409\b124409.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b124409\b124409
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b126221.exe_5639]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221\b126221.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b126221\b126221
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b142473.exe_5640]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473\b142473.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b142473\b142473
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b223862.exe_5641]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862\b223862.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b223862\b223862
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b301479.exe_5642]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479\b301479.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b301479\b301479
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b302509.exe_5643]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509\b302509.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b302509\b302509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91074.exe_5644]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074\b91074.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91074\b91074
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91944.exe_5645]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944\b91944.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91944\b91944
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b91953.exe_5646]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953\b91953.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-Beta1\b91953\b91953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10789.exe_5647]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789\b10789.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10789\b10789
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10790.exe_5648]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790\b10790.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10790\b10790
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10802.exe_5649]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802\b10802.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10802\b10802
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10827.exe_5650]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827\b10827.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10827\b10827
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10841.exe_5651]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841\b10841.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10841\b10841
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10852.exe_5652]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852\b10852.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b10852\b10852
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11131.exe_5653]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131\b11131.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11131\b11131
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b11878.exe_5654]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878\b11878.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b11878\b11878
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12022.exe_5655]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022\b12022.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12022\b12022
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12263.exe_5656]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263\b12263.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12263\b12263
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12343.exe_5657]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343\b12343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12343\b12343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12390.exe_5658]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390\b12390.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12390\b12390
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12425.exe_5659]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425\b12425.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b12425\b12425
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b13691.exe_5660]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691\b13691.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b13691\b13691
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14324.exe_5661]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324\b14324.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b14324\b14324
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19112a.exe_5662]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a\b19112a.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112a
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19112b.exe_5663]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b\b19112b.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M01\b19112\b19112b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102518.exe_5664]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518\b102518.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102518\b102518
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102729.exe_5665]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729\b102729.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102729\b102729
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102763.exe_5666]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763\b102763.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102763\b102763
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102844.exe_5667]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844\b102844.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102844\b102844
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b102886.exe_5668]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886\b102886.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b102886\b102886
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b108129.exe_5669]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129\b108129.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b108129\b108129
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b10828.exe_5670]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828\b10828.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b10828\b10828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b12011.exe_5671]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011\b12011.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b12011\b12011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14355.exe_5672]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355\b14355.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14355\b14355
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14364.exe_5673]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364\b14364.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14364\b14364
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14366.exe_5674]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366\b14366.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14366\b14366
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14368.exe_5675]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368\b14368.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14368\b14368
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b14369.exe_5676]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369\b14369.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b14369\b14369
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b15539.exe_5677]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539\b15539.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b15539\b15539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16198.exe_5678]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198\b16198.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16198\b16198
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b16224.exe_5679]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224\b16224.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b16224\b16224
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b17023.exe_5680]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023\b17023.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17023\b17023
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b17751.exe_5681]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751\b17751.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17751\b17751
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b17904.exe_5682]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904\b17904.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b17904\b17904
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19101.exe_5683]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101\b19101.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19101\b19101
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19289.exe_5684]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289\b19289.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19289\b19289
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b19394.exe_5685]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394\b19394.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b19394\b19394
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b21015.exe_5686]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015\b21015.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b21015\b21015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b22521.exe_5687]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521\b22521.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22521\b22521
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b22680.exe_5688]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680\b22680.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b22680\b22680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b26496.exe_5689]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496\b26496.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b26496\b26496
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27077.exe_5690]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077\b27077.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27077\b27077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27978.exe_5691]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978\b27978.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27978\b27978
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b27980.exe_5692]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980\b27980.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b27980\b27980
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28077.exe_5693]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077\b28077.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28077\b28077
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28141.exe_5694]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141\b28141.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28141\b28141
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28158.exe_5695]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158\b28158.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b28158_64.exe_5696]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64\b28158_64.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b28158\b28158_64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29343.exe_5697]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343\b29343.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29343\b29343
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b29727.exe_5698]
+RelativePath=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727\b29727.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V1.2-M02\b29727\b29727
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b184799.exe_5699]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799\b184799.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b184799\b184799
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b302558.exe_5700]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558\b302558.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b302558\b302558
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b309539.exe_5701]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539\b309539.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309539\b309539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b309548.exe_5702]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548\b309548.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309548\b309548
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b309576.exe_5703]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576\b309576.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b309576\b309576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b311420.exe_5704]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420\b311420.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b311420\b311420
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b333008.exe_5705]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008\b333008.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b333008\b333008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b356258.exe_5706]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258\b356258.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b356258\b356258
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b360587.exe_5707]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587\b360587.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b360587\b360587
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b410474.exe_5708]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474\b410474.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b410474\b410474
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b431098.exe_5709]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098\b431098.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b431098\b431098
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b450688.exe_5710]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688\b450688.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-Beta2\b450688\b450688
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b286991.exe_5711]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991\b286991.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b286991\b286991
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b460385.exe_5712]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385\b460385.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b460385\b460385
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[b539509.exe_5713]
+RelativePath=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509\b539509.exe
+WorkingDir=JIT\Regression\VS-ia64-JIT\V2.0-RTM\b539509\b539509
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DoWhileBndChk.exe_5714]
+RelativePath=JIT\RyuJIT\DoWhileBndChk\DoWhileBndChk.exe
+WorkingDir=JIT\RyuJIT\DoWhileBndChk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AbsGeneric_r.exe_5715]
+RelativePath=JIT\SIMD\AbsGeneric_r\AbsGeneric_r.exe
+WorkingDir=JIT\SIMD\AbsGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AbsGeneric_ro.exe_5716]
+RelativePath=JIT\SIMD\AbsGeneric_ro\AbsGeneric_ro.exe
+WorkingDir=JIT\SIMD\AbsGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AbsSqrt_r.exe_5717]
+RelativePath=JIT\SIMD\AbsSqrt_r\AbsSqrt_r.exe
+WorkingDir=JIT\SIMD\AbsSqrt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AbsSqrt_ro.exe_5718]
+RelativePath=JIT\SIMD\AbsSqrt_ro\AbsSqrt_ro.exe
+WorkingDir=JIT\SIMD\AbsSqrt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AddingSequence_r.exe_5719]
+RelativePath=JIT\SIMD\AddingSequence_r\AddingSequence_r.exe
+WorkingDir=JIT\SIMD\AddingSequence_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AddingSequence_ro.exe_5720]
+RelativePath=JIT\SIMD\AddingSequence_ro\AddingSequence_ro.exe
+WorkingDir=JIT\SIMD\AddingSequence_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BitwiseOperations_r.exe_5721]
+RelativePath=JIT\SIMD\BitwiseOperations_r\BitwiseOperations_r.exe
+WorkingDir=JIT\SIMD\BitwiseOperations_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BitwiseOperations_ro.exe_5722]
+RelativePath=JIT\SIMD\BitwiseOperations_ro\BitwiseOperations_ro.exe
+WorkingDir=JIT\SIMD\BitwiseOperations_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BoxUnbox_r.exe_5723]
+RelativePath=JIT\SIMD\BoxUnbox_r\BoxUnbox_r.exe
+WorkingDir=JIT\SIMD\BoxUnbox_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BoxUnbox_ro.exe_5724]
+RelativePath=JIT\SIMD\BoxUnbox_ro\BoxUnbox_ro.exe
+WorkingDir=JIT\SIMD\BoxUnbox_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BugWithAVX_r.exe_5725]
+RelativePath=JIT\SIMD\BugWithAVX_r\BugWithAVX_r.exe
+WorkingDir=JIT\SIMD\BugWithAVX_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[BugWithAVX_ro.exe_5726]
+RelativePath=JIT\SIMD\BugWithAVX_ro\BugWithAVX_ro.exe
+WorkingDir=JIT\SIMD\BugWithAVX_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CircleInConvex_r.exe_5727]
+RelativePath=JIT\SIMD\CircleInConvex_r\CircleInConvex_r.exe
+WorkingDir=JIT\SIMD\CircleInConvex_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CircleInConvex_ro.exe_5728]
+RelativePath=JIT\SIMD\CircleInConvex_ro\CircleInConvex_ro.exe
+WorkingDir=JIT\SIMD\CircleInConvex_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CreateGeneric_r.exe_5729]
+RelativePath=JIT\SIMD\CreateGeneric_r\CreateGeneric_r.exe
+WorkingDir=JIT\SIMD\CreateGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CreateGeneric_ro.exe_5730]
+RelativePath=JIT\SIMD\CreateGeneric_ro\CreateGeneric_ro.exe
+WorkingDir=JIT\SIMD\CreateGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CtorFromArray_r.exe_5731]
+RelativePath=JIT\SIMD\CtorFromArray_r\CtorFromArray_r.exe
+WorkingDir=JIT\SIMD\CtorFromArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CtorFromArray_ro.exe_5732]
+RelativePath=JIT\SIMD\CtorFromArray_ro\CtorFromArray_ro.exe
+WorkingDir=JIT\SIMD\CtorFromArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ctors_r.exe_5733]
+RelativePath=JIT\SIMD\Ctors_r\Ctors_r.exe
+WorkingDir=JIT\SIMD\Ctors_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ctors_ro.exe_5734]
+RelativePath=JIT\SIMD\Ctors_ro\Ctors_ro.exe
+WorkingDir=JIT\SIMD\Ctors_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DivSignedUnsignedTest_r.exe_5735]
+RelativePath=JIT\SIMD\DivSignedUnsignedTest_r\DivSignedUnsignedTest_r.exe
+WorkingDir=JIT\SIMD\DivSignedUnsignedTest_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DivSignedUnsignedTest_ro.exe_5736]
+RelativePath=JIT\SIMD\DivSignedUnsignedTest_ro\DivSignedUnsignedTest_ro.exe
+WorkingDir=JIT\SIMD\DivSignedUnsignedTest_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dup_r.exe_5737]
+RelativePath=JIT\SIMD\Dup_r\Dup_r.exe
+WorkingDir=JIT\SIMD\Dup_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Dup_ro.exe_5738]
+RelativePath=JIT\SIMD\Dup_ro\Dup_ro.exe
+WorkingDir=JIT\SIMD\Dup_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Haar-likeFeaturesGeneric_r.exe_5739]
+RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_r\Haar-likeFeaturesGeneric_r.exe
+WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Haar-likeFeaturesGeneric_ro.exe_5740]
+RelativePath=JIT\SIMD\Haar-likeFeaturesGeneric_ro\Haar-likeFeaturesGeneric_ro.exe
+WorkingDir=JIT\SIMD\Haar-likeFeaturesGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LdfldGeneric_r.exe_5741]
+RelativePath=JIT\SIMD\LdfldGeneric_r\LdfldGeneric_r.exe
+WorkingDir=JIT\SIMD\LdfldGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[LdfldGeneric_ro.exe_5742]
+RelativePath=JIT\SIMD\LdfldGeneric_ro\LdfldGeneric_ro.exe
+WorkingDir=JIT\SIMD\LdfldGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ldfld_r.exe_5743]
+RelativePath=JIT\SIMD\Ldfld_r\Ldfld_r.exe
+WorkingDir=JIT\SIMD\Ldfld_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ldfld_ro.exe_5744]
+RelativePath=JIT\SIMD\Ldfld_ro\Ldfld_ro.exe
+WorkingDir=JIT\SIMD\Ldfld_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ldind_r.exe_5745]
+RelativePath=JIT\SIMD\Ldind_r\Ldind_r.exe
+WorkingDir=JIT\SIMD\Ldind_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Ldind_ro.exe_5746]
+RelativePath=JIT\SIMD\Ldind_ro\Ldind_ro.exe
+WorkingDir=JIT\SIMD\Ldind_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MinMax_r.exe_5747]
+RelativePath=JIT\SIMD\MinMax_r\MinMax_r.exe
+WorkingDir=JIT\SIMD\MinMax_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[MinMax_ro.exe_5748]
+RelativePath=JIT\SIMD\MinMax_ro\MinMax_ro.exe
+WorkingDir=JIT\SIMD\MinMax_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Mul_r.exe_5749]
+RelativePath=JIT\SIMD\Mul_r\Mul_r.exe
+WorkingDir=JIT\SIMD\Mul_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Mul_ro.exe_5750]
+RelativePath=JIT\SIMD\Mul_ro\Mul_ro.exe
+WorkingDir=JIT\SIMD\Mul_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SqrtGeneric_r.exe_5751]
+RelativePath=JIT\SIMD\SqrtGeneric_r\SqrtGeneric_r.exe
+WorkingDir=JIT\SIMD\SqrtGeneric_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[SqrtGeneric_ro.exe_5752]
+RelativePath=JIT\SIMD\SqrtGeneric_ro\SqrtGeneric_ro.exe
+WorkingDir=JIT\SIMD\SqrtGeneric_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StoreElement_r.exe_5753]
+RelativePath=JIT\SIMD\StoreElement_r\StoreElement_r.exe
+WorkingDir=JIT\SIMD\StoreElement_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[StoreElement_ro.exe_5754]
+RelativePath=JIT\SIMD\StoreElement_ro\StoreElement_ro.exe
+WorkingDir=JIT\SIMD\StoreElement_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Sums_r.exe_5755]
+RelativePath=JIT\SIMD\Sums_r\Sums_r.exe
+WorkingDir=JIT\SIMD\Sums_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Sums_ro.exe_5756]
+RelativePath=JIT\SIMD\Sums_ro\Sums_ro.exe
+WorkingDir=JIT\SIMD\Sums_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Vector3_r.exe_5757]
+RelativePath=JIT\SIMD\Vector3_r\Vector3_r.exe
+WorkingDir=JIT\SIMD\Vector3_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Vector3_ro.exe_5758]
+RelativePath=JIT\SIMD\Vector3_ro\Vector3_ro.exe
+WorkingDir=JIT\SIMD\Vector3_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Vector4_r.exe_5759]
+RelativePath=JIT\SIMD\Vector4_r\Vector4_r.exe
+WorkingDir=JIT\SIMD\Vector4_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Vector4_ro.exe_5760]
+RelativePath=JIT\SIMD\Vector4_ro\Vector4_ro.exe
+WorkingDir=JIT\SIMD\Vector4_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorAbs_r.exe_5761]
+RelativePath=JIT\SIMD\VectorAbs_r\VectorAbs_r.exe
+WorkingDir=JIT\SIMD\VectorAbs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorAbs_ro.exe_5762]
+RelativePath=JIT\SIMD\VectorAbs_ro\VectorAbs_ro.exe
+WorkingDir=JIT\SIMD\VectorAbs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorAdd_r.exe_5763]
+RelativePath=JIT\SIMD\VectorAdd_r\VectorAdd_r.exe
+WorkingDir=JIT\SIMD\VectorAdd_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorAdd_ro.exe_5764]
+RelativePath=JIT\SIMD\VectorAdd_ro\VectorAdd_ro.exe
+WorkingDir=JIT\SIMD\VectorAdd_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArgs_r.exe_5765]
+RelativePath=JIT\SIMD\VectorArgs_r\VectorArgs_r.exe
+WorkingDir=JIT\SIMD\VectorArgs_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArgs_ro.exe_5766]
+RelativePath=JIT\SIMD\VectorArgs_ro\VectorArgs_ro.exe
+WorkingDir=JIT\SIMD\VectorArgs_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArrayInit_r.exe_5767]
+RelativePath=JIT\SIMD\VectorArrayInit_r\VectorArrayInit_r.exe
+WorkingDir=JIT\SIMD\VectorArrayInit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArrayInit_ro.exe_5768]
+RelativePath=JIT\SIMD\VectorArrayInit_ro\VectorArrayInit_ro.exe
+WorkingDir=JIT\SIMD\VectorArrayInit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArray_r.exe_5769]
+RelativePath=JIT\SIMD\VectorArray_r\VectorArray_r.exe
+WorkingDir=JIT\SIMD\VectorArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorArray_ro.exe_5770]
+RelativePath=JIT\SIMD\VectorArray_ro\VectorArray_ro.exe
+WorkingDir=JIT\SIMD\VectorArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorCopyToArray_r.exe_5771]
+RelativePath=JIT\SIMD\VectorCopyToArray_r\VectorCopyToArray_r.exe
+WorkingDir=JIT\SIMD\VectorCopyToArray_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorCopyToArray_ro.exe_5772]
+RelativePath=JIT\SIMD\VectorCopyToArray_ro\VectorCopyToArray_ro.exe
+WorkingDir=JIT\SIMD\VectorCopyToArray_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorDiv_r.exe_5773]
+RelativePath=JIT\SIMD\VectorDiv_r\VectorDiv_r.exe
+WorkingDir=JIT\SIMD\VectorDiv_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorDiv_ro.exe_5774]
+RelativePath=JIT\SIMD\VectorDiv_ro\VectorDiv_ro.exe
+WorkingDir=JIT\SIMD\VectorDiv_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorDot_r.exe_5775]
+RelativePath=JIT\SIMD\VectorDot_r\VectorDot_r.exe
+WorkingDir=JIT\SIMD\VectorDot_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorDot_ro.exe_5776]
+RelativePath=JIT\SIMD\VectorDot_ro\VectorDot_ro.exe
+WorkingDir=JIT\SIMD\VectorDot_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorExp_r.exe_5777]
+RelativePath=JIT\SIMD\VectorExp_r\VectorExp_r.exe
+WorkingDir=JIT\SIMD\VectorExp_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorExp_ro.exe_5778]
+RelativePath=JIT\SIMD\VectorExp_ro\VectorExp_ro.exe
+WorkingDir=JIT\SIMD\VectorExp_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorGet_r.exe_5779]
+RelativePath=JIT\SIMD\VectorGet_r\VectorGet_r.exe
+WorkingDir=JIT\SIMD\VectorGet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorGet_ro.exe_5780]
+RelativePath=JIT\SIMD\VectorGet_ro\VectorGet_ro.exe
+WorkingDir=JIT\SIMD\VectorGet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorHWAccel2_r.exe_5781]
+RelativePath=JIT\SIMD\VectorHWAccel2_r\VectorHWAccel2_r.exe
+WorkingDir=JIT\SIMD\VectorHWAccel2_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorHWAccel2_ro.exe_5782]
+RelativePath=JIT\SIMD\VectorHWAccel2_ro\VectorHWAccel2_ro.exe
+WorkingDir=JIT\SIMD\VectorHWAccel2_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorHWAccel_r.exe_5783]
+RelativePath=JIT\SIMD\VectorHWAccel_r\VectorHWAccel_r.exe
+WorkingDir=JIT\SIMD\VectorHWAccel_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorHWAccel_ro.exe_5784]
+RelativePath=JIT\SIMD\VectorHWAccel_ro\VectorHWAccel_ro.exe
+WorkingDir=JIT\SIMD\VectorHWAccel_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorInitN_r.exe_5785]
+RelativePath=JIT\SIMD\VectorInitN_r\VectorInitN_r.exe
+WorkingDir=JIT\SIMD\VectorInitN_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorInitN_ro.exe_5786]
+RelativePath=JIT\SIMD\VectorInitN_ro\VectorInitN_ro.exe
+WorkingDir=JIT\SIMD\VectorInitN_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorInit_r.exe_5787]
+RelativePath=JIT\SIMD\VectorInit_r\VectorInit_r.exe
+WorkingDir=JIT\SIMD\VectorInit_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorInit_ro.exe_5788]
+RelativePath=JIT\SIMD\VectorInit_ro\VectorInit_ro.exe
+WorkingDir=JIT\SIMD\VectorInit_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorIntEquals_r.exe_5789]
+RelativePath=JIT\SIMD\VectorIntEquals_r\VectorIntEquals_r.exe
+WorkingDir=JIT\SIMD\VectorIntEquals_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorIntEquals_ro.exe_5790]
+RelativePath=JIT\SIMD\VectorIntEquals_ro\VectorIntEquals_ro.exe
+WorkingDir=JIT\SIMD\VectorIntEquals_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMatrix_r.exe_5791]
+RelativePath=JIT\SIMD\VectorMatrix_r\VectorMatrix_r.exe
+WorkingDir=JIT\SIMD\VectorMatrix_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMatrix_ro.exe_5792]
+RelativePath=JIT\SIMD\VectorMatrix_ro\VectorMatrix_ro.exe
+WorkingDir=JIT\SIMD\VectorMatrix_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMax_r.exe_5793]
+RelativePath=JIT\SIMD\VectorMax_r\VectorMax_r.exe
+WorkingDir=JIT\SIMD\VectorMax_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMax_ro.exe_5794]
+RelativePath=JIT\SIMD\VectorMax_ro\VectorMax_ro.exe
+WorkingDir=JIT\SIMD\VectorMax_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMin_r.exe_5795]
+RelativePath=JIT\SIMD\VectorMin_r\VectorMin_r.exe
+WorkingDir=JIT\SIMD\VectorMin_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMin_ro.exe_5796]
+RelativePath=JIT\SIMD\VectorMin_ro\VectorMin_ro.exe
+WorkingDir=JIT\SIMD\VectorMin_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMul_r.exe_5797]
+RelativePath=JIT\SIMD\VectorMul_r\VectorMul_r.exe
+WorkingDir=JIT\SIMD\VectorMul_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorMul_ro.exe_5798]
+RelativePath=JIT\SIMD\VectorMul_ro\VectorMul_ro.exe
+WorkingDir=JIT\SIMD\VectorMul_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorRelOp_r.exe_5799]
+RelativePath=JIT\SIMD\VectorRelOp_r\VectorRelOp_r.exe
+WorkingDir=JIT\SIMD\VectorRelOp_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorRelOp_ro.exe_5800]
+RelativePath=JIT\SIMD\VectorRelOp_ro\VectorRelOp_ro.exe
+WorkingDir=JIT\SIMD\VectorRelOp_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorReturn_r.exe_5801]
+RelativePath=JIT\SIMD\VectorReturn_r\VectorReturn_r.exe
+WorkingDir=JIT\SIMD\VectorReturn_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorReturn_ro.exe_5802]
+RelativePath=JIT\SIMD\VectorReturn_ro\VectorReturn_ro.exe
+WorkingDir=JIT\SIMD\VectorReturn_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSet_r.exe_5803]
+RelativePath=JIT\SIMD\VectorSet_r\VectorSet_r.exe
+WorkingDir=JIT\SIMD\VectorSet_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSet_ro.exe_5804]
+RelativePath=JIT\SIMD\VectorSet_ro\VectorSet_ro.exe
+WorkingDir=JIT\SIMD\VectorSet_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSqrt_r.exe_5805]
+RelativePath=JIT\SIMD\VectorSqrt_r\VectorSqrt_r.exe
+WorkingDir=JIT\SIMD\VectorSqrt_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSqrt_ro.exe_5806]
+RelativePath=JIT\SIMD\VectorSqrt_ro\VectorSqrt_ro.exe
+WorkingDir=JIT\SIMD\VectorSqrt_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSub_r.exe_5807]
+RelativePath=JIT\SIMD\VectorSub_r\VectorSub_r.exe
+WorkingDir=JIT\SIMD\VectorSub_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorSub_ro.exe_5808]
+RelativePath=JIT\SIMD\VectorSub_ro\VectorSub_ro.exe
+WorkingDir=JIT\SIMD\VectorSub_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorUnused_r.exe_5809]
+RelativePath=JIT\SIMD\VectorUnused_r\VectorUnused_r.exe
+WorkingDir=JIT\SIMD\VectorUnused_r
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[VectorUnused_ro.exe_5810]
+RelativePath=JIT\SIMD\VectorUnused_ro\VectorUnused_ro.exe
+WorkingDir=JIT\SIMD\VectorUnused_ro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[FromNativePaths.exe_5811]
+RelativePath=Loader\NativeLibs\FromNativePaths\FromNativePaths.exe
+WorkingDir=Loader\NativeLibs\FromNativePaths
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[main.exe_5812]
+RelativePath=Loader\regressions\classloader\main\main.exe
+WorkingDir=Loader\regressions\classloader\main
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[vsw307137.exe_5813]
+RelativePath=Loader\regressions\classloader\vsw307137\vsw307137.exe
+WorkingDir=Loader\regressions\classloader\vsw307137
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Polyrec.exe_5814]
+RelativePath=Loader\regressions\polyrec\Polyrec\Polyrec.exe
+WorkingDir=Loader\regressions\polyrec\Polyrec
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Compilation.exe_5815]
+RelativePath=managed\Compilation\Compilation\Compilation.exe
+WorkingDir=managed\Compilation\Compilation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test.exe_5816]
+RelativePath=Regressions\assemblyref\test\test.exe
+WorkingDir=Regressions\assemblyref\test
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[AboveStackLimit.exe_5817]
+RelativePath=Regressions\common\AboveStackLimit\AboveStackLimit.exe
+WorkingDir=Regressions\common\AboveStackLimit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ArrayCopy.exe_5818]
+RelativePath=Regressions\common\ArrayCopy\ArrayCopy.exe
+WorkingDir=Regressions\common\ArrayCopy
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[avtest.exe_5819]
+RelativePath=Regressions\common\avtest\avtest.exe
+WorkingDir=Regressions\common\avtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[CompEx.exe_5820]
+RelativePath=Regressions\common\CompEx\CompEx.exe
+WorkingDir=Regressions\common\CompEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[date.exe_5821]
+RelativePath=Regressions\common\date\date.exe
+WorkingDir=Regressions\common\date
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[DisableTransparencyEnforcement.exe_5822]
+RelativePath=Regressions\common\DisableTransparencyEnforcement\DisableTransparencyEnforcement.exe
+WorkingDir=Regressions\common\DisableTransparencyEnforcement
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[interlock.exe_5823]
+RelativePath=Regressions\common\interlock\interlock.exe
+WorkingDir=Regressions\common\interlock
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Marshal.exe_5824]
+RelativePath=Regressions\common\Marshal\Marshal.exe
+WorkingDir=Regressions\common\Marshal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[pow3.exe_5825]
+RelativePath=Regressions\common\pow3\pow3.exe
+WorkingDir=Regressions\common\pow3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[test1307.exe_5826]
+RelativePath=Regressions\common\test1307\test1307.exe
+WorkingDir=Regressions\common\test1307
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[testClass.exe_5827]
+RelativePath=Regressions\common\testClass\testClass.exe
+WorkingDir=Regressions\common\testClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[testInterface.exe_5828]
+RelativePath=Regressions\common\testInterface\testInterface.exe
+WorkingDir=Regressions\common\testInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadCulture.exe_5829]
+RelativePath=Regressions\common\ThreadCulture\ThreadCulture.exe
+WorkingDir=Regressions\common\ThreadCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ToLower.exe_5830]
+RelativePath=Regressions\common\ToLower\ToLower.exe
+WorkingDir=Regressions\common\ToLower
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[Unsafe.exe_5831]
+RelativePath=Regressions\common\Unsafe\Unsafe.exe
+WorkingDir=Regressions\common\Unsafe
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[avtest.exe_5832]
+RelativePath=Regressions\coreclr\0014\avtest\avtest.exe
+WorkingDir=Regressions\coreclr\0014\avtest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[expl_double.exe_5833]
+RelativePath=Regressions\expl_double\expl_double\expl_double.exe
+WorkingDir=Regressions\expl_double\expl_double
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadStatic01.exe_5834]
+RelativePath=Threading\ThreadStatics\ThreadStatic01\ThreadStatic01.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadStatic02.exe_5835]
+RelativePath=Threading\ThreadStatics\ThreadStatic02\ThreadStatic02.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadStatic03.exe_5836]
+RelativePath=Threading\ThreadStatics\ThreadStatic03\ThreadStatic03.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadStatic05.exe_5837]
+RelativePath=Threading\ThreadStatics\ThreadStatic05\ThreadStatic05.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+[ThreadStatic06.exe_5838]
+RelativePath=Threading\ThreadStatics\ThreadStatic06\ThreadStatic06.exe
+WorkingDir=Threading\ThreadStatics\ThreadStatic06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri0
+HostStyle=Any
+
+[Dev10_535767.exe_5838]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767\Dev10_535767.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\Dev10_535767
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[test448035.exe_5839]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\test448035\test448035.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\test448035
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TestAPIs.exe_5840]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestAPIs\TestAPIs.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestAPIs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TestGC.exe_5841]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestGC\TestGC.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestGC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TestOverrides.exe_5842]
+RelativePath=baseservices\compilerservices\dynamicobjectproperties\TestOverrides\TestOverrides.exe
+WorkingDir=baseservices\compilerservices\dynamicobjectproperties\TestOverrides
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions01.exe_5843]
+RelativePath=baseservices\exceptions\generics\GenericExceptions01\GenericExceptions01.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions02.exe_5844]
+RelativePath=baseservices\exceptions\generics\GenericExceptions02\GenericExceptions02.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions03.exe_5845]
+RelativePath=baseservices\exceptions\generics\GenericExceptions03\GenericExceptions03.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions04.exe_5846]
+RelativePath=baseservices\exceptions\generics\GenericExceptions04\GenericExceptions04.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions05.exe_5847]
+RelativePath=baseservices\exceptions\generics\GenericExceptions05\GenericExceptions05.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions06.exe_5848]
+RelativePath=baseservices\exceptions\generics\GenericExceptions06\GenericExceptions06.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions07.exe_5849]
+RelativePath=baseservices\exceptions\generics\GenericExceptions07\GenericExceptions07.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericExceptions08.exe_5850]
+RelativePath=baseservices\exceptions\generics\GenericExceptions08\GenericExceptions08.exe
+WorkingDir=baseservices\exceptions\generics\GenericExceptions08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch01.exe_5851]
+RelativePath=baseservices\exceptions\generics\nested-try-catch01\nested-try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch02.exe_5852]
+RelativePath=baseservices\exceptions\generics\nested-try-catch02\nested-try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch03.exe_5853]
+RelativePath=baseservices\exceptions\generics\nested-try-catch03\nested-try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch04.exe_5854]
+RelativePath=baseservices\exceptions\generics\nested-try-catch04\nested-try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch05.exe_5855]
+RelativePath=baseservices\exceptions\generics\nested-try-catch05\nested-try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch06.exe_5856]
+RelativePath=baseservices\exceptions\generics\nested-try-catch06\nested-try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch07.exe_5857]
+RelativePath=baseservices\exceptions\generics\nested-try-catch07\nested-try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch08.exe_5858]
+RelativePath=baseservices\exceptions\generics\nested-try-catch08\nested-try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch09.exe_5859]
+RelativePath=baseservices\exceptions\generics\nested-try-catch09\nested-try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nested-try-catch10.exe_5860]
+RelativePath=baseservices\exceptions\generics\nested-try-catch10\nested-try-catch10.exe
+WorkingDir=baseservices\exceptions\generics\nested-try-catch10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally-struct01.exe_5861]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct01\try-catch-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally-struct02.exe_5862]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct02\try-catch-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally-struct03.exe_5863]
+RelativePath=baseservices\exceptions\generics\try-catch-finally-struct03\try-catch-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally01.exe_5864]
+RelativePath=baseservices\exceptions\generics\try-catch-finally01\try-catch-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally02.exe_5865]
+RelativePath=baseservices\exceptions\generics\try-catch-finally02\try-catch-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-finally03.exe_5866]
+RelativePath=baseservices\exceptions\generics\try-catch-finally03\try-catch-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-finally03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct01.exe_5867]
+RelativePath=baseservices\exceptions\generics\try-catch-struct01\try-catch-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct02.exe_5868]
+RelativePath=baseservices\exceptions\generics\try-catch-struct02\try-catch-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct03.exe_5869]
+RelativePath=baseservices\exceptions\generics\try-catch-struct03\try-catch-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct04.exe_5870]
+RelativePath=baseservices\exceptions\generics\try-catch-struct04\try-catch-struct04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct05.exe_5871]
+RelativePath=baseservices\exceptions\generics\try-catch-struct05\try-catch-struct05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct06.exe_5872]
+RelativePath=baseservices\exceptions\generics\try-catch-struct06\try-catch-struct06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct07.exe_5873]
+RelativePath=baseservices\exceptions\generics\try-catch-struct07\try-catch-struct07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct08.exe_5874]
+RelativePath=baseservices\exceptions\generics\try-catch-struct08\try-catch-struct08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch-struct09.exe_5875]
+RelativePath=baseservices\exceptions\generics\try-catch-struct09\try-catch-struct09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch-struct09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch01.exe_5876]
+RelativePath=baseservices\exceptions\generics\try-catch01\try-catch01.exe
+WorkingDir=baseservices\exceptions\generics\try-catch01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch02.exe_5877]
+RelativePath=baseservices\exceptions\generics\try-catch02\try-catch02.exe
+WorkingDir=baseservices\exceptions\generics\try-catch02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch03.exe_5878]
+RelativePath=baseservices\exceptions\generics\try-catch03\try-catch03.exe
+WorkingDir=baseservices\exceptions\generics\try-catch03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch04.exe_5879]
+RelativePath=baseservices\exceptions\generics\try-catch04\try-catch04.exe
+WorkingDir=baseservices\exceptions\generics\try-catch04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch05.exe_5880]
+RelativePath=baseservices\exceptions\generics\try-catch05\try-catch05.exe
+WorkingDir=baseservices\exceptions\generics\try-catch05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch06.exe_5881]
+RelativePath=baseservices\exceptions\generics\try-catch06\try-catch06.exe
+WorkingDir=baseservices\exceptions\generics\try-catch06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch07.exe_5882]
+RelativePath=baseservices\exceptions\generics\try-catch07\try-catch07.exe
+WorkingDir=baseservices\exceptions\generics\try-catch07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch08.exe_5883]
+RelativePath=baseservices\exceptions\generics\try-catch08\try-catch08.exe
+WorkingDir=baseservices\exceptions\generics\try-catch08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-catch09.exe_5884]
+RelativePath=baseservices\exceptions\generics\try-catch09\try-catch09.exe
+WorkingDir=baseservices\exceptions\generics\try-catch09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally-struct01.exe_5885]
+RelativePath=baseservices\exceptions\generics\try-finally-struct01\try-finally-struct01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally-struct02.exe_5886]
+RelativePath=baseservices\exceptions\generics\try-finally-struct02\try-finally-struct02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally-struct03.exe_5887]
+RelativePath=baseservices\exceptions\generics\try-finally-struct03\try-finally-struct03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally-struct03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally01.exe_5888]
+RelativePath=baseservices\exceptions\generics\try-finally01\try-finally01.exe
+WorkingDir=baseservices\exceptions\generics\try-finally01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally02.exe_5889]
+RelativePath=baseservices\exceptions\generics\try-finally02\try-finally02.exe
+WorkingDir=baseservices\exceptions\generics\try-finally02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[try-finally03.exe_5890]
+RelativePath=baseservices\exceptions\generics\try-finally03\try-finally03.exe
+WorkingDir=baseservices\exceptions\generics\try-finally03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter001.exe_5891]
+RelativePath=baseservices\exceptions\generics\TypeParameter001\TypeParameter001.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter001
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter002.exe_5892]
+RelativePath=baseservices\exceptions\generics\TypeParameter002\TypeParameter002.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter002
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter003.exe_5893]
+RelativePath=baseservices\exceptions\generics\TypeParameter003\TypeParameter003.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter003
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter004.exe_5894]
+RelativePath=baseservices\exceptions\generics\TypeParameter004\TypeParameter004.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter004
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter005.exe_5895]
+RelativePath=baseservices\exceptions\generics\TypeParameter005\TypeParameter005.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter005
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter006.exe_5896]
+RelativePath=baseservices\exceptions\generics\TypeParameter006\TypeParameter006.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter006
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter007.exe_5897]
+RelativePath=baseservices\exceptions\generics\TypeParameter007\TypeParameter007.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter007
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter008.exe_5898]
+RelativePath=baseservices\exceptions\generics\TypeParameter008\TypeParameter008.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter008
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter009.exe_5899]
+RelativePath=baseservices\exceptions\generics\TypeParameter009\TypeParameter009.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter009
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter010.exe_5900]
+RelativePath=baseservices\exceptions\generics\TypeParameter010\TypeParameter010.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter010
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter011.exe_5901]
+RelativePath=baseservices\exceptions\generics\TypeParameter011\TypeParameter011.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter012.exe_5902]
+RelativePath=baseservices\exceptions\generics\TypeParameter012\TypeParameter012.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter012
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter013.exe_5903]
+RelativePath=baseservices\exceptions\generics\TypeParameter013\TypeParameter013.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter013
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter014.exe_5904]
+RelativePath=baseservices\exceptions\generics\TypeParameter014\TypeParameter014.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter014
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter015.exe_5905]
+RelativePath=baseservices\exceptions\generics\TypeParameter015\TypeParameter015.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter015
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter016.exe_5906]
+RelativePath=baseservices\exceptions\generics\TypeParameter016\TypeParameter016.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter016
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter017.exe_5907]
+RelativePath=baseservices\exceptions\generics\TypeParameter017\TypeParameter017.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter017
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeParameter018.exe_5908]
+RelativePath=baseservices\exceptions\generics\TypeParameter018\TypeParameter018.exe
+WorkingDir=baseservices\exceptions\generics\TypeParameter018
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[349379.exe_5909]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\349379\349379\349379.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\349379\349379
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[366085.exe_5910]
+RelativePath=baseservices\exceptions\regressions\whidbeybeta2\366085\366085\366085.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeybeta2\366085\366085
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[106011.exe_5911]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\106011\106011\106011.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\106011\106011
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[302680.exe_5912]
+RelativePath=baseservices\exceptions\regressions\whidbeym3.3\302680\302680\302680.exe
+WorkingDir=baseservices\exceptions\regressions\whidbeym3.3\302680\302680
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OOMException01.exe_5913]
+RelativePath=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01\OOMException01.exe
+WorkingDir=baseservices\exceptions\sharedexceptions\emptystacktrace\OOMException01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BaseClass.exe_5914]
+RelativePath=baseservices\exceptions\unittests\BaseClass\BaseClass.exe
+WorkingDir=baseservices\exceptions\unittests\BaseClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InnerFinally.exe_5915]
+RelativePath=baseservices\exceptions\unittests\InnerFinally\InnerFinally.exe
+WorkingDir=baseservices\exceptions\unittests\InnerFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RethrowAndFinally.exe_5916]
+RelativePath=baseservices\exceptions\unittests\RethrowAndFinally\RethrowAndFinally.exe
+WorkingDir=baseservices\exceptions\unittests\RethrowAndFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ReturnFromCatch.exe_5917]
+RelativePath=baseservices\exceptions\unittests\ReturnFromCatch\ReturnFromCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ReturnFromCatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThrowInCatch.exe_5918]
+RelativePath=baseservices\exceptions\unittests\ThrowInCatch\ThrowInCatch.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInCatch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThrowInFinally.exe_5919]
+RelativePath=baseservices\exceptions\unittests\ThrowInFinally\ThrowInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\ThrowInFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryCatchInFinally.exe_5920]
+RelativePath=baseservices\exceptions\unittests\TryCatchInFinally\TryCatchInFinally.exe
+WorkingDir=baseservices\exceptions\unittests\TryCatchInFinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_ThreadPoolNullChecks.exe_5921]
+RelativePath=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks\CS_ThreadPoolNullChecks.exe
+WorkingDir=baseservices\regression\v1\threads\functional\threadpool\cs_threadpoolnullchecks\CS_ThreadPoolNullChecks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DefaultStackCommit.exe_5922]
+RelativePath=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit\DefaultStackCommit.exe
+WorkingDir=baseservices\threading\commitstackonlyasneeded\DefaultStackCommit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_ARENullRefEx.exe_5923]
+RelativePath=baseservices\threading\coverage\Nullref\CS_ARENullRefEx\CS_ARENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_ARENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_MRENullRefEx.exe_5924]
+RelativePath=baseservices\threading\coverage\Nullref\CS_MRENullRefEx\CS_MRENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_MRENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_MutexNullRefEx.exe_5925]
+RelativePath=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx\CS_MutexNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_MutexNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_RWHNullRefEx.exe_5926]
+RelativePath=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx\CS_RWHNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_RWHNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_SLENullRefEx.exe_5927]
+RelativePath=baseservices\threading\coverage\Nullref\CS_SLENullRefEx\CS_SLENullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_SLENullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_TimerNullRefEx.exe_5928]
+RelativePath=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx\CS_TimerNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_TimerNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_TSNullRefEx.exe_5929]
+RelativePath=baseservices\threading\coverage\Nullref\CS_TSNullRefEx\CS_TSNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_TSNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CS_WHNullRefEx.exe_5930]
+RelativePath=baseservices\threading\coverage\Nullref\CS_WHNullRefEx\CS_WHNullRefEx.exe
+WorkingDir=baseservices\threading\coverage\Nullref\CS_WHNullRefEx
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureChangeSecurity.exe_5931]
+RelativePath=baseservices\threading\currentculture\CultureChangeSecurity\CultureChangeSecurity.exe
+WorkingDir=baseservices\threading\currentculture\CultureChangeSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructFalse.exe_5932]
+RelativePath=baseservices\threading\events\AutoResetEvent\ConstructFalse\ConstructFalse.exe
+WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructTrue.exe_5933]
+RelativePath=baseservices\threading\events\AutoResetEvent\ConstructTrue\ConstructTrue.exe
+WorkingDir=baseservices\threading\events\AutoResetEvent\ConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetCast1.exe_5934]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1\AutoResetCast1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetCast2.exe_5935]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2\AutoResetCast2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCast2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetCtor1.exe_5936]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1\AutoResetCtor1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetCtor2.exe_5937]
+RelativePath=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2\AutoResetCtor2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\AutoReset\AutoResetCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualResetCast1.exe_5938]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1\ManualResetCast1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualResetCast2.exe_5939]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2\ManualResetCast2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCast2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualResetCtor1.exe_5940]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1\ManualResetCtor1.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualResetCtor2.exe_5941]
+RelativePath=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2\ManualResetCtor2.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\ManualReset\ManualResetCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoConstructFalse.exe_5942]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse\AutoConstructFalse.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoConstructTrue.exe_5943]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue\AutoConstructTrue.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\AutoConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualConstructFalse.exe_5944]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse\ManualConstructFalse.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualConstructTrue.exe_5945]
+RelativePath=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue\ManualConstructTrue.exe
+WorkingDir=baseservices\threading\events\EventWaitHandle\unit\ManualConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructFalse.exe_5946]
+RelativePath=baseservices\threading\events\ManualResetEvent\ConstructFalse\ConstructFalse.exe
+WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructFalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructTrue.exe_5947]
+RelativePath=baseservices\threading\events\ManualResetEvent\ConstructTrue\ConstructTrue.exe
+WorkingDir=baseservices\threading\events\ManualResetEvent\ConstructTrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit01.exe_5948]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit01\EnterExit01.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit02.exe_5949]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit02\EnterExit02.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit03.exe_5950]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit03\EnterExit03.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit04.exe_5951]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit04\EnterExit04.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit05.exe_5952]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit05\EnterExit05.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit06.exe_5953]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit06\EnterExit06.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit07.exe_5954]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit07\EnterExit07.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit08.exe_5955]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit08\EnterExit08.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit09.exe_5956]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit09\EnterExit09.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit10.exe_5957]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit10\EnterExit10.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit11.exe_5958]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit11\EnterExit11.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit12.exe_5959]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit12\EnterExit12.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit13.exe_5960]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit13\EnterExit13.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExit14.exe_5961]
+RelativePath=baseservices\threading\generics\Monitor\EnterExit14\EnterExit14.exe
+WorkingDir=baseservices\threading\generics\Monitor\EnterExit14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnter01.exe_5962]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter01\TryEnter01.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnter03.exe_5963]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter03\TryEnter03.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnter04.exe_5964]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter04\TryEnter04.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnter05.exe_5965]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter05\TryEnter05.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnter06.exe_5966]
+RelativePath=baseservices\threading\generics\Monitor\TryEnter06\TryEnter06.exe
+WorkingDir=baseservices\threading\generics\Monitor\TryEnter06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread01.exe_5967]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread02.exe_5968]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread03.exe_5969]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread04.exe_5970]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread05.exe_5971]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread06.exe_5972]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread07.exe_5973]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread08.exe_5974]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread09.exe_5975]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread10.exe_5976]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread11.exe_5977]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread12.exe_5978]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread13.exe_5979]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread14.exe_5980]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread15.exe_5981]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread16.exe_5982]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread17.exe_5983]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread18.exe_5984]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread19.exe_5985]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread20.exe_5986]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread21.exe_5987]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread22.exe_5988]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread23.exe_5989]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread24.exe_5990]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread25.exe_5991]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread26.exe_5992]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread27.exe_5993]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread28.exe_5994]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread29.exe_5995]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread30.exe_5996]
+RelativePath=baseservices\threading\generics\syncdelegate\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\syncdelegate\GThread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread01.exe_5997]
+RelativePath=baseservices\threading\generics\threadstart\GThread01\GThread01.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread02.exe_5998]
+RelativePath=baseservices\threading\generics\threadstart\GThread02\GThread02.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread03.exe_5999]
+RelativePath=baseservices\threading\generics\threadstart\GThread03\GThread03.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread04.exe_6000]
+RelativePath=baseservices\threading\generics\threadstart\GThread04\GThread04.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread05.exe_6001]
+RelativePath=baseservices\threading\generics\threadstart\GThread05\GThread05.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread06.exe_6002]
+RelativePath=baseservices\threading\generics\threadstart\GThread06\GThread06.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread07.exe_6003]
+RelativePath=baseservices\threading\generics\threadstart\GThread07\GThread07.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread08.exe_6004]
+RelativePath=baseservices\threading\generics\threadstart\GThread08\GThread08.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread09.exe_6005]
+RelativePath=baseservices\threading\generics\threadstart\GThread09\GThread09.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread10.exe_6006]
+RelativePath=baseservices\threading\generics\threadstart\GThread10\GThread10.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread11.exe_6007]
+RelativePath=baseservices\threading\generics\threadstart\GThread11\GThread11.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread12.exe_6008]
+RelativePath=baseservices\threading\generics\threadstart\GThread12\GThread12.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread13.exe_6009]
+RelativePath=baseservices\threading\generics\threadstart\GThread13\GThread13.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread14.exe_6010]
+RelativePath=baseservices\threading\generics\threadstart\GThread14\GThread14.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread15.exe_6011]
+RelativePath=baseservices\threading\generics\threadstart\GThread15\GThread15.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread16.exe_6012]
+RelativePath=baseservices\threading\generics\threadstart\GThread16\GThread16.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread17.exe_6013]
+RelativePath=baseservices\threading\generics\threadstart\GThread17\GThread17.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread18.exe_6014]
+RelativePath=baseservices\threading\generics\threadstart\GThread18\GThread18.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread19.exe_6015]
+RelativePath=baseservices\threading\generics\threadstart\GThread19\GThread19.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread20.exe_6016]
+RelativePath=baseservices\threading\generics\threadstart\GThread20\GThread20.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread21.exe_6017]
+RelativePath=baseservices\threading\generics\threadstart\GThread21\GThread21.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread22.exe_6018]
+RelativePath=baseservices\threading\generics\threadstart\GThread22\GThread22.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread23.exe_6019]
+RelativePath=baseservices\threading\generics\threadstart\GThread23\GThread23.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread24.exe_6020]
+RelativePath=baseservices\threading\generics\threadstart\GThread24\GThread24.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread25.exe_6021]
+RelativePath=baseservices\threading\generics\threadstart\GThread25\GThread25.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread26.exe_6022]
+RelativePath=baseservices\threading\generics\threadstart\GThread26\GThread26.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread27.exe_6023]
+RelativePath=baseservices\threading\generics\threadstart\GThread27\GThread27.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread28.exe_6024]
+RelativePath=baseservices\threading\generics\threadstart\GThread28\GThread28.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread29.exe_6025]
+RelativePath=baseservices\threading\generics\threadstart\GThread29\GThread29.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GThread30.exe_6026]
+RelativePath=baseservices\threading\generics\threadstart\GThread30\GThread30.exe
+WorkingDir=baseservices\threading\generics\threadstart\GThread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread01.exe_6027]
+RelativePath=baseservices\threading\generics\TimerCallback\thread01\thread01.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread02.exe_6028]
+RelativePath=baseservices\threading\generics\TimerCallback\thread02\thread02.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread03.exe_6029]
+RelativePath=baseservices\threading\generics\TimerCallback\thread03\thread03.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread04.exe_6030]
+RelativePath=baseservices\threading\generics\TimerCallback\thread04\thread04.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread05.exe_6031]
+RelativePath=baseservices\threading\generics\TimerCallback\thread05\thread05.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread06.exe_6032]
+RelativePath=baseservices\threading\generics\TimerCallback\thread06\thread06.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread07.exe_6033]
+RelativePath=baseservices\threading\generics\TimerCallback\thread07\thread07.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread08.exe_6034]
+RelativePath=baseservices\threading\generics\TimerCallback\thread08\thread08.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread09.exe_6035]
+RelativePath=baseservices\threading\generics\TimerCallback\thread09\thread09.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread10.exe_6036]
+RelativePath=baseservices\threading\generics\TimerCallback\thread10\thread10.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread11.exe_6037]
+RelativePath=baseservices\threading\generics\TimerCallback\thread11\thread11.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread12.exe_6038]
+RelativePath=baseservices\threading\generics\TimerCallback\thread12\thread12.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread13.exe_6039]
+RelativePath=baseservices\threading\generics\TimerCallback\thread13\thread13.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread14.exe_6040]
+RelativePath=baseservices\threading\generics\TimerCallback\thread14\thread14.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread15.exe_6041]
+RelativePath=baseservices\threading\generics\TimerCallback\thread15\thread15.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread16.exe_6042]
+RelativePath=baseservices\threading\generics\TimerCallback\thread16\thread16.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread17.exe_6043]
+RelativePath=baseservices\threading\generics\TimerCallback\thread17\thread17.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread18.exe_6044]
+RelativePath=baseservices\threading\generics\TimerCallback\thread18\thread18.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread19.exe_6045]
+RelativePath=baseservices\threading\generics\TimerCallback\thread19\thread19.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread20.exe_6046]
+RelativePath=baseservices\threading\generics\TimerCallback\thread20\thread20.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread21.exe_6047]
+RelativePath=baseservices\threading\generics\TimerCallback\thread21\thread21.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread22.exe_6048]
+RelativePath=baseservices\threading\generics\TimerCallback\thread22\thread22.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread23.exe_6049]
+RelativePath=baseservices\threading\generics\TimerCallback\thread23\thread23.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread24.exe_6050]
+RelativePath=baseservices\threading\generics\TimerCallback\thread24\thread24.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread25.exe_6051]
+RelativePath=baseservices\threading\generics\TimerCallback\thread25\thread25.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread26.exe_6052]
+RelativePath=baseservices\threading\generics\TimerCallback\thread26\thread26.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread27.exe_6053]
+RelativePath=baseservices\threading\generics\TimerCallback\thread27\thread27.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread28.exe_6054]
+RelativePath=baseservices\threading\generics\TimerCallback\thread28\thread28.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread29.exe_6055]
+RelativePath=baseservices\threading\generics\TimerCallback\thread29\thread29.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread30.exe_6056]
+RelativePath=baseservices\threading\generics\TimerCallback\thread30\thread30.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\thread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[tighttimercallback.exe_6057]
+RelativePath=baseservices\threading\generics\TimerCallback\tighttimercallback\tighttimercallback.exe
+WorkingDir=baseservices\threading\generics\TimerCallback\tighttimercallback
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread01.exe_6058]
+RelativePath=baseservices\threading\generics\WaitCallback\thread01\thread01.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread01
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread02.exe_6059]
+RelativePath=baseservices\threading\generics\WaitCallback\thread02\thread02.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread02
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread03.exe_6060]
+RelativePath=baseservices\threading\generics\WaitCallback\thread03\thread03.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread03
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread04.exe_6061]
+RelativePath=baseservices\threading\generics\WaitCallback\thread04\thread04.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread04
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread05.exe_6062]
+RelativePath=baseservices\threading\generics\WaitCallback\thread05\thread05.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread05
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread06.exe_6063]
+RelativePath=baseservices\threading\generics\WaitCallback\thread06\thread06.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread06
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread07.exe_6064]
+RelativePath=baseservices\threading\generics\WaitCallback\thread07\thread07.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread07
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread08.exe_6065]
+RelativePath=baseservices\threading\generics\WaitCallback\thread08\thread08.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread08
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread09.exe_6066]
+RelativePath=baseservices\threading\generics\WaitCallback\thread09\thread09.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread09
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread10.exe_6067]
+RelativePath=baseservices\threading\generics\WaitCallback\thread10\thread10.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread11.exe_6068]
+RelativePath=baseservices\threading\generics\WaitCallback\thread11\thread11.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread12.exe_6069]
+RelativePath=baseservices\threading\generics\WaitCallback\thread12\thread12.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread13.exe_6070]
+RelativePath=baseservices\threading\generics\WaitCallback\thread13\thread13.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread14.exe_6071]
+RelativePath=baseservices\threading\generics\WaitCallback\thread14\thread14.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread15.exe_6072]
+RelativePath=baseservices\threading\generics\WaitCallback\thread15\thread15.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread16.exe_6073]
+RelativePath=baseservices\threading\generics\WaitCallback\thread16\thread16.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread17.exe_6074]
+RelativePath=baseservices\threading\generics\WaitCallback\thread17\thread17.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread18.exe_6075]
+RelativePath=baseservices\threading\generics\WaitCallback\thread18\thread18.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread19.exe_6076]
+RelativePath=baseservices\threading\generics\WaitCallback\thread19\thread19.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread20.exe_6077]
+RelativePath=baseservices\threading\generics\WaitCallback\thread20\thread20.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread21.exe_6078]
+RelativePath=baseservices\threading\generics\WaitCallback\thread21\thread21.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread22.exe_6079]
+RelativePath=baseservices\threading\generics\WaitCallback\thread22\thread22.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread23.exe_6080]
+RelativePath=baseservices\threading\generics\WaitCallback\thread23\thread23.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread24.exe_6081]
+RelativePath=baseservices\threading\generics\WaitCallback\thread24\thread24.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread25.exe_6082]
+RelativePath=baseservices\threading\generics\WaitCallback\thread25\thread25.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread26.exe_6083]
+RelativePath=baseservices\threading\generics\WaitCallback\thread26\thread26.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread26
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread27.exe_6084]
+RelativePath=baseservices\threading\generics\WaitCallback\thread27\thread27.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread27
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread28.exe_6085]
+RelativePath=baseservices\threading\generics\WaitCallback\thread28\thread28.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread29.exe_6086]
+RelativePath=baseservices\threading\generics\WaitCallback\thread29\thread29.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread30.exe_6087]
+RelativePath=baseservices\threading\generics\WaitCallback\thread30\thread30.exe
+WorkingDir=baseservices\threading\generics\WaitCallback\thread30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedAddLongWithSubtract.exe_6088]
+RelativePath=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract\InterlockedAddLongWithSubtract.exe
+WorkingDir=baseservices\threading\interlocked\add\InterlockedAddLongWithSubtract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareExchangeTString.exe_6089]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeTString\CompareExchangeTString.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeTString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExchangeInt.exe_6090]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeInt\ExchangeInt.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeInt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExchangeLong.exe_6091]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeLong\ExchangeLong.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeLong
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExchangeTClass.exe_6092]
+RelativePath=baseservices\threading\interlocked\exchange\ExchangeTClass\ExchangeTClass.exe
+WorkingDir=baseservices\threading\interlocked\exchange\ExchangeTClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterNull.exe_6093]
+RelativePath=baseservices\threading\monitor\enter\EnterNull\EnterNull.exe
+WorkingDir=baseservices\threading\monitor\enter\EnterNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExitNull.exe_6094]
+RelativePath=baseservices\threading\monitor\exit\ExitNull\ExitNull.exe
+WorkingDir=baseservices\threading\monitor\exit\ExitNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PulseNull.exe_6095]
+RelativePath=baseservices\threading\monitor\pulse\PulseNull\PulseNull.exe
+WorkingDir=baseservices\threading\monitor\pulse\PulseNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PulseAllNull.exe_6096]
+RelativePath=baseservices\threading\monitor\pulseall\PulseAllNull\PulseAllNull.exe
+WorkingDir=baseservices\threading\monitor\pulseall\PulseAllNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnterExitExit.exe_6097]
+RelativePath=baseservices\threading\monitor\unownedlock\EnterExitExit\EnterExitExit.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\EnterExitExit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NoEnterNewObject.exe_6098]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterNewObject\NoEnterNewObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterNewObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NoEnterObject.exe_6099]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterObject\NoEnterObject.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NoEnterValType.exe_6100]
+RelativePath=baseservices\threading\monitor\unownedlock\NoEnterValType\NoEnterValType.exe
+WorkingDir=baseservices\threading\monitor\unownedlock\NoEnterValType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThreadStartNeg1.exe_6101]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg1\ThreadStartNeg1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThreadStartNeg3.exe_6102]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg3\ThreadStartNeg3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThreadStartNeg4.exe_6103]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNeg4\ThreadStartNeg4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNeg4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThreadStartNull.exe_6104]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull\ThreadStartNull.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ThreadStartNull2.exe_6105]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartNull2\ThreadStartNull2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartNull2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleReleaseWriteDDBug71632.exe_6106]
+RelativePath=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632\SingleReleaseWriteDDBug71632.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\SingleReleaseWriteDDBug71632
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TryEnterFailureDDBugs124485.exe_6107]
+RelativePath=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485\TryEnterFailureDDBugs124485.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\TryEnterFailureDDBugs124485
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Upgrader.exe_6108]
+RelativePath=baseservices\threading\readerwriterlockslim\Upgrader\Upgrader.exe
+WorkingDir=baseservices\threading\readerwriterlockslim\Upgrader
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[576463.exe_6109]
+RelativePath=baseservices\threading\regressions\576463\576463\576463.exe
+WorkingDir=baseservices\threading\regressions\576463\576463
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[6906.exe_6110]
+RelativePath=baseservices\threading\regressions\6906\6906\6906.exe
+WorkingDir=baseservices\threading\regressions\6906\6906
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co9600Ctor.exe_6111]
+RelativePath=CoreMangLib\components\stopwatch\Co9600Ctor\Co9600Ctor.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9600Ctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co9604get_IsRunning.exe_6112]
+RelativePath=CoreMangLib\components\stopwatch\Co9604get_IsRunning\Co9604get_IsRunning.exe
+WorkingDir=CoreMangLib\components\stopwatch\Co9604get_IsRunning
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ActionCtor.exe_6113]
+RelativePath=CoreMangLib\cti\system\action\ActionCtor\ActionCtor.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ActionInvoke.exe_6114]
+RelativePath=CoreMangLib\cti\system\action\ActionInvoke\ActionInvoke.exe
+WorkingDir=CoreMangLib\cti\system\action\ActionInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ActivatorCreateInstance2.exe_6115]
+RelativePath=CoreMangLib\cti\system\activator\ActivatorCreateInstance2\ActivatorCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\activator\ActivatorCreateInstance2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArgumentExceptionCtor1.exe_6116]
+RelativePath=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1\ArgumentExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentexception\ArgumentExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArgumentNullExceptionCtor1.exe_6117]
+RelativePath=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1\ArgumentNullExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\argumentnullexception\ArgumentNullExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArgumentOutOfRangeExceptionCtor.exe_6118]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor\ArgumentOutOfRangeExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArgumentOutOfRangeExceptionMessage.exe_6119]
+RelativePath=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage\ArgumentOutOfRangeExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\argumentoutofrangeexception\ArgumentOutOfRangeExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArithmeticExceptionCtor1.exe_6120]
+RelativePath=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1\ArithmeticExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\arithmeticexception\ArithmeticExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch1.exe_6121]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1\ArrayBinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch1b.exe_6122]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch1b\ArrayBinarySearch1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch2.exe_6123]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2\ArrayBinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch2b.exe_6124]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch2b\ArrayBinarySearch2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch3.exe_6125]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3\ArrayBinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch3b.exe_6126]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch3b\ArrayBinarySearch3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch4.exe_6127]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4\ArrayBinarySearch4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch4b.exe_6128]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch4b\ArrayBinarySearch4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch4b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch5.exe_6129]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5\ArrayBinarySearch5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch5b.exe_6130]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch5b\ArrayBinarySearch5b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch5b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayBinarySearch6.exe_6131]
+RelativePath=CoreMangLib\cti\system\array\ArrayBinarySearch6\ArrayBinarySearch6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayBinarySearch6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayClear.exe_6132]
+RelativePath=CoreMangLib\cti\system\array\ArrayClear\ArrayClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayClone.exe_6133]
+RelativePath=CoreMangLib\cti\system\array\ArrayClone\ArrayClone.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCopy1.exe_6134]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy1\ArrayCopy1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCopy2.exe_6135]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopy2\ArrayCopy2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopy2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCopyTo.exe_6136]
+RelativePath=CoreMangLib\cti\system\array\ArrayCopyTo\ArrayCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCreateInstance1.exe_6137]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1\ArrayCreateInstance1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCreateInstance1b.exe_6138]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance1b\ArrayCreateInstance1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCreateInstance2.exe_6139]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2\ArrayCreateInstance2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayCreateInstance2b.exe_6140]
+RelativePath=CoreMangLib\cti\system\array\ArrayCreateInstance2b\ArrayCreateInstance2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayCreateInstance2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetEnumerator.exe_6141]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetEnumerator\ArrayGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetLength.exe_6142]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLength\ArrayGetLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetLowerBound.exe_6143]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetLowerBound\ArrayGetLowerBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetLowerBound
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetUpperBound.exe_6144]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetUpperBound\ArrayGetUpperBound.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetUpperBound
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetValue.exe_6145]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue\ArrayGetValue.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetValue1.exe_6146]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue1\ArrayGetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetValue2.exe_6147]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2\ArrayGetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayGetValue2b.exe_6148]
+RelativePath=CoreMangLib\cti\system\array\ArrayGetValue2b\ArrayGetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayGetValue2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayICollectionget_Count.exe_6149]
+RelativePath=CoreMangLib\cti\system\array\ArrayICollectionget_Count\ArrayICollectionget_Count.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayICollectionget_Count
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListAdd.exe_6150]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListAdd\ArrayIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListClear.exe_6151]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListClear\ArrayIListClear.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListContains.exe_6152]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListContains\ArrayIListContains.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListget_item.exe_6153]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListget_item\ArrayIListget_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListget_item
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListIndexOF.exe_6154]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListIndexOF\ArrayIListIndexOF.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListIndexOF
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListInsert.exe_6155]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListInsert\ArrayIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListRemove.exe_6156]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemove\ArrayIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListRemoveAt.exe_6157]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListRemoveAt\ArrayIListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIListset_item.exe_6158]
+RelativePath=CoreMangLib\cti\system\array\ArrayIListset_item\ArrayIListset_item.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIListset_item
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf1.exe_6159]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1\ArrayIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf1b.exe_6160]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf1b\ArrayIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf2.exe_6161]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2\ArrayIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf2b.exe_6162]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf2b\ArrayIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf3.exe_6163]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3\ArrayIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf3b.exe_6164]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf3b\ArrayIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf4.exe_6165]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4\ArrayIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayIndexOf4b.exe_6166]
+RelativePath=CoreMangLib\cti\system\array\ArrayIndexOf4b\ArrayIndexOf4b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayIndexOf4b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayInitialize.exe_6167]
+RelativePath=CoreMangLib\cti\system\array\ArrayInitialize\ArrayInitialize.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayInitialize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf1.exe_6168]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1\ArrayLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf1b.exe_6169]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf1b\ArrayLastIndexOf1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf2.exe_6170]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2\ArrayLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf2b.exe_6171]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf2b\ArrayLastIndexOf2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf3.exe_6172]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3\ArrayLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf3b.exe_6173]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf3b\ArrayLastIndexOf3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLastIndexOf4.exe_6174]
+RelativePath=CoreMangLib\cti\system\array\ArrayLastIndexOf4\ArrayLastIndexOf4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLastIndexOf4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayLength.exe_6175]
+RelativePath=CoreMangLib\cti\system\array\ArrayLength\ArrayLength.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayRank.exe_6176]
+RelativePath=CoreMangLib\cti\system\array\ArrayRank\ArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayRank
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayReserse1.exe_6177]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse1\ArrayReserse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayReserse2.exe_6178]
+RelativePath=CoreMangLib\cti\system\array\ArrayReserse2\ArrayReserse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReserse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayReverse1.exe_6179]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse1\ArrayReverse1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayReverse2.exe_6180]
+RelativePath=CoreMangLib\cti\system\array\ArrayReverse2\ArrayReverse2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArrayReverse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySetValue1.exe_6181]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1\ArraySetValue1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySetValue1b.exe_6182]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue1b\ArraySetValue1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySetValue2.exe_6183]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2\ArraySetValue2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySetValue2b.exe_6184]
+RelativePath=CoreMangLib\cti\system\array\ArraySetValue2b\ArraySetValue2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySetValue2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort1.exe_6185]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1\ArraySort1.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort10.exe_6186]
+RelativePath=CoreMangLib\cti\system\array\ArraySort10\ArraySort10.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort11.exe_6187]
+RelativePath=CoreMangLib\cti\system\array\ArraySort11\ArraySort11.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort12.exe_6188]
+RelativePath=CoreMangLib\cti\system\array\ArraySort12\ArraySort12.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort13.exe_6189]
+RelativePath=CoreMangLib\cti\system\array\ArraySort13\ArraySort13.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort14.exe_6190]
+RelativePath=CoreMangLib\cti\system\array\ArraySort14\ArraySort14.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort1b.exe_6191]
+RelativePath=CoreMangLib\cti\system\array\ArraySort1b\ArraySort1b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort2.exe_6192]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2\ArraySort2.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort2b.exe_6193]
+RelativePath=CoreMangLib\cti\system\array\ArraySort2b\ArraySort2b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort2b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort3.exe_6194]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3\ArraySort3.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort3b.exe_6195]
+RelativePath=CoreMangLib\cti\system\array\ArraySort3b\ArraySort3b.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort3b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort4.exe_6196]
+RelativePath=CoreMangLib\cti\system\array\ArraySort4\ArraySort4.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort5.exe_6197]
+RelativePath=CoreMangLib\cti\system\array\ArraySort5\ArraySort5.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort6.exe_6198]
+RelativePath=CoreMangLib\cti\system\array\ArraySort6\ArraySort6.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort7.exe_6199]
+RelativePath=CoreMangLib\cti\system\array\ArraySort7\ArraySort7.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort8.exe_6200]
+RelativePath=CoreMangLib\cti\system\array\ArraySort8\ArraySort8.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArraySort9.exe_6201]
+RelativePath=CoreMangLib\cti\system\array\ArraySort9\ArraySort9.exe
+WorkingDir=CoreMangLib\cti\system\array\ArraySort9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor1.exe_6202]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1\ArrayTypeMismatchExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor2.exe_6203]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2\ArrayTypeMismatchExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ArrayTypeMismatchExceptionctor3.exe_6204]
+RelativePath=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3\ArrayTypeMismatchExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\arraytypemismatchexception\ArrayTypeMismatchExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DDB125472_GetHashCode.exe_6205]
+RelativePath=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode\DDB125472_GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\DDB125472_GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GetHashCode.exe_6206]
+RelativePath=CoreMangLib\cti\system\attribute\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\attribute\GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsAll.exe_6207]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll\AttributeTargetsAll.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAll
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsAssembly.exe_6208]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly\AttributeTargetsAssembly.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsClass.exe_6209]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass\AttributeTargetsClass.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsConstructor.exe_6210]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor\AttributeTargetsConstructor.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsConstructor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsDelegate.exe_6211]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate\AttributeTargetsDelegate.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsDelegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsEnum.exe_6212]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum\AttributeTargetsEnum.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsEvent.exe_6213]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent\AttributeTargetsEvent.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsEvent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsField.exe_6214]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsField\AttributeTargetsField.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsGenericParameter.exe_6215]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter\AttributeTargetsGenericParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsGenericParameter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsInterface.exe_6216]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface\AttributeTargetsInterface.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsMethod.exe_6217]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod\AttributeTargetsMethod.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsModule.exe_6218]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule\AttributeTargetsModule.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsModule
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsParameter.exe_6219]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter\AttributeTargetsParameter.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsParameter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsProperty.exe_6220]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty\AttributeTargetsProperty.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsProperty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsReturnValue.exe_6221]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue\AttributeTargetsReturnValue.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsReturnValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeTargetsStruct.exe_6222]
+RelativePath=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct\AttributeTargetsStruct.exe
+WorkingDir=CoreMangLib\cti\system\attributetargets\AttributeTargetsStruct
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeUsageAttributeAllowMultiple.exe_6223]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple\AttributeUsageAttributeAllowMultiple.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeAllowMultiple
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeUsageAttributeCtor.exe_6224]
+RelativePath=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor\AttributeUsageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\attributeusageattribute\AttributeUsageAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BadImageFormatExceptionCtor1.exe_6225]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1\BadImageFormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BadImageFormatExceptionCtor2.exe_6226]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2\BadImageFormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BadImageFormatExceptionCtor3.exe_6227]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3\BadImageFormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BadImageFormatExceptionMessage.exe_6228]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage\BadImageFormatExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BadImageFormatExceptionToString.exe_6229]
+RelativePath=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString\BadImageFormatExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\badimageformatexception\BadImageFormatExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanCompareTo_Boolean.exe_6230]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean\BooleanCompareTo_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanCompareTo_Boolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanEquals_Boolean.exe_6231]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean\BooleanEquals_Boolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Boolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanEquals_Object.exe_6232]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanEquals_Object\BooleanEquals_Object.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanEquals_Object
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanFalseString.exe_6233]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanFalseString\BooleanFalseString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanFalseString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanGetHashCode.exe_6234]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanGetHashCode\BooleanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToBoolean.exe_6235]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean\BooleanIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToByte.exe_6236]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte\BooleanIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToChar.exe_6237]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar\BooleanIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToDateTime.exe_6238]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime\BooleanIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToDecimal.exe_6239]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal\BooleanIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToDouble.exe_6240]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble\BooleanIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToInt16.exe_6241]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16\BooleanIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToInt32.exe_6242]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32\BooleanIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToInt64.exe_6243]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64\BooleanIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToSByte.exe_6244]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte\BooleanIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToSingle.exe_6245]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle\BooleanIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToType.exe_6246]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType\BooleanIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToUInt16.exe_6247]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16\BooleanIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToUInt32.exe_6248]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32\BooleanIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanIConvertibleToUInt64.exe_6249]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64\BooleanIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanParse.exe_6250]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanParse\BooleanParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanToString.exe_6251]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanToString\BooleanToString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanTrueString.exe_6252]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTrueString\BooleanTrueString.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTrueString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BooleanTryParse.exe_6253]
+RelativePath=CoreMangLib\cti\system\boolean\BooleanTryParse\BooleanTryParse.exe
+WorkingDir=CoreMangLib\cti\system\boolean\BooleanTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteEquals1.exe_6254]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals1\ByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteEquals2.exe_6255]
+RelativePath=CoreMangLib\cti\system\byte\ByteEquals2\ByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteGetHashCode.exe_6256]
+RelativePath=CoreMangLib\cti\system\byte\ByteGetHashCode\ByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToBoolean.exe_6257]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean\ByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToByte.exe_6258]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToByte\ByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToChar.exe_6259]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToChar\ByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToDateTime.exe_6260]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime\ByteIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToDecimal.exe_6261]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal\ByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToDouble.exe_6262]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble\ByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToInt16.exe_6263]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16\ByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToInt32.exe_6264]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32\ByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToInt64.exe_6265]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64\ByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToSByte.exe_6266]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte\ByteIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToSingle.exe_6267]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle\ByteIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToType.exe_6268]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToType\ByteIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToUInt16.exe_6269]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16\ByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToUInt32.exe_6270]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32\ByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteIConvertibleToUInt64.exe_6271]
+RelativePath=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64\ByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteMaxValue.exe_6272]
+RelativePath=CoreMangLib\cti\system\byte\ByteMaxValue\ByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteMinValue.exe_6273]
+RelativePath=CoreMangLib\cti\system\byte\ByteMinValue\ByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteParse1.exe_6274]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse1\ByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteParse3.exe_6275]
+RelativePath=CoreMangLib\cti\system\byte\ByteParse3\ByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteToString2.exe_6276]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString2\ByteToString2.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteToString3.exe_6277]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString3\ByteToString3.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteToString4.exe_6278]
+RelativePath=CoreMangLib\cti\system\byte\ByteToString4\ByteToString4.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ByteTryParse.exe_6279]
+RelativePath=CoreMangLib\cti\system\byte\ByteTryParse\ByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\byte\ByteTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharCompateTo1.exe_6280]
+RelativePath=CoreMangLib\cti\system\char\CharCompateTo1\CharCompateTo1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharCompateTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEquals1.exe_6281]
+RelativePath=CoreMangLib\cti\system\char\CharEquals1\CharEquals1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEquals2.exe_6282]
+RelativePath=CoreMangLib\cti\system\char\CharEquals2\CharEquals2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharGetHashCode.exe_6283]
+RelativePath=CoreMangLib\cti\system\char\CharGetHashCode\CharGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\char\CharGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToBoolean.exe_6284]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToBoolean\CharIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToByte.exe_6285]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToByte\CharIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToChar.exe_6286]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToChar\CharIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToDateTime.exe_6287]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDateTime\CharIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToDecimal.exe_6288]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDecimal\CharIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToDouble.exe_6289]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToDouble\CharIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToInt16.exe_6290]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt16\CharIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToInt32.exe_6291]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt32\CharIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToInt64.exe_6292]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToInt64\CharIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToSByte.exe_6293]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSByte\CharIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToSingle.exe_6294]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToSingle\CharIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToType.exe_6295]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToType\CharIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToUInt16.exe_6296]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt16\CharIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToUInt32.exe_6297]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt32\CharIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIConvertibleToUInt64.exe_6298]
+RelativePath=CoreMangLib\cti\system\char\CharIConvertibleToUInt64\CharIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsControl1.exe_6299]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl1\CharIsControl1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsControl2.exe_6300]
+RelativePath=CoreMangLib\cti\system\char\CharIsControl2\CharIsControl2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsControl2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsDigit1.exe_6301]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit1\CharIsDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsDigit2.exe_6302]
+RelativePath=CoreMangLib\cti\system\char\CharIsDigit2\CharIsDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsDigit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLetter1.exe_6303]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter1\CharIsLetter1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLetter2.exe_6304]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetter2\CharIsLetter2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetter2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLetterOrDigit1.exe_6305]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit1\CharIsLetterOrDigit1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLetterOrDigit2.exe_6306]
+RelativePath=CoreMangLib\cti\system\char\CharIsLetterOrDigit2\CharIsLetterOrDigit2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLetterOrDigit2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLower1.exe_6307]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower1\CharIsLower1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsLower2.exe_6308]
+RelativePath=CoreMangLib\cti\system\char\CharIsLower2\CharIsLower2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsLower2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsNumber1.exe_6309]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber1\CharIsNumber1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsNumber2.exe_6310]
+RelativePath=CoreMangLib\cti\system\char\CharIsNumber2\CharIsNumber2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsNumber2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsPunctuation2.exe_6311]
+RelativePath=CoreMangLib\cti\system\char\CharIsPunctuation2\CharIsPunctuation2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsPunctuation2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSeparator1.exe_6312]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator1\CharIsSeparator1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSeparator2.exe_6313]
+RelativePath=CoreMangLib\cti\system\char\CharIsSeparator2\CharIsSeparator2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSeparator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSurrogate1.exe_6314]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate1\CharIsSurrogate1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSurrogate2.exe_6315]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogate2\CharIsSurrogate2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogate2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSurrogatePair1.exe_6316]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair1\CharIsSurrogatePair1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSurrogatePair2.exe_6317]
+RelativePath=CoreMangLib\cti\system\char\CharIsSurrogatePair2\CharIsSurrogatePair2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSurrogatePair2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsSymbol1.exe_6318]
+RelativePath=CoreMangLib\cti\system\char\CharIsSymbol1\CharIsSymbol1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsSymbol1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsUpper1.exe_6319]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper1\CharIsUpper1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsUpper2.exe_6320]
+RelativePath=CoreMangLib\cti\system\char\CharIsUpper2\CharIsUpper2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsUpper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsWhiteSpace1.exe_6321]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace1\CharIsWhiteSpace1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharIsWhiteSpace2.exe_6322]
+RelativePath=CoreMangLib\cti\system\char\CharIsWhiteSpace2\CharIsWhiteSpace2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharIsWhiteSpace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharMaxValue.exe_6323]
+RelativePath=CoreMangLib\cti\system\char\CharMaxValue\CharMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharMinValue.exe_6324]
+RelativePath=CoreMangLib\cti\system\char\CharMinValue\CharMinValue.exe
+WorkingDir=CoreMangLib\cti\system\char\CharMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharToString1.exe_6325]
+RelativePath=CoreMangLib\cti\system\char\CharToString1\CharToString1.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharToString2.exe_6326]
+RelativePath=CoreMangLib\cti\system\char\CharToString2\CharToString2.exe
+WorkingDir=CoreMangLib\cti\system\char\CharToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharTryParse.exe_6327]
+RelativePath=CoreMangLib\cti\system\char\CharTryParse\CharTryParse.exe
+WorkingDir=CoreMangLib\cti\system\char\CharTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEnumeratorCurrent.exe_6328]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent\CharEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEnumeratorIEnumeratorCurrent.exe_6329]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent\CharEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEnumeratorIEnumgetCurrent.exe_6330]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent\CharEnumeratorIEnumgetCurrent.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorIEnumgetCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEnumeratorMoveNext.exe_6331]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext\CharEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharEnumeratorReset.exe_6332]
+RelativePath=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset\CharEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\charenumerator\CharEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CLSCompliantAttributeCtor.exe_6333]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor\CLSCompliantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CLSCompliantAttributeIsCompliant.exe_6334]
+RelativePath=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant\CLSCompliantAttributeIsCompliant.exe
+WorkingDir=CoreMangLib\cti\system\clscompliantattribute\CLSCompliantAttributeIsCompliant
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEntryCtor.exe_6335]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor\DictionaryEntryCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEntryKey.exe_6336]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey\DictionaryEntryKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEntryValue.exe_6337]
+RelativePath=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue\DictionaryEntryValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\dictionaryentry\DictionaryEntryValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparerCompare1.exe_6338]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1\ComparerCompare1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparerCompare2.exe_6339]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2\ComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparerCtor.exe_6340]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor\ComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparerDefault.exe_6341]
+RelativePath=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault\ComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\comparer\ComparerDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryAdd.exe_6342]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd\DictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryClear.exe_6343]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear\DictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryComparer.exe_6344]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer\DictionaryComparer.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryComparer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryContainsKey.exe_6345]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey\DictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryContainsValue.exe_6346]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue\DictionaryContainsValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryContainsValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCount.exe_6347]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount\DictionaryCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor1.exe_6348]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1\DictionaryCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor2.exe_6349]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2\DictionaryCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor3.exe_6350]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3\DictionaryCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor4.exe_6351]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4\DictionaryCtor4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor5.exe_6352]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5\DictionaryCtor5.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryCtor6.exe_6353]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6\DictionaryCtor6.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryGetEnumerator.exe_6354]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator\DictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionAdd.exe_6355]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd\DictionaryICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionContains.exe_6356]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains\DictionaryICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionCopyTo.exe_6357]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo\DictionaryICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionCopyTo2.exe_6358]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2\DictionaryICollectionCopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionCopyTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionIsReadOnly.exe_6359]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly\DictionaryICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionIsReadOnly2.exe_6360]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2\DictionaryICollectionIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsReadOnly2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionIsSynchronized.exe_6361]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized\DictionaryICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionIsSynchronized2.exe_6362]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2\DictionaryICollectionIsSynchronized2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionIsSynchronized2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionRemove.exe_6363]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove\DictionaryICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionSyncRoot.exe_6364]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot\DictionaryICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryICollectionSyncRoot2.exe_6365]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2\DictionaryICollectionSyncRoot2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryICollectionSyncRoot2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryAdd.exe_6366]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd\DictionaryIDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryContains.exe_6367]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains\DictionaryIDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryGetEnumerator.exe_6368]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator\DictionaryIDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryIsFixedSize.exe_6369]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize\DictionaryIDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryIsFixedSize2.exe_6370]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2\DictionaryIDictionaryIsFixedSize2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsFixedSize2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryIsReadOnly.exe_6371]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly\DictionaryIDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryIsReadOnly2.exe_6372]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2\DictionaryIDictionaryIsReadOnly2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryIsReadOnly2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryItem.exe_6373]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem\DictionaryIDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryItem2.exe_6374]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2\DictionaryIDictionaryItem2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryItem2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryKeys.exe_6375]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys\DictionaryIDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryKeys2.exe_6376]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2\DictionaryIDictionaryKeys2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryKeys3.exe_6377]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3\DictionaryIDictionaryKeys3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryKeys4.exe_6378]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4\DictionaryIDictionaryKeys4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryKeys4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryRemove.exe_6379]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove\DictionaryIDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryValue2.exe_6380]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2\DictionaryIDictionaryValue2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryValue3.exe_6381]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3\DictionaryIDictionaryValue3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryValue4.exe_6382]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4\DictionaryIDictionaryValue4.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValue4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIDictionaryValues.exe_6383]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues\DictionaryIDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIDictionaryValues
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIEnumerableGetEnumerator.exe_6384]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator\DictionaryIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryIEnumerableGetEnumerator2.exe_6385]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2\DictionaryIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryIEnumerableGetEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryRemove.exe_6386]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove\DictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryTryGetValue.exe_6387]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue\DictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionary\DictionaryTryGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictEnumIDictEnumget_Entry.exe_6388]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry\DictEnumIDictEnumget_Entry.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Entry
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictEnumIDictEnumget_Key.exe_6389]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key\DictEnumIDictEnumget_Key.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Key
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictEnumIDictEnumget_Value.exe_6390]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value\DictEnumIDictEnumget_Value.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIDictEnumget_Value
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictEnumIEnumget_Current.exe_6391]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current\DictEnumIEnumget_Current.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumget_Current
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictEnumIEnumReset.exe_6392]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset\DictEnumIEnumReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictEnumIEnumReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEnumeratorCurrent.exe_6393]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent\DictionaryEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEnumeratorDispose.exe_6394]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose\DictionaryEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryEnumeratorMoveNext.exe_6395]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext\DictionaryEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryenumerator\DictionaryEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericICollectionRemove.exe_6396]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\GenericICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6397]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionSyncRoot.exe_6398]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\ICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6399]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionCopyTo.exe_6400]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo\KeyCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionCount.exe_6401]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount\KeyCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionCtor.exe_6402]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor\KeyCollectionCtor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionGetEnumerator.exe_6403]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator\KeyCollectionGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\KeyCollectionGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollectionsICollectionCopyTo.exe_6404]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollectionsICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollGenericICollClear.exe_6405]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear\SystemCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollGenericICollContains.exe_6406]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains\SystemCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollGenericICollectionAdd.exe_6407]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd\SystemCollGenericICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenericICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollGenICollIsReadOnly.exe_6408]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly\SystemCollGenICollIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenICollIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollGenIEnumGetEnumerator.exe_6409]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator\SystemCollGenIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionarykeycollection\SystemCollGenIEnumGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionCopyTo.exe_6410]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo\DictionaryValueCollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionCount.exe_6411]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount\DictionaryValueCollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionctor.exe_6412]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor\DictionaryValueCollectionctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\DictionaryValueCollectionctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericICollectionIsReadOnly.exe_6413]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly\GenericICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GenericICollectionRemove.exe_6414]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove\GenericICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GenericICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GetEnumerator.exe_6415]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator\GetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\GetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6416]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6417]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollectionsICollectionCopyTo.exe_6418]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo\SystemCollectionsICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollectionsICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SystemCollICollectionSyncRoot.exe_6419]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot\SystemCollICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\SystemCollICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollGenericICollAdd.exe_6420]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd\ValueCollGenericICollAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollGenericICollClear.exe_6421]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear\ValueCollGenericICollClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollGenericICollContains.exe_6422]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains\ValueCollGenericICollContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericICollContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollGenericIEnumGetEnumerator.exe_6423]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator\ValueCollGenericIEnumGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictionaryvaluecollection\ValueCollGenericIEnumGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorCurrent.exe_6424]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent\DictionaryKeyCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorDispose.exe_6425]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose\DictionaryKeyCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryKeyCollectionEnumeratorMoveNext.exe_6426]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext\DictionaryKeyCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryKeyCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorCurrent.exe_6427]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorDispose.exe_6428]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorMoveNext.exe_6429]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\DictionaryValueCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionEnumeratorIEnumeratorCurrent.exe_6430]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent\KeyCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyCollectionEnumeratorIEnumeratorReset.exe_6431]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset\KeyCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\KeyCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorCurrent.exe_6432]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorReset.exe_6433]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictkeycollenum\ValueCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorCurrent.exe_6434]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent\DictionaryValueCollectionEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorDispose.exe_6435]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose\DictionaryValueCollectionEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DictionaryValueCollectionEnumeratorMoveNext.exe_6436]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext\DictionaryValueCollectionEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\DictionaryValueCollectionEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorCurrent.exe_6437]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent\ValueCollectionEnumeratorIEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueCollectionEnumeratorIEnumeratorReset.exe_6438]
+RelativePath=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset\ValueCollectionEnumeratorIEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\dictvalcollenum\ValueCollectionEnumeratorIEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EqualityComparerEquals.exe_6439]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals\EqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EqualityComparerGetHashCode.exe_6440]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode\EqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqualityComparerGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EqulityComparerDefault.exe_6441]
+RelativePath=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault\EqulityComparerDefault.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\equalitycomparer\EqulityComparerDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionAdd.exe_6442]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd\ICollectionAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionClear.exe_6443]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear\ICollectionClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionContains.exe_6444]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains\ICollectionContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionCopyTo.exe_6445]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionCount.exe_6446]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionIsReadOnly.exe_6447]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly\ICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionRemove.exe_6448]
+RelativePath=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove\ICollectionRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\icollection\ICollectionRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryContainsKey.exe_6449]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey\IDictionaryContainsKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryContainsKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryItem.exe_6450]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem\IDictionaryItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryKeys.exe_6451]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys\IDictionaryKeys.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryKeys
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryTryGetValue.exe_6452]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue\IDictionaryTryGetValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryTryGetValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryValues.exe_6453]
+RelativePath=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues\IDictionaryValues.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\idictionary\IDictionaryValues
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumerableGetEnumerator.exe_6454]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator\IEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerable\IEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumeratorCurrent.exe_6455]
+RelativePath=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ienumerator\IEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEqualityComparerEquals.exe_6456]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals\IEqualityComparerEquals.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEqualityComparerGetHashCode.exe_6457]
+RelativePath=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode\IEqualityComparerGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\iequalitycomparer\IEqualityComparerGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListIndexOf.exe_6458]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf\IListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListIndexOf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListInsert.exe_6459]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListInsert\IListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListItem.exe_6460]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListRemoveAt.exe_6461]
+RelativePath=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt\IListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\ilist\IListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyNotFoundExceptionCtor1.exe_6462]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1\KeyNotFoundExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyNotFoundExceptionCtor2.exe_6463]
+RelativePath=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2\KeyNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keynotfoundexception\KeyNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyValuePairctor.exe_6464]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor\KeyValuePairctor.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyValuePairKey.exe_6465]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey\KeyValuePairKey.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyValuePairToString.exe_6466]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString\KeyValuePairToString.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[KeyValuePairValue.exe_6467]
+RelativePath=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue\KeyValuePairValue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\keyvaluepair\KeyValuePairValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BinarySearch1.exe_6468]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch1\BinarySearch1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BinarySearch2.exe_6469]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch2\BinarySearch2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BinarySearch3.exe_6470]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\BinarySearch3\BinarySearch3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\BinarySearch3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CopyTo1.exe_6471]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo1\CopyTo1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CopyTo2.exe_6472]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo2\CopyTo2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CopyTo3.exe_6473]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\CopyTo3\CopyTo3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\CopyTo3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListAdd.exe_6474]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAdd\ListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListAddRange.exe_6475]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListAddRange\ListAddRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListAddRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListCapacity.exe_6476]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCapacity\ListCapacity.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCapacity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListClear.exe_6477]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListClear\ListClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListContains.exe_6478]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListContains\ListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListCount.exe_6479]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCount\ListCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListCtor1.exe_6480]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor1\ListCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListCtor2.exe_6481]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor2\ListCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListCtor3.exe_6482]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListCtor3\ListCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListForEach.exe_6483]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListForEach\ListForEach.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListForEach
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListGetEnumerator.exe_6484]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator\ListGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListGetRange.exe_6485]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListGetRange\ListGetRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListGetRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListICollectionCopyTo.exe_6486]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo\ListICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListICollectionIsReadOnly.exe_6487]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly\ListICollectionIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListICollectionIsSynchronized.exe_6488]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized\ListICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListICollectionSyncRoot.exe_6489]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot\ListICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIEnumerableGetEnumerator.exe_6490]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator\ListIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIEnumerableGetEnumerator2.exe_6491]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2\ListIEnumerableGetEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIEnumerableGetEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListAdd.exe_6492]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListAdd\ListIListAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListContains.exe_6493]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListContains\ListIListContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListIndexOf.exe_6494]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf\ListIListIndexOf.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIndexOf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListInsert.exe_6495]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListInsert\ListIListInsert.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListIsFixedSize.exe_6496]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize\ListIListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListIsReadOnly.exe_6497]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly\ListIListIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListItem.exe_6498]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListItem\ListIListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIListRemove.exe_6499]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIListRemove\ListIListRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIListRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIndexOf1.exe_6500]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1\ListIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIndexOf2.exe_6501]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2\ListIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListIndexOf3.exe_6502]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3\ListIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListInsertRange.exe_6503]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListInsertRange\ListInsertRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListInsertRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListLastIndexOf1.exe_6504]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1\ListLastIndexOf1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListLastIndexOf2.exe_6505]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2\ListLastIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListLastIndexOf3.exe_6506]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3\ListLastIndexOf3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListLastIndexOf3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListRemoveAt.exe_6507]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt\ListRemoveAt.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveAt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListRemoveRange.exe_6508]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange\ListRemoveRange.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListRemoveRange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListReverse.exe_6509]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse\ListReverse.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListReverse2.exe_6510]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListReverse2\ListReverse2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListReverse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListToArray.exe_6511]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListToArray\ListToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ListTrimExcess.exe_6512]
+RelativePath=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess\ListTrimExcess.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\list\ListTrimExcess
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueClear.exe_6513]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueClear\QueueClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueContains.exe_6514]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueContains\QueueContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueCopyTo.exe_6515]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo\QueueCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueCount.exe_6516]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCount\QueueCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueCtor1.exe_6517]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1\QueueCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueCtor2.exe_6518]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2\QueueCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueCtor3.exe_6519]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3\QueueCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueDequeue.exe_6520]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue\QueueDequeue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueDequeue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueEnqueue.exe_6521]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue\QueueEnqueue.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueEnqueue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueGetEnumerator.exe_6522]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator\QueueGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueuePeek.exe_6523]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueuePeek\QueuePeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueuePeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[QueueToArray.exe_6524]
+RelativePath=CoreMangLib\cti\system\collections\generic\queue\QueueToArray\QueueToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queue\QueueToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumeratorCurrent.exe_6525]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent\EnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumeratorDispose.exe_6526]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose\EnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumeratorMoveNext.exe_6527]
+RelativePath=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext\EnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\queueenumerator\EnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackClear.exe_6528]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackClear\StackClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackContains.exe_6529]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackContains\StackContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackCopyTo.exe_6530]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo\StackCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackCount.exe_6531]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCount\StackCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackCtor1.exe_6532]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor1\StackCtor1.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackCtor2.exe_6533]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor2\StackCtor2.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackCtor3.exe_6534]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackCtor3\StackCtor3.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackGetEnumerator.exe_6535]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator\StackGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackPeek.exe_6536]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPeek\StackPeek.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackPop.exe_6537]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPop\StackPop.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackPush.exe_6538]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackPush\StackPush.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackPush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackToArray.exe_6539]
+RelativePath=CoreMangLib\cti\system\collections\generic\stack\StackToArray\StackToArray.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stack\StackToArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackEnumeratorCurrent.exe_6540]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent\StackEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackEnumeratorDispose.exe_6541]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose\StackEnumeratorDispose.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackEnumeratorMoveNext.exe_6542]
+RelativePath=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext\StackEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\generic\stackenumerator\StackEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionCopyTo.exe_6543]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo\ICollectionCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionCount.exe_6544]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionCount\ICollectionCount.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionIsSynchronized.exe_6545]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized\ICollectionIsSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionIsSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ICollectionSyncRoot.exe_6546]
+RelativePath=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot\ICollectionSyncRoot.exe
+WorkingDir=CoreMangLib\cti\system\collections\icollection\ICollectionSyncRoot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IComparerCompare.exe_6547]
+RelativePath=CoreMangLib\cti\system\collections\icomparer\IComparerCompare\IComparerCompare.exe
+WorkingDir=CoreMangLib\cti\system\collections\icomparer\IComparerCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryAdd.exe_6548]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd\IDictionaryAdd.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryClear.exe_6549]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear\IDictionaryClear.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryClear
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryContains.exe_6550]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains\IDictionaryContains.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryContains
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryGetEnumerator.exe_6551]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator\IDictionaryGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryIsFixedSize.exe_6552]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize\IDictionaryIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryIsReadOnly.exe_6553]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly\IDictionaryIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDictionaryRemove.exe_6554]
+RelativePath=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove\IDictionaryRemove.exe
+WorkingDir=CoreMangLib\cti\system\collections\idictionary\IDictionaryRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumeratorCurrent.exe_6555]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent\IEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumeratorMoveNext.exe_6556]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext\IEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IEnumeratorReset.exe_6557]
+RelativePath=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset\IEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\collections\ienumerator\IEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListIsFixedSize.exe_6558]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize\IListIsFixedSize.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListIsFixedSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IListItem.exe_6559]
+RelativePath=CoreMangLib\cti\system\collections\ilist\IListItem\IListItem.exe
+WorkingDir=CoreMangLib\cti\system\collections\ilist\IListItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparisonBeginInvoke.exe_6560]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke\ComparisonBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparisonEndInvoke.exe_6561]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonEndInvoke\ComparisonEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ComparisonInvoke.exe_6562]
+RelativePath=CoreMangLib\cti\system\comparison\ComparisonInvoke\ComparisonInvoke.exe
+WorkingDir=CoreMangLib\cti\system\comparison\ComparisonInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[consoleseterror_PSC.exe_6563]
+RelativePath=CoreMangLib\cti\system\console\consoleseterror_PSC\consoleseterror_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\consoleseterror_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConsoleSetOut_PSC.exe_6564]
+RelativePath=CoreMangLib\cti\system\console\ConsoleSetOut_PSC\ConsoleSetOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\console\ConsoleSetOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertChangeType2.exe_6565]
+RelativePath=CoreMangLib\cti\system\convert\ConvertChangeType2\ConvertChangeType2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertChangeType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertFromBase64CharArray.exe_6566]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray\ConvertFromBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64CharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertFromBase64String.exe_6567]
+RelativePath=CoreMangLib\cti\system\convert\ConvertFromBase64String\ConvertFromBase64String.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertFromBase64String
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBase64CharArray.exe_6568]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64CharArray\ConvertToBase64CharArray.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64CharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBase64String1.exe_6569]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String1\ConvertToBase64String1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBase64String2.exe_6570]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBase64String2\ConvertToBase64String2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBase64String2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean.exe_6571]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean\ConvertToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean2.exe_6572]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean2\ConvertToBoolean2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean4.exe_6573]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean4\ConvertToBoolean4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean5.exe_6574]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean5\ConvertToBoolean5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean6.exe_6575]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean6\ConvertToBoolean6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean7.exe_6576]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean7\ConvertToBoolean7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToBoolean8.exe_6577]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToBoolean8\ConvertToBoolean8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToBoolean8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte.exe_6578]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte\ConvertToByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte1.exe_6579]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte1\ConvertToByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte2.exe_6580]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte2\ConvertToByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte3.exe_6581]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte3\ConvertToByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte4.exe_6582]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte4\ConvertToByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte6.exe_6583]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte6\ConvertToByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte7.exe_6584]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte7\ConvertToByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToByte8.exe_6585]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToByte8\ConvertToByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToByte8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar.exe_6586]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar\ConvertToChar.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar10.exe_6587]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar10\ConvertToChar10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar11.exe_6588]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar11\ConvertToChar11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar12.exe_6589]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar12\ConvertToChar12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar13.exe_6590]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar13\ConvertToChar13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar14.exe_6591]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar14\ConvertToChar14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar15.exe_6592]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar15\ConvertToChar15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar16.exe_6593]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar16\ConvertToChar16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar5.exe_6594]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar5\ConvertToChar5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar6.exe_6595]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar6\ConvertToChar6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar7.exe_6596]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar7\ConvertToChar7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar8.exe_6597]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar8\ConvertToChar8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToChar9.exe_6598]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToChar9\ConvertToChar9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToChar9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDateTime.exe_6599]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDateTime\ConvertToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal.exe_6600]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal\ConvertToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal1.exe_6601]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal1\ConvertToDecimal1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal10.exe_6602]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal10\ConvertToDecimal10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal11.exe_6603]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal11\ConvertToDecimal11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal12.exe_6604]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal12\ConvertToDecimal12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal13.exe_6605]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal13\ConvertToDecimal13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal14.exe_6606]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal14\ConvertToDecimal14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal15.exe_6607]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal15\ConvertToDecimal15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal16.exe_6608]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal16\ConvertToDecimal16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal17.exe_6609]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal17\ConvertToDecimal17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal18.exe_6610]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal18\ConvertToDecimal18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal2.exe_6611]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal2\ConvertToDecimal2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal5.exe_6612]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal5\ConvertToDecimal5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal6.exe_6613]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal6\ConvertToDecimal6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal8.exe_6614]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal8\ConvertToDecimal8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDecimal9.exe_6615]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDecimal9\ConvertToDecimal9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDecimal9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble.exe_6616]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble\ConvertToDouble.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble10.exe_6617]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble10\ConvertToDouble10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble11.exe_6618]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble11\ConvertToDouble11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble12.exe_6619]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble12\ConvertToDouble12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble13.exe_6620]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble13\ConvertToDouble13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble14.exe_6621]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble14\ConvertToDouble14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble15.exe_6622]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble15\ConvertToDouble15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble16.exe_6623]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble16\ConvertToDouble16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble17.exe_6624]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble17\ConvertToDouble17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble5.exe_6625]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble5\ConvertToDouble5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble6.exe_6626]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble6\ConvertToDouble6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble7.exe_6627]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble7\ConvertToDouble7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble8.exe_6628]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble8\ConvertToDouble8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToDouble9.exe_6629]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToDouble9\ConvertToDouble9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToDouble9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16.exe_6630]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16\ConvertToInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_1.exe_6631]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_1\ConvertToInt16_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_10.exe_6632]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_10\ConvertToInt16_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_11.exe_6633]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_11\ConvertToInt16_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_16.exe_6634]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_16\ConvertToInt16_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_17.exe_6635]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_17\ConvertToInt16_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_18.exe_6636]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_18\ConvertToInt16_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_2.exe_6637]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_2\ConvertToInt16_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_3.exe_6638]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_3\ConvertToInt16_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_4.exe_6639]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_4\ConvertToInt16_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_5.exe_6640]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_5\ConvertToInt16_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_6.exe_6641]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_6\ConvertToInt16_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_7.exe_6642]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_7\ConvertToInt16_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_8.exe_6643]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_8\ConvertToInt16_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt16_9.exe_6644]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt16_9\ConvertToInt16_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt16_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32.exe_6645]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32\ConvertToInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_1.exe_6646]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_1\ConvertToInt32_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_10.exe_6647]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_10\ConvertToInt32_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_11.exe_6648]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_11\ConvertToInt32_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_16.exe_6649]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_16\ConvertToInt32_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_17.exe_6650]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_17\ConvertToInt32_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_18.exe_6651]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_18\ConvertToInt32_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_2.exe_6652]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_2\ConvertToInt32_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_3.exe_6653]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_3\ConvertToInt32_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_4.exe_6654]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_4\ConvertToInt32_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_5.exe_6655]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_5\ConvertToInt32_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_6.exe_6656]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_6\ConvertToInt32_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_7.exe_6657]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_7\ConvertToInt32_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_8.exe_6658]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_8\ConvertToInt32_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt32_9.exe_6659]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt32_9\ConvertToInt32_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt32_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64.exe_6660]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64\ConvertToInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_1.exe_6661]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_1\ConvertToInt64_1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_10.exe_6662]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_10\ConvertToInt64_10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_11.exe_6663]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_11\ConvertToInt64_11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_16.exe_6664]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_16\ConvertToInt64_16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_17.exe_6665]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_17\ConvertToInt64_17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_18.exe_6666]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_18\ConvertToInt64_18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_2.exe_6667]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_2\ConvertToInt64_2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_3.exe_6668]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_3\ConvertToInt64_3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_4.exe_6669]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_4\ConvertToInt64_4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_5.exe_6670]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_5\ConvertToInt64_5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_6.exe_6671]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_6\ConvertToInt64_6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_7.exe_6672]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_7\ConvertToInt64_7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_8.exe_6673]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_8\ConvertToInt64_8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToInt64_9.exe_6674]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToInt64_9\ConvertToInt64_9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToInt64_9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte.exe_6675]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte\ConvertToSByte.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte1.exe_6676]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte1\ConvertToSByte1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte10.exe_6677]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte10\ConvertToSByte10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte11.exe_6678]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte11\ConvertToSByte11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte16.exe_6679]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte16\ConvertToSByte16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte2.exe_6680]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte2\ConvertToSByte2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte3.exe_6681]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte3\ConvertToSByte3.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte4.exe_6682]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte4\ConvertToSByte4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte5.exe_6683]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte5\ConvertToSByte5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte6.exe_6684]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte6\ConvertToSByte6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte7.exe_6685]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte7\ConvertToSByte7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte8.exe_6686]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte8\ConvertToSByte8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSByte9.exe_6687]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSByte9\ConvertToSByte9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSByte9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle.exe_6688]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle\ConvertToSingle.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle13.exe_6689]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle13\ConvertToSingle13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle14.exe_6690]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle14\ConvertToSingle14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle15.exe_6691]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle15\ConvertToSingle15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle16.exe_6692]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle16\ConvertToSingle16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToSingle17.exe_6693]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToSingle17\ConvertToSingle17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToSingle17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString1.exe_6694]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString1\ConvertToString1.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString10.exe_6695]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString10\ConvertToString10.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString11.exe_6696]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString11\ConvertToString11.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString12.exe_6697]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString12\ConvertToString12.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString13.exe_6698]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString13\ConvertToString13.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString14.exe_6699]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString14\ConvertToString14.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString15.exe_6700]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString15\ConvertToString15.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString16.exe_6701]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString16\ConvertToString16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString17.exe_6702]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString17\ConvertToString17.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString18.exe_6703]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString18\ConvertToString18.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString19.exe_6704]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString19\ConvertToString19.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString2.exe_6705]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString2\ConvertToString2.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString20.exe_6706]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString20\ConvertToString20.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString20
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString21.exe_6707]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString21\ConvertToString21.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString21
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString22.exe_6708]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString22\ConvertToString22.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString22
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString23.exe_6709]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString23\ConvertToString23.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString23
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString24.exe_6710]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString24\ConvertToString24.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString24
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString25.exe_6711]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString25\ConvertToString25.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString25
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString28.exe_6712]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString28\ConvertToString28.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString28
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString29.exe_6713]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString29\ConvertToString29.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString29
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString30.exe_6714]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString30\ConvertToString30.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString30
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString31.exe_6715]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString31\ConvertToString31.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString31
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString32.exe_6716]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString32\ConvertToString32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString33.exe_6717]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString33\ConvertToString33.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString33
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString4.exe_6718]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString4\ConvertToString4.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString5.exe_6719]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString5\ConvertToString5.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString6.exe_6720]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString6\ConvertToString6.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString7.exe_6721]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString7\ConvertToString7.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString8.exe_6722]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString8\ConvertToString8.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToString9.exe_6723]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToString9\ConvertToString9.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToString9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt16.exe_6724]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt16\ConvertToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt161.exe_6725]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt161\ConvertToUInt161.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt161
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1610.exe_6726]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1610\ConvertToUInt1610.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1610
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1611.exe_6727]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1611\ConvertToUInt1611.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1611
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1612.exe_6728]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1612\ConvertToUInt1612.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1612
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1613.exe_6729]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1613\ConvertToUInt1613.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1613
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1614.exe_6730]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1614\ConvertToUInt1614.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1614
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1615.exe_6731]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1615\ConvertToUInt1615.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1615
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1616.exe_6732]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1616\ConvertToUInt1616.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1616
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1617.exe_6733]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1617\ConvertToUInt1617.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1617
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt1618.exe_6734]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt1618\ConvertToUInt1618.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt1618
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt162.exe_6735]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt162\ConvertToUInt162.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt162
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt163.exe_6736]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt163\ConvertToUInt163.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt163
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt164.exe_6737]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt164\ConvertToUInt164.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt164
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt165.exe_6738]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt165\ConvertToUInt165.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt165
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt166.exe_6739]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt166\ConvertToUInt166.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt166
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt167.exe_6740]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt167\ConvertToUInt167.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt167
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt168.exe_6741]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt168\ConvertToUInt168.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt168
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt169.exe_6742]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt169\ConvertToUInt169.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt169
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt32.exe_6743]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt32\ConvertToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt321.exe_6744]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt321\ConvertToUInt321.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt321
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3210.exe_6745]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3210\ConvertToUInt3210.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3210
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3211.exe_6746]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3211\ConvertToUInt3211.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3211
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3212.exe_6747]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3212\ConvertToUInt3212.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3212
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3213.exe_6748]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3213\ConvertToUInt3213.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3213
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3215.exe_6749]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3215\ConvertToUInt3215.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3215
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3216.exe_6750]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3216\ConvertToUInt3216.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3216
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3217.exe_6751]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3217\ConvertToUInt3217.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3217
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3218.exe_6752]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3218\ConvertToUInt3218.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3218
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt3219.exe_6753]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt3219\ConvertToUInt3219.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt3219
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt322.exe_6754]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt322\ConvertToUInt322.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt322
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt323.exe_6755]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt323\ConvertToUInt323.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt323
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt324.exe_6756]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt324\ConvertToUInt324.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt324
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt325.exe_6757]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt325\ConvertToUInt325.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt325
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt326.exe_6758]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt326\ConvertToUInt326.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt326
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt327.exe_6759]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt327\ConvertToUInt327.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt327
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt328.exe_6760]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt328\ConvertToUInt328.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt328
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt329.exe_6761]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt329\ConvertToUInt329.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt329
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt64.exe_6762]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt64\ConvertToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt641.exe_6763]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt641\ConvertToUInt641.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt641
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6410.exe_6764]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6410\ConvertToUInt6410.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6410
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6411.exe_6765]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6411\ConvertToUInt6411.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6411
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6412.exe_6766]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6412\ConvertToUInt6412.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6412
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6413.exe_6767]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6413\ConvertToUInt6413.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6413
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6414.exe_6768]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6414\ConvertToUInt6414.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6414
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6415.exe_6769]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6415\ConvertToUInt6415.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6415
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6416.exe_6770]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6416\ConvertToUInt6416.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6416
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6417.exe_6771]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6417\ConvertToUInt6417.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6417
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt6418.exe_6772]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt6418\ConvertToUInt6418.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt6418
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt642.exe_6773]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt642\ConvertToUInt642.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt642
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt643.exe_6774]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt643\ConvertToUInt643.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt643
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt644.exe_6775]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt644\ConvertToUInt644.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt644
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt645.exe_6776]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt645\ConvertToUInt645.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt645
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt646.exe_6777]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt646\ConvertToUInt646.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt646
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt647.exe_6778]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt647\ConvertToUInt647.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt647
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt648.exe_6779]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt648\ConvertToUInt648.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt648
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConvertToUInt649.exe_6780]
+RelativePath=CoreMangLib\cti\system\convert\ConvertToUInt649\ConvertToUInt649.exe
+WorkingDir=CoreMangLib\cti\system\convert\ConvertToUInt649
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCompare.exe_6781]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompare\DateTimeCompare.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCompareTo1.exe_6782]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCompareTo1\DateTimeCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCtor1.exe_6783]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor1\DateTimeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCtor3.exe_6784]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor3\DateTimeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCtor4.exe_6785]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor4\DateTimeCtor4.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCtor6.exe_6786]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor6\DateTimeCtor6.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeCtor7.exe_6787]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeCtor7\DateTimeCtor7.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeDate.exe_6788]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeDate\DateTimeDate.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeDate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeGetHashCode.exe_6789]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeGetHashCode\DateTimeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeHour.exe_6790]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeHour\DateTimeHour.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeHour
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeKind.exe_6791]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeKind\DateTimeKind.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeKind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeMaxValue.exe_6792]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMaxValue\DateTimeMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeMillisecond.exe_6793]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMillisecond\DateTimeMillisecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMillisecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeMinute.exe_6794]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinute\DateTimeMinute.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinute
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeMinValue.exe_6795]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeMinValue\DateTimeMinValue.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeNow.exe_6796]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeNow\DateTimeNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeNow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParse1.exe_6797]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse1\DateTimeParse1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParse2.exe_6798]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse2\DateTimeParse2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParse3.exe_6799]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParse3\DateTimeParse3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParseExact1.exe_6800]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact1\DateTimeParseExact1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParseExact2.exe_6801]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact2\DateTimeParseExact2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeParseExact3.exe_6802]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeParseExact3\DateTimeParseExact3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeParseExact3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeSecond.exe_6803]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSecond\DateTimeSecond.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeSubtract1.exe_6804]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract1\DateTimeSubtract1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeSubtract2.exe_6805]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeSubtract2\DateTimeSubtract2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeSubtract2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeTicks.exe_6806]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTicks\DateTimeTicks.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeTimeOfDay.exe_6807]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay\DateTimeTimeOfDay.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeTimeOfDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimetoday.exe_6808]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimetoday\DateTimetoday.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimetoday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToFileTime.exe_6809]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTime\DateTimeToFileTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToFileTimeUtc.exe_6810]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc\DateTimeToFileTimeUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToFileTimeUtc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToLocalTime.exe_6811]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToLocalTime\DateTimeToLocalTime.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToLocalTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToString1.exe_6812]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString1\DateTimeToString1.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToString2.exe_6813]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString2\DateTimeToString2.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeToString3.exe_6814]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeToString3\DateTimeToString3.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeUtcNow.exe_6815]
+RelativePath=CoreMangLib\cti\system\datetime\DateTimeUtcNow\DateTimeUtcNow.exe
+WorkingDir=CoreMangLib\cti\system\datetime\DateTimeUtcNow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeKindLocal.exe_6816]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal\DateTimeKindLocal.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeKindUnspecified.exe_6817]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified\DateTimeKindUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUnspecified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeKindUtc.exe_6818]
+RelativePath=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc\DateTimeKindUtc.exe
+WorkingDir=CoreMangLib\cti\system\datetimekind\DateTimeKindUtc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekFriday.exe_6819]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday\DayOfWeekFriday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekFriday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekMonday.exe_6820]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday\DayOfWeekMonday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekMonday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekSaturday.exe_6821]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday\DayOfWeekSaturday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSaturday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekSunday.exe_6822]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday\DayOfWeekSunday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekSunday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekThursday.exe_6823]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday\DayOfWeekThursday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekThursday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekTuesDay.exe_6824]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay\DayOfWeekTuesDay.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekTuesDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DayOfWeekWednesday.exe_6825]
+RelativePath=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday\DayOfWeekWednesday.exe
+WorkingDir=CoreMangLib\cti\system\dayofweek\DayOfWeekWednesday
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimaFloor.exe_6826]
+RelativePath=CoreMangLib\cti\system\decimal\DecimaFloor\DecimaFloor.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimaFloor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalAdd.exe_6827]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalAdd\DecimalAdd.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCompare.exe_6828]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCompare\DecimalCompare.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor1.exe_6829]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor1\DecimalCtor1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor2.exe_6830]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor2\DecimalCtor2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor3.exe_6831]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor3\DecimalCtor3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor4.exe_6832]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor4\DecimalCtor4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor5.exe_6833]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor5\DecimalCtor5.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor6.exe_6834]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor6\DecimalCtor6.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor7.exe_6835]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor7\DecimalCtor7.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalCtor8.exe_6836]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalCtor8\DecimalCtor8.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalCtor8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalDivide.exe_6837]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalDivide\DecimalDivide.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalDivide
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalEquals1.exe_6838]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals1\DecimalEquals1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalEquals2.exe_6839]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals2\DecimalEquals2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalEquals3.exe_6840]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalEquals3\DecimalEquals3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalGetBits.exe_6841]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalGetBits\DecimalGetBits.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalGetBits
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalMaxValue.exe_6842]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMaxValue\DecimalMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalMinusOne.exe_6843]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinusOne\DecimalMinusOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinusOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalMinValue.exe_6844]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMinValue\DecimalMinValue.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalMultiply.exe_6845]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalMultiply\DecimalMultiply.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalMultiply
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalNegate.exe_6846]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalNegate\DecimalNegate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalNegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalOne.exe_6847]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalOne\DecimalOne.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalOne
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalParse.exe_6848]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse\DecimalParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalParse2.exe_6849]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse2\DecimalParse2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalParse3.exe_6850]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse3\DecimalParse3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalParse4.exe_6851]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalParse4\DecimalParse4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalParse4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalRemainder.exe_6852]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalRemainder\DecimalRemainder.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalRemainder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalSubtract.exe_6853]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalSubtract\DecimalSubtract.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalSubtract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToBoolean.exe_6854]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToBoolean\DecimalToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToByte.exe_6855]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte\DecimalToByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToByte1.exe_6856]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToByte1\DecimalToByte1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToByte1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToChar.exe_6857]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToChar\DecimalToChar.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToDateTime.exe_6858]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDateTime\DecimalToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToDecimal.exe_6859]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDecimal\DecimalToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToDouble.exe_6860]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToDouble\DecimalToDouble.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToInt16.exe_6861]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt16\DecimalToInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToInt32.exe_6862]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt32\DecimalToInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToInt64.exe_6863]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToInt64\DecimalToInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToSByte.exe_6864]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSByte\DecimalToSByte.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToSingle.exe_6865]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToSingle\DecimalToSingle.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToString1.exe_6866]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString1\DecimalToString1.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToString2.exe_6867]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString2\DecimalToString2.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToString3.exe_6868]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString3\DecimalToString3.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToString4.exe_6869]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToString4\DecimalToString4.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToUInt16.exe_6870]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt16\DecimalToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToUInt32.exe_6871]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt32\DecimalToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalToUInt64.exe_6872]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalToUInt64\DecimalToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalTruncate.exe_6873]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTruncate\DecimalTruncate.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTruncate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalTryParse.exe_6874]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalTryParse\DecimalTryParse.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalZero.exe_6875]
+RelativePath=CoreMangLib\cti\system\decimal\DecimalZero\DecimalZero.exe
+WorkingDir=CoreMangLib\cti\system\decimal\DecimalZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateCombine1.exe_6876]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombine1\DelegateCombine1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombine1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateCombineImpl.exe_6877]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateCombineImpl\DelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateCombineImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateEquals1.exe_6878]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateEquals1\DelegateEquals1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateGetHashCode1.exe_6879]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetHashCode1\DelegateGetHashCode1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetHashCode1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateGetInvocationList1.exe_6880]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1\DelegateGetInvocationList1.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateGetInvocationList1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DelegateRemove.exe_6881]
+RelativePath=CoreMangLib\cti\system\delegate\DelegateRemove\DelegateRemove.exe
+WorkingDir=CoreMangLib\cti\system\delegate\DelegateRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[delegateRemoveImpl.exe_6882]
+RelativePath=CoreMangLib\cti\system\delegate\delegateRemoveImpl\delegateRemoveImpl.exe
+WorkingDir=CoreMangLib\cti\system\delegate\delegateRemoveImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConditionalAttributeConditionString.exe_6883]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString\ConditionalAttributeConditionString.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeConditionString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConditionalAttributeCtor.exe_6884]
+RelativePath=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor\ConditionalAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\conditionalattribute\ConditionalAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DebuggingModesDefault.exe_6885]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault\DebuggingModesDefault.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DebuggingModesDisableOptimizations.exe_6886]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations\DebuggingModesDisableOptimizations.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesDisableOptimizations
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DebuggingModesEnableEditAndContinue.exe_6887]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue\DebuggingModesEnableEditAndContinue.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesEnableEditAndContinue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DebuggingModesIgnoreSymbolStoreSequencePoints.exe_6888]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints\DebuggingModesIgnoreSymbolStoreSequencePoints.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesIgnoreSymbolStoreSequencePoints
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DebuggingModesNone.exe_6889]
+RelativePath=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone\DebuggingModesNone.exe
+WorkingDir=CoreMangLib\cti\system\diagnostics\debuggingmodes\DebuggingModesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DivideByZeroExceptionCtor.exe_6890]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor\DivideByZeroExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DivideByZeroExceptionCtor2.exe_6891]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2\DivideByZeroExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DivideByZeroExceptionCtor3.exe_6892]
+RelativePath=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3\DivideByZeroExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dividebyzeroexception\DivideByZeroExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DllNotFoundException1.exe_6893]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1\DllNotFoundException1.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundException1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DllNotFoundExceptionCtor2.exe_6894]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2\DllNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DllNotFoundExceptionCtor3.exe_6895]
+RelativePath=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3\DllNotFoundExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\dllnotfoundexception\DllNotFoundExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleCompareTo1.exe_6896]
+RelativePath=CoreMangLib\cti\system\double\DoubleCompareTo1\DoubleCompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleCompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleEpsilon.exe_6897]
+RelativePath=CoreMangLib\cti\system\double\DoubleEpsilon\DoubleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEpsilon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleEquals1.exe_6898]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals1\DoubleEquals1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleEquals2.exe_6899]
+RelativePath=CoreMangLib\cti\system\double\DoubleEquals2\DoubleEquals2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleGetHashCode.exe_6900]
+RelativePath=CoreMangLib\cti\system\double\DoubleGetHashCode\DoubleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToBoolean.exe_6901]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean\DoubleIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToByte.exe_6902]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToByte\DoubleIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToDateTime.exe_6903]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime\DoubleIConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToDecimal.exe_6904]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal\DoubleIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToDouble.exe_6905]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble\DoubleIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToInt16.exe_6906]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16\DoubleIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToInt32.exe_6907]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32\DoubleIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToInt64.exe_6908]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64\DoubleIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToSByte.exe_6909]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte\DoubleIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIConvertibleToSingle.exe_6910]
+RelativePath=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle\DoubleIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIsInfinity.exe_6911]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsInfinity\DoubleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIsNaN.exe_6912]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNaN\DoubleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIsNegativeInfinity.exe_6913]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity\DoubleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleIsPositiveInfinity.exe_6914]
+RelativePath=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity\DoubleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleIsPositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleMaxValue.exe_6915]
+RelativePath=CoreMangLib\cti\system\double\DoubleMaxValue\DoubleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleMinValue.exe_6916]
+RelativePath=CoreMangLib\cti\system\double\DoubleMinValue\DoubleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleNaN.exe_6917]
+RelativePath=CoreMangLib\cti\system\double\DoubleNaN\DoubleNaN.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleNegativeInfinity.exe_6918]
+RelativePath=CoreMangLib\cti\system\double\DoubleNegativeInfinity\DoubleNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleParse3.exe_6919]
+RelativePath=CoreMangLib\cti\system\double\DoubleParse3\DoubleParse3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoublePositiveInfinity.exe_6920]
+RelativePath=CoreMangLib\cti\system\double\DoublePositiveInfinity\DoublePositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\double\DoublePositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleToString1.exe_6921]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString1\DoubleToString1.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleToString2.exe_6922]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString2\DoubleToString2.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleToString3.exe_6923]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString3\DoubleToString3.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleToString4.exe_6924]
+RelativePath=CoreMangLib\cti\system\double\DoubleToString4\DoubleToString4.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DoubleTryParse.exe_6925]
+RelativePath=CoreMangLib\cti\system\double\DoubleTryParse\DoubleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\double\DoubleTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToInt64.exe_6926]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64\EnumIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToSingle.exe_6927]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle\EnumIConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToType.exe_6928]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToType\EnumIConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToUint16.exe_6929]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16\EnumIConvertibleToUint16.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToUint32.exe_6930]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32\EnumIConvertibleToUint32.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIConvertibleToUint64.exe_6931]
+RelativePath=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64\EnumIConvertibleToUint64.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIConvertibleToUint64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumIsDefined.exe_6932]
+RelativePath=CoreMangLib\cti\system\enum\EnumIsDefined\EnumIsDefined.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumIsDefined
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumToObjectb.exe_6933]
+RelativePath=CoreMangLib\cti\system\enum\EnumToObjectb\EnumToObjectb.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToObjectb
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumToString.exe_6934]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString\EnumToString.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnumToString3.exe_6935]
+RelativePath=CoreMangLib\cti\system\enum\EnumToString3\EnumToString3.exe
+WorkingDir=CoreMangLib\cti\system\enum\EnumToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EnvironmentNewLine.exe_6936]
+RelativePath=CoreMangLib\cti\system\environment\EnvironmentNewLine\EnvironmentNewLine.exe
+WorkingDir=CoreMangLib\cti\system\environment\EnvironmentNewLine
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventArgsctor.exe_6937]
+RelativePath=CoreMangLib\cti\system\eventargs\EventArgsctor\EventArgsctor.exe
+WorkingDir=CoreMangLib\cti\system\eventargs\EventArgsctor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventHandlerInvoke.exe_6938]
+RelativePath=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler\EventHandlerInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventHandlerBeginInvoke.exe_6939]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke\EventHandlerBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventHandlerCtor.exe_6940]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor\EventHandlerCtor.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventHandlerEndInvoke.exe_6941]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke\EventHandlerEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventHandlerInvoke.exe_6942]
+RelativePath=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke\EventHandlerInvoke.exe
+WorkingDir=CoreMangLib\cti\system\eventhandler_generic\EventHandlerInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExceptionCtor1.exe_6943]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor1\ExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExceptionCtor2.exe_6944]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor2\ExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExceptionCtor3.exe_6945]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionCtor3\ExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ExceptionGetBaseException.exe_6946]
+RelativePath=CoreMangLib\cti\system\exception\ExceptionGetBaseException\ExceptionGetBaseException.exe
+WorkingDir=CoreMangLib\cti\system\exception\ExceptionGetBaseException
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlagsAttributeCtor.exe_6947]
+RelativePath=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor\FlagsAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\flagsattribute\FlagsAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FormatExceptionCtor1.exe_6948]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1\FormatExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FormatExceptionCtor2.exe_6949]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2\FormatExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FormatExceptionCtor3.exe_6950]
+RelativePath=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3\FormatExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\formatexception\FormatExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCCollect.exe_6951]
+RelativePath=CoreMangLib\cti\system\gc\GCCollect\GCCollect.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCCollect
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCGetTotalMemory.exe_6952]
+RelativePath=CoreMangLib\cti\system\gc\GCGetTotalMemory\GCGetTotalMemory.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCGetTotalMemory
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCKeepAlive.exe_6953]
+RelativePath=CoreMangLib\cti\system\gc\GCKeepAlive\GCKeepAlive.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCKeepAlive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCMaxGeneration.exe_6954]
+RelativePath=CoreMangLib\cti\system\gc\GCMaxGeneration\GCMaxGeneration.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCMaxGeneration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCReRegisterForFinalize.exe_6955]
+RelativePath=CoreMangLib\cti\system\gc\GCReRegisterForFinalize\GCReRegisterForFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCReRegisterForFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCSuppressFinalize.exe_6956]
+RelativePath=CoreMangLib\cti\system\gc\GCSuppressFinalize\GCSuppressFinalize.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCSuppressFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCWaitForPendingFinalizers.exe_6957]
+RelativePath=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers\GCWaitForPendingFinalizers.exe
+WorkingDir=CoreMangLib\cti\system\gc\GCWaitForPendingFinalizers
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CalendarWeekRuleFirstDay.exe_6958]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay\CalendarWeekRuleFirstDay.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CalendarWeekRuleFirstFourDayWeek.exe_6959]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek\CalendarWeekRuleFirstFourDayWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFourDayWeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CalendarWeekRuleFirstFullWeek.exe_6960]
+RelativePath=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek\CalendarWeekRuleFirstFullWeek.exe
+WorkingDir=CoreMangLib\cti\system\globalization\calendarweekrule\CalendarWeekRuleFirstFullWeek
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharUnicodeInfoGetNumericValue1.exe_6961]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1\CharUnicodeInfoGetNumericValue1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharUnicodeInfoGetNumericValue2.exe_6962]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2\CharUnicodeInfoGetNumericValue2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetNumericValue2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharUnicodeInfoGetUnicodeCategory1.exe_6963]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1\CharUnicodeInfoGetUnicodeCategory1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharUnicodeInfoGetUnicodeCategory2.exe_6964]
+RelativePath=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2\CharUnicodeInfoGetUnicodeCategory2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\charunicodeinfo\CharUnicodeInfoGetUnicodeCategory2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareInfoCompare2.exe_6965]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2\CompareInfoCompare2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareInfoIndexOf2.exe_6966]
+RelativePath=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2\CompareInfoIndexOf2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareinfo\CompareInfoIndexOf2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsIgnoreCase.exe_6967]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase\CompareOptionsIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsIgnoreKanaType.exe_6968]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType\CompareOptionsIgnoreKanaType.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreKanaType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsIgnoreNonSpace.exe_6969]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace\CompareOptionsIgnoreNonSpace.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreNonSpace
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsIgnoreSymbols.exe_6970]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols\CompareOptionsIgnoreSymbols.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreSymbols
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsIgnoreWidth.exe_6971]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth\CompareOptionsIgnoreWidth.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsIgnoreWidth
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsNone.exe_6972]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone\CompareOptionsNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsOrdinal.exe_6973]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal\CompareOptionsOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsOrdinalIgoreCase.exe_6974]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase\CompareOptionsOrdinalIgoreCase.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsOrdinalIgoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompareOptionsStringSort.exe_6975]
+RelativePath=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort\CompareOptionsStringSort.exe
+WorkingDir=CoreMangLib\cti\system\globalization\compareoptions\CompareOptionsStringSort
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoClone.exe_6976]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone\CultureInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoEnglishName.exe_6977]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName\CultureInfoEnglishName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEnglishName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoEquals.exe_6978]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals\CultureInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoGetCultureInfo2.exe_6979]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2\CultureInfoGetCultureInfo2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetCultureInfo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoGetHashCode.exe_6980]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode\CultureInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoInvariantCulture.exe_6981]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture\CultureInfoInvariantCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoInvariantCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoIsNeutralCulture.exe_6982]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture\CultureInfoIsNeutralCulture.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoIsNeutralCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoName.exe_6983]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName\CultureInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoNativeName.exe_6984]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName\CultureInfoNativeName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoNativeName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoParent.exe_6985]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent\CultureInfoParent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoParent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoReadOnly.exe_6986]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly\CultureInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoTextInfo.exe_6987]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo\CultureInfoTextInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTextInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoToString.exe_6988]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString\CultureInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureInfoTwoLetterISOLanguageName.exe_6989]
+RelativePath=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName\CultureInfoTwoLetterISOLanguageName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\cultureinfo\CultureInfoTwoLetterISOLanguageName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoClone.exe_6990]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone\DateTimeFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoCurrentInfo.exe_6991]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo\DateTimeFormatInfoCurrentInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoCurrentInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoGetAbbreviatedMonthName.exe_6992]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName\DateTimeFormatInfoGetAbbreviatedMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetAbbreviatedMonthName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoGetFormat.exe_6993]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat\DateTimeFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoGetInstance.exe_6994]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance\DateTimeFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetInstance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoGetMonthName.exe_6995]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName\DateTimeFormatInfoGetMonthName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoGetMonthName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoInvariantInfo.exe_6996]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo\DateTimeFormatInfoInvariantInfo.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoInvariantInfo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoIsReadOnly.exe_6997]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly\DateTimeFormatInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoReadOnly.exe_6998]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly\DateTimeFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoRFC1123Pattern.exe_6999]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern\DateTimeFormatInfoRFC1123Pattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoRFC1123Pattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeFormatInfoSortableDateTimePattern.exe_7000]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern\DateTimeFormatInfoSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\DateTimeFormatInfoSortableDateTimePattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UniversalSortableDateTimePattern.exe_7001]
+RelativePath=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern\UniversalSortableDateTimePattern.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimeformatinfo\UniversalSortableDateTimePattern
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStyleAllowInnerWhite.exe_7002]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite\DateTimeStyleAllowInnerWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStyleAllowInnerWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAdjustToUniversal.exe_7003]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal\DateTimeStylesAdjustToUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAdjustToUniversal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAllowLeadingWhite.exe_7004]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite\DateTimeStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowLeadingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAllowTrailingWhite.exe_7005]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite\DateTimeStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowTrailingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAllowWhiteSpaces.exe_7006]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces\DateTimeStylesAllowWhiteSpaces.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAllowWhiteSpaces
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAssumeLocal.exe_7007]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal\DateTimeStylesAssumeLocal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeLocal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesAssumeUniversal.exe_7008]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal\DateTimeStylesAssumeUniversal.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesAssumeUniversal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesNoCurrentDateDefault.exe_7009]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault\DateTimeStylesNoCurrentDateDefault.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNoCurrentDateDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesNone.exe_7010]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone\DateTimeStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DateTimeStylesRoundTripKind.exe_7011]
+RelativePath=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind\DateTimeStylesRoundTripKind.exe
+WorkingDir=CoreMangLib\cti\system\globalization\datetimestyles\DateTimeStylesRoundTripKind
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoClone.exe_7012]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone\NumberFormatInfoClone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoCtor.exe_7013]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor\NumberFormatInfoCtor.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoCurrencyDecimalSeparator.exe_7014]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator\NumberFormatInfoCurrencyDecimalSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyDecimalSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoCurrencyGroupSeparator.exe_7015]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator\NumberFormatInfoCurrencyGroupSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoCurrencyGroupSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoGetFormat.exe_7016]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat\NumberFormatInfoGetFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoGetInstance.exe_7017]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance\NumberFormatInfoGetInstance.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoGetInstance
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberFormatInfoReadOnly.exe_7018]
+RelativePath=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly\NumberFormatInfoReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberformatinfo\NumberFormatInfoReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowCurrencySymbol.exe_7019]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol\NumberStylesAllowCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowCurrencySymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowDecimalPoint.exe_7020]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint\NumberStylesAllowDecimalPoint.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowDecimalPoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowExponent.exe_7021]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent\NumberStylesAllowExponent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowExponent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowHexSpecifier.exe_7022]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier\NumberStylesAllowHexSpecifier.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowHexSpecifier
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowLeadingSign.exe_7023]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign\NumberStylesAllowLeadingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingSign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowLeadingWhite.exe_7024]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite\NumberStylesAllowLeadingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowLeadingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowParentheses.exe_7025]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses\NumberStylesAllowParentheses.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowParentheses
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowThousands.exe_7026]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands\NumberStylesAllowThousands.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowThousands
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowTrailingSign.exe_7027]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign\NumberStylesAllowTrailingSign.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingSign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAllowTrailingWhite.exe_7028]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite\NumberStylesAllowTrailingWhite.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAllowTrailingWhite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesAny.exe_7029]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny\NumberStylesAny.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesAny
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesCurrency.exe_7030]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency\NumberStylesCurrency.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesCurrency
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesFloat.exe_7031]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat\NumberStylesFloat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesFloat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesHexNumber.exe_7032]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber\NumberStylesHexNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesHexNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesInteger.exe_7033]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger\NumberStylesInteger.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesInteger
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesNone.exe_7034]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone\NumberStylesNone.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NumberStylesNumber.exe_7035]
+RelativePath=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber\NumberStylesNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\numberstyles\NumberStylesNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoCurrentRegion.exe_7036]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion\RegionInfoCurrentRegion.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoCurrentRegion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoEquals.exe_7037]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals\RegionInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoGetHashCode.exe_7038]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode\RegionInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoIsMetric.exe_7039]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric\RegionInfoIsMetric.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoIsMetric
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoISOCurrencySymbol.exe_7040]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol\RegionInfoISOCurrencySymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoISOCurrencySymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoName.exe_7041]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName\RegionInfoName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoToString.exe_7042]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString\RegionInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RegionInfoTwoLetterISORegionName.exe_7043]
+RelativePath=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName\RegionInfoTwoLetterISORegionName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\regioninfo\RegionInfoTwoLetterISORegionName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoCtor1.exe_7044]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1\StringInfoCtor1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoCtor2.exe_7045]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2\StringInfoCtor2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoEquals.exe_7046]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals\StringInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoGetHashCode.exe_7047]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode\StringInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoGetNextTextElement2.exe_7048]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2\StringInfoGetNextTextElement2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetNextTextElement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoGetTextElementEnumerator1.exe_7049]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1\StringInfoGetTextElementEnumerator1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoGetTextElementEnumerator2.exe_7050]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2\StringInfoGetTextElementEnumerator2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoGetTextElementEnumerator2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoLengthInTextElements.exe_7051]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements\StringInfoLengthInTextElements.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoLengthInTextElements
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoParseCombiningCharacters.exe_7052]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters\StringInfoParseCombiningCharacters.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoParseCombiningCharacters
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInfoString.exe_7053]
+RelativePath=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString\StringInfoString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\stringinfo\StringInfoString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextElementEnumeratorCurrent.exe_7054]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent\TextElementEnumeratorCurrent.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextElementEnumeratorElementIndex.exe_7055]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex\TextElementEnumeratorElementIndex.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorElementIndex
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextElementEnumeratorGetTextElement.exe_7056]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement\TextElementEnumeratorGetTextElement.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorGetTextElement
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextElementEnumeratorMoveNext.exe_7057]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext\TextElementEnumeratorMoveNext.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorMoveNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextElementEnumeratorReset.exe_7058]
+RelativePath=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset\TextElementEnumeratorReset.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textelementenumerator\TextElementEnumeratorReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoCultureName.exe_7059]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName\TextInfoCultureName.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoCultureName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoEquals.exe_7060]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals\TextInfoEquals.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoGetHashCode.exe_7061]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode\TextInfoGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoIsReadOnly.exe_7062]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly\TextInfoIsReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoIsReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoToString.exe_7063]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString\TextInfoToString.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoToUpper1.exe_7064]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1\TextInfoToUpper1.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextInfoToUpper2.exe_7065]
+RelativePath=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2\TextInfoToUpper2.exe
+WorkingDir=CoreMangLib\cti\system\globalization\textinfo\TextInfoToUpper2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryClosePunctuation.exe_7066]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation\UnicodeCategoryClosePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryClosePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryConnectorPunctuation.exe_7067]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation\UnicodeCategoryConnectorPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryConnectorPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryControl.exe_7068]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl\UnicodeCategoryControl.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryControl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryDashPunctuation.exe_7069]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation\UnicodeCategoryDashPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDashPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryDecimalDigitNumber.exe_7070]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber\UnicodeCategoryDecimalDigitNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryDecimalDigitNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryEnclosingMark.exe_7071]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark\UnicodeCategoryEnclosingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryEnclosingMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryFinalQuotePunctuation.exe_7072]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation\UnicodeCategoryFinalQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFinalQuotePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryFormat.exe_7073]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat\UnicodeCategoryFormat.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryFormat
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryInitialQuotePunctuation.exe_7074]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation\UnicodeCategoryInitialQuotePunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryInitialQuotePunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryLetterNumber.exe_7075]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber\UnicodeCategoryLetterNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLetterNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryLineSeparator.exe_7076]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator\UnicodeCategoryLineSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLineSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryLowercaseLetter.exe_7077]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter\UnicodeCategoryLowercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryLowercaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryMathSymbol.exe_7078]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol\UnicodeCategoryMathSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryMathSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryModifierLetter.exe_7079]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter\UnicodeCategoryModifierLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryModifierSymbol.exe_7080]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol\UnicodeCategoryModifierSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryModifierSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryNonSpacingMark.exe_7081]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark\UnicodeCategoryNonSpacingMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryNonSpacingMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOpenPunctuation.exe_7082]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation\UnicodeCategoryOpenPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOpenPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOtherLetter.exe_7083]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter\UnicodeCategoryOtherLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOtherNotAssigned.exe_7084]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned\UnicodeCategoryOtherNotAssigned.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNotAssigned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOtherNumber.exe_7085]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber\UnicodeCategoryOtherNumber.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherNumber
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOtherPunctuation.exe_7086]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation\UnicodeCategoryOtherPunctuation.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherPunctuation
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryOtherSymbol.exe_7087]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol\UnicodeCategoryOtherSymbol.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryOtherSymbol
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryParagraphSeparator.exe_7088]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator\UnicodeCategoryParagraphSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryParagraphSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryPrivateUse.exe_7089]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse\UnicodeCategoryPrivateUse.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryPrivateUse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategorySpaceSeparator.exe_7090]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator\UnicodeCategorySpaceSeparator.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpaceSeparator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategorySpacingCombiningMark.exe_7091]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark\UnicodeCategorySpacingCombiningMark.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySpacingCombiningMark
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategorySurrogate.exe_7092]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate\UnicodeCategorySurrogate.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategorySurrogate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryTitlecaseLetter.exe_7093]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter\UnicodeCategoryTitlecaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryTitlecaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeCategoryUppercaseLetter.exe_7094]
+RelativePath=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter\UnicodeCategoryUppercaseLetter.exe
+WorkingDir=CoreMangLib\cti\system\globalization\unicodecategory\UnicodeCategoryUppercaseLetter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCompareTo1_cti.exe_7095]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo1_cti\GuidCompareTo1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCompareTo2.exe_7096]
+RelativePath=CoreMangLib\cti\system\guid\GuidCompareTo2\GuidCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCtor1.exe_7097]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1\GuidCtor1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCtor1_cti.exe_7098]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor1_cti\GuidCtor1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCtor2_cti.exe_7099]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor2_cti\GuidCtor2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor2_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCtor3.exe_7100]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3\GuidCtor3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidCtor3_cti.exe_7101]
+RelativePath=CoreMangLib\cti\system\guid\GuidCtor3_cti\GuidCtor3_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidCtor3_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEmpty.exe_7102]
+RelativePath=CoreMangLib\cti\system\guid\GuidEmpty\GuidEmpty.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEquals1.exe_7103]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1\GuidEquals1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEquals1_cti.exe_7104]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals1_cti\GuidEquals1_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals1_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEquals2.exe_7105]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2\GuidEquals2.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEquals2_cti.exe_7106]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals2_cti\GuidEquals2_cti.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals2_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidEquals3.exe_7107]
+RelativePath=CoreMangLib\cti\system\guid\GuidEquals3\GuidEquals3.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidGetHashCode.exe_7108]
+RelativePath=CoreMangLib\cti\system\guid\GuidGetHashCode\GuidGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidNewGuid.exe_7109]
+RelativePath=CoreMangLib\cti\system\guid\GuidNewGuid\GuidNewGuid.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidNewGuid
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidToByteArray.exe_7110]
+RelativePath=CoreMangLib\cti\system\guid\GuidToByteArray\GuidToByteArray.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToByteArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GuidToString1.exe_7111]
+RelativePath=CoreMangLib\cti\system\guid\GuidToString1\GuidToString1.exe
+WorkingDir=CoreMangLib\cti\system\guid\GuidToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IComparableCompareTo.exe_7112]
+RelativePath=CoreMangLib\cti\system\icomparable\IComparableCompareTo\IComparableCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable\IComparableCompareTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IComparable_GenericCompareTo.exe_7113]
+RelativePath=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo\IComparable_GenericCompareTo.exe
+WorkingDir=CoreMangLib\cti\system\icomparable_generic\IComparable_GenericCompareTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToBoolean.exe_7114]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean\IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToByte.exe_7115]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToByte\IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToChar.exe_7116]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToChar\IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToDateTime.exe_7117]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime\IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToDecimal.exe_7118]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal\IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToDouble.exe_7119]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble\IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToInt16.exe_7120]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16\IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToInt32.exe_7121]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32\IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IConvertibleToInt64.exe_7122]
+RelativePath=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64\IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\iconvertible\IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IDisposableDispose.exe_7123]
+RelativePath=CoreMangLib\cti\system\idisposable\IDisposableDispose\IDisposableDispose.exe
+WorkingDir=CoreMangLib\cti\system\idisposable\IDisposableDispose
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IFormatableToString.exe_7124]
+RelativePath=CoreMangLib\cti\system\iformatable\IFormatableToString\IFormatableToString.exe
+WorkingDir=CoreMangLib\cti\system\iformatable\IFormatableToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IndexOutOfRangeExceptionctor1.exe_7125]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1\IndexOutOfRangeExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IndexOutOfRangeExceptionctor2.exe_7126]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2\IndexOutOfRangeExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IndexOutOfRangeExceptionctor3.exe_7127]
+RelativePath=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3\IndexOutOfRangeExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\indexoutofrangeexception\IndexOutOfRangeExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32CompareTo1.exe_7128]
+RelativePath=CoreMangLib\cti\system\int\Int32CompareTo1\Int32CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Equals1.exe_7129]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals1\Int32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Equals2.exe_7130]
+RelativePath=CoreMangLib\cti\system\int\Int32Equals2\Int32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32GetHashCode.exe_7131]
+RelativePath=CoreMangLib\cti\system\int\Int32GetHashCode\Int32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToBoolean.exe_7132]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean\Int32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToByte.exe_7133]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToByte\Int32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToChar.exe_7134]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToChar\Int32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToDateTime.exe_7135]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime\Int32IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToDecimal.exe_7136]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal\Int32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToDouble.exe_7137]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToDouble\Int32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToInt16.exe_7138]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt16\Int32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToInt32.exe_7139]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt32\Int32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToInt64.exe_7140]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToInt64\Int32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToSByte.exe_7141]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSByte\Int32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToSingle.exe_7142]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToSingle\Int32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToType.exe_7143]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToType\Int32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToUInt16.exe_7144]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16\Int32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToUInt32.exe_7145]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32\Int32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32IConvertibleToUInt64.exe_7146]
+RelativePath=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64\Int32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32MaxValue.exe_7147]
+RelativePath=CoreMangLib\cti\system\int\Int32MaxValue\Int32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32MinValue.exe_7148]
+RelativePath=CoreMangLib\cti\system\int\Int32MinValue\Int32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Parse1.exe_7149]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse1\Int32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Parse2.exe_7150]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse2\Int32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Parse3.exe_7151]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse3\Int32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32Parse4.exe_7152]
+RelativePath=CoreMangLib\cti\system\int\Int32Parse4\Int32Parse4.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32Parse4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32ToString3.exe_7153]
+RelativePath=CoreMangLib\cti\system\int\Int32ToString3\Int32ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int32TryParse.exe_7154]
+RelativePath=CoreMangLib\cti\system\int\Int32TryParse\Int32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int\Int32TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16Equals1.exe_7155]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals1\Int16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16Equals2.exe_7156]
+RelativePath=CoreMangLib\cti\system\int16\Int16Equals2\Int16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16GetHashCode.exe_7157]
+RelativePath=CoreMangLib\cti\system\int16\Int16GetHashCode\Int16GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToBoolean.exe_7158]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean\Int16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToByte.exe_7159]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToByte\Int16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToChar.exe_7160]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToChar\Int16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToDateTime.exe_7161]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime\Int16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToDecimal.exe_7162]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal\Int16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToDouble.exe_7163]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble\Int16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToInt16.exe_7164]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16\Int16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToInt32.exe_7165]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32\Int16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToInt64.exe_7166]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64\Int16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToSByte.exe_7167]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte\Int16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToSingle.exe_7168]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle\Int16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToType.exe_7169]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToType\Int16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToUInt16.exe_7170]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16\Int16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToUInt32.exe_7171]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32\Int16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16IConvertibleToUInt64.exe_7172]
+RelativePath=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64\Int16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16MaxValue.exe_7173]
+RelativePath=CoreMangLib\cti\system\int16\Int16MaxValue\Int16MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16MinValue.exe_7174]
+RelativePath=CoreMangLib\cti\system\int16\Int16MinValue\Int16MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16Parse1.exe_7175]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse1\Int16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16Parse2.exe_7176]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse2\Int16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16Parse3.exe_7177]
+RelativePath=CoreMangLib\cti\system\int16\Int16Parse3\Int16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int16TryParse.exe_7178]
+RelativePath=CoreMangLib\cti\system\int16\Int16TryParse\Int16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int16\Int16TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64CompareTo1.exe_7179]
+RelativePath=CoreMangLib\cti\system\int64\Int64CompareTo1\Int64CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64Equals1.exe_7180]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals1\Int64Equals1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64Equals2.exe_7181]
+RelativePath=CoreMangLib\cti\system\int64\Int64Equals2\Int64Equals2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64GetHashCode.exe_7182]
+RelativePath=CoreMangLib\cti\system\int64\Int64GetHashCode\Int64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToBoolean.exe_7183]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean\Int64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToByte.exe_7184]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToByte\Int64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToChar.exe_7185]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToChar\Int64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToDateTime.exe_7186]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime\Int64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToDecimal.exe_7187]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal\Int64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToDouble.exe_7188]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble\Int64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToInt16.exe_7189]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16\Int64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToInt32.exe_7190]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32\Int64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToInt64.exe_7191]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64\Int64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToSByte.exe_7192]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte\Int64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToSingle.exe_7193]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle\Int64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToType.exe_7194]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToType\Int64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToUInt16.exe_7195]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16\Int64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToUInt32.exe_7196]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32\Int64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64IConvertibleToUInt64.exe_7197]
+RelativePath=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64\Int64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64MaxValue.exe_7198]
+RelativePath=CoreMangLib\cti\system\int64\Int64MaxValue\Int64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64MinValue.exe_7199]
+RelativePath=CoreMangLib\cti\system\int64\Int64MinValue\Int64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64Parse1.exe_7200]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse1\Int64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64Parse2.exe_7201]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse2\Int64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64Parse3.exe_7202]
+RelativePath=CoreMangLib\cti\system\int64\Int64Parse3\Int64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64ToString3.exe_7203]
+RelativePath=CoreMangLib\cti\system\int64\Int64ToString3\Int64ToString3.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Int64TryParse.exe_7204]
+RelativePath=CoreMangLib\cti\system\int64\Int64TryParse\Int64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\int64\Int64TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrCtor_Int32.exe_7205]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32\IntPtrCtor_Int32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrCtor_Int64.exe_7206]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64\IntPtrCtor_Int64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Int64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrCtor_Void.exe_7207]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrCtor_Void\IntPtrCtor_Void.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrCtor_Void
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrEquals.exe_7208]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrEquals\IntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrGetHashCode.exe_7209]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrGetHashCode\IntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrToInt32.exe_7210]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt32\IntPtrToInt32.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrToInt64.exe_7211]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToInt64\IntPtrToInt64.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrToPointer.exe_7212]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToPointer\IntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToPointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrToString.exe_7213]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrToString\IntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IntPtrZero.exe_7214]
+RelativePath=CoreMangLib\cti\system\intptr\IntPtrZero\IntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\intptr\IntPtrZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidCastExceptionctor1.exe_7215]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1\InvalidCastExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidCastExceptionctor2.exe_7216]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2\InvalidCastExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidCastExceptionctor3.exe_7217]
+RelativePath=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3\InvalidCastExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidcastexception\InvalidCastExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidOperationExceptionctor1.exe_7218]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1\InvalidOperationExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidOperationExceptionctor2.exe_7219]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2\InvalidOperationExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidOperationExceptionctor3.exe_7220]
+RelativePath=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3\InvalidOperationExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidoperationexception\InvalidOperationExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidProgramExceptionctor1.exe_7221]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1\InvalidProgramExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidProgramExceptionctor2.exe_7222]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2\InvalidProgramExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InvalidProgramExceptionctor3.exe_7223]
+RelativePath=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3\InvalidProgramExceptionctor3.exe
+WorkingDir=CoreMangLib\cti\system\invalidprogramexception\InvalidProgramExceptionctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[BinaryWriterOutStream_PSC.exe_7224]
+RelativePath=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC\BinaryWriterOutStream_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\binarywriter\BinaryWriterOutStream_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DirectoryNotFoundExceptionctor1.exe_7225]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1\DirectoryNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DirectoryNotFoundExceptionctor2.exe_7226]
+RelativePath=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2\DirectoryNotFoundExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\directorynotfoundexception\DirectoryNotFoundExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[endofstreamexceptionctor1_PSC.exe_7227]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC\endofstreamexceptionctor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[endofstreamexceptionctor2_PSC.exe_7228]
+RelativePath=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC\endofstreamexceptionctor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\endofstreamexception\endofstreamexceptionctor2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAccessEnum.exe_7229]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum\FileAccessEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAccessRead.exe_7230]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessRead\FileAccessRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessRead
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAccessReadWrite.exe_7231]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite\FileAccessReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessReadWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAccessWrite.exe_7232]
+RelativePath=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite\FileAccessWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileaccess\FileAccessWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesArchive.exe_7233]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive\FileAttributesArchive.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesArchive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesCompressed.exe_7234]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed\FileAttributesCompressed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesCompressed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesDeivce.exe_7235]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce\FileAttributesDeivce.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDeivce
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesDirectory.exe_7236]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory\FileAttributesDirectory.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesDirectory
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesEncrypted.exe_7237]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted\FileAttributesEncrypted.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEncrypted
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesEnum.exe_7238]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum\FileAttributesEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesHidden.exe_7239]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden\FileAttributesHidden.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesHidden
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesNormal.exe_7240]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal\FileAttributesNormal.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNormal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesNotContentIndexed.exe_7241]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed\FileAttributesNotContentIndexed.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesNotContentIndexed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesOffline.exe_7242]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline\FileAttributesOffline.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesOffline
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesReadOnly.exe_7243]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly\FileAttributesReadOnly.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReadOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesReparsePoint.exe_7244]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint\FileAttributesReparsePoint.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesReparsePoint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesSystem.exe_7245]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem\FileAttributesSystem.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesSystem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileAttributesTemporary.exe_7246]
+RelativePath=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary\FileAttributesTemporary.exe
+WorkingDir=CoreMangLib\cti\system\io\fileattributes\FileAttributesTemporary
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeAppend.exe_7247]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeAppend\FileModeAppend.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeAppend
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeCreate.exe_7248]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreate\FileModeCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeCreateNew.exe_7249]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeCreateNew\FileModeCreateNew.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeCreateNew
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeEnum.exe_7250]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeEnum\FileModeEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeOpen.exe_7251]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpen\FileModeOpen.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeOpenOrCreate.exe_7252]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate\FileModeOpenOrCreate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeOpenOrCreate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileModeTruncate.exe_7253]
+RelativePath=CoreMangLib\cti\system\io\filemode\FileModeTruncate\FileModeTruncate.exe
+WorkingDir=CoreMangLib\cti\system\io\filemode\FileModeTruncate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionCtor.exe_7254]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor\FileNotFoundExceptionCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionctor1.exe_7255]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1\FileNotFoundExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionCtor2.exe_7256]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2\FileNotFoundExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionGetMessage.exe_7257]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage\FileNotFoundExceptionGetMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionGetMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionMessage.exe_7258]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage\FileNotFoundExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileNotFoundExceptionToString.exe_7259]
+RelativePath=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString\FileNotFoundExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\io\filenotfoundexception\FileNotFoundExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileShareEnum.exe_7260]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareEnum\FileShareEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileShareNone.exe_7261]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareNone\FileShareNone.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileShareRead.exe_7262]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareRead\FileShareRead.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareRead
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileShareReadWrite.exe_7263]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite\FileShareReadWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareReadWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileShareWrite.exe_7264]
+RelativePath=CoreMangLib\cti\system\io\fileshare\FileShareWrite\FileShareWrite.exe
+WorkingDir=CoreMangLib\cti\system\io\fileshare\FileShareWrite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FileStreamDispose_PSC.exe_7265]
+RelativePath=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC\FileStreamDispose_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\filestream\FileStreamDispose_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IOExceptionctor1.exe_7266]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1\IOExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IOExceptionctor2.exe_7267]
+RelativePath=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2\IOExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\ioexception\IOExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor.exe_7268]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor\MemoryStreamCtor.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor2.exe_7269]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2\MemoryStreamCtor2.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor3.exe_7270]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3\MemoryStreamCtor3.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor4.exe_7271]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4\MemoryStreamCtor4.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor5.exe_7272]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5\MemoryStreamCtor5.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor6.exe_7273]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6\MemoryStreamCtor6.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemoryStreamCtor7.exe_7274]
+RelativePath=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7\MemoryStreamCtor7.exe
+WorkingDir=CoreMangLib\cti\system\io\memorystream\MemoryStreamCtor7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PathTooLongExceptionctor1.exe_7275]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1\PathTooLongExceptionctor1.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PathTooLongExceptionctor2.exe_7276]
+RelativePath=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2\PathTooLongExceptionctor2.exe
+WorkingDir=CoreMangLib\cti\system\io\pathtoolongexception\PathTooLongExceptionctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SeekOriginBegin.exe_7277]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin\SeekOriginBegin.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginBegin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SeekOriginCurrent.exe_7278]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent\SeekOriginCurrent.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginCurrent
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SeekOriginEnd.exe_7279]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd\SeekOriginEnd.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SeekOriginEnum.exe_7280]
+RelativePath=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum\SeekOriginEnum.exe
+WorkingDir=CoreMangLib\cti\system\io\seekorigin\SeekOriginEnum
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamDispose1_PSC.exe_7281]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC\StreamDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamDispose2_PSC.exe_7282]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC\StreamDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamDispose2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamNull_PSC.exe_7283]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamNull_PSC\StreamNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamReadTimeOut_PSC.exe_7284]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC\StreamReadTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamReadTimeOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamWriteTimeOut_PSC.exe_7285]
+RelativePath=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC\StreamWriteTimeOut_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stream\StreamWriteTimeOut_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StreamReaderNull_PSC.exe_7286]
+RelativePath=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC\StreamReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\streamreader\StreamReaderNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringWriterEncoding_PSC.exe_7287]
+RelativePath=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC\StringWriterEncoding_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\stringwriter\StringWriterEncoding_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextReaderNull_PSC.exe_7288]
+RelativePath=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC\TextReaderNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textreader\TextReaderNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TextWriterNull_PSC.exe_7289]
+RelativePath=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC\TextWriterNull_PSC.exe
+WorkingDir=CoreMangLib\cti\system\io\textwriter\TextWriterNull_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs1.exe_7290]
+RelativePath=CoreMangLib\cti\system\math\MathAbs1\MathAbs1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs2.exe_7291]
+RelativePath=CoreMangLib\cti\system\math\MathAbs2\MathAbs2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs3.exe_7292]
+RelativePath=CoreMangLib\cti\system\math\MathAbs3\MathAbs3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs4.exe_7293]
+RelativePath=CoreMangLib\cti\system\math\MathAbs4\MathAbs4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs5.exe_7294]
+RelativePath=CoreMangLib\cti\system\math\MathAbs5\MathAbs5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs6.exe_7295]
+RelativePath=CoreMangLib\cti\system\math\MathAbs6\MathAbs6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAbs7.exe_7296]
+RelativePath=CoreMangLib\cti\system\math\MathAbs7\MathAbs7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAbs7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAcos.exe_7297]
+RelativePath=CoreMangLib\cti\system\math\MathAcos\MathAcos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAcos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAtan.exe_7298]
+RelativePath=CoreMangLib\cti\system\math\MathAtan\MathAtan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathAtan2.exe_7299]
+RelativePath=CoreMangLib\cti\system\math\MathAtan2\MathAtan2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathAtan2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathCeiling.exe_7300]
+RelativePath=CoreMangLib\cti\system\math\MathCeiling\MathCeiling.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCeiling
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathCos.exe_7301]
+RelativePath=CoreMangLib\cti\system\math\MathCos\MathCos.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCos
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathCosh.exe_7302]
+RelativePath=CoreMangLib\cti\system\math\MathCosh\MathCosh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathCosh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathE.exe_7303]
+RelativePath=CoreMangLib\cti\system\math\MathE\MathE.exe
+WorkingDir=CoreMangLib\cti\system\math\MathE
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathExp.exe_7304]
+RelativePath=CoreMangLib\cti\system\math\MathExp\MathExp.exe
+WorkingDir=CoreMangLib\cti\system\math\MathExp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathFloor.exe_7305]
+RelativePath=CoreMangLib\cti\system\math\MathFloor\MathFloor.exe
+WorkingDir=CoreMangLib\cti\system\math\MathFloor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathIEEERemainder.exe_7306]
+RelativePath=CoreMangLib\cti\system\math\MathIEEERemainder\MathIEEERemainder.exe
+WorkingDir=CoreMangLib\cti\system\math\MathIEEERemainder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathLog.exe_7307]
+RelativePath=CoreMangLib\cti\system\math\MathLog\MathLog.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathLog10.exe_7308]
+RelativePath=CoreMangLib\cti\system\math\MathLog10\MathLog10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathLog10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax1.exe_7309]
+RelativePath=CoreMangLib\cti\system\math\MathMax1\MathMax1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax10.exe_7310]
+RelativePath=CoreMangLib\cti\system\math\MathMax10\MathMax10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax11.exe_7311]
+RelativePath=CoreMangLib\cti\system\math\MathMax11\MathMax11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax2.exe_7312]
+RelativePath=CoreMangLib\cti\system\math\MathMax2\MathMax2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax3.exe_7313]
+RelativePath=CoreMangLib\cti\system\math\MathMax3\MathMax3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax4.exe_7314]
+RelativePath=CoreMangLib\cti\system\math\MathMax4\MathMax4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax5.exe_7315]
+RelativePath=CoreMangLib\cti\system\math\MathMax5\MathMax5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax6.exe_7316]
+RelativePath=CoreMangLib\cti\system\math\MathMax6\MathMax6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax7.exe_7317]
+RelativePath=CoreMangLib\cti\system\math\MathMax7\MathMax7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax8.exe_7318]
+RelativePath=CoreMangLib\cti\system\math\MathMax8\MathMax8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMax9.exe_7319]
+RelativePath=CoreMangLib\cti\system\math\MathMax9\MathMax9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMax9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin1.exe_7320]
+RelativePath=CoreMangLib\cti\system\math\MathMin1\MathMin1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin10.exe_7321]
+RelativePath=CoreMangLib\cti\system\math\MathMin10\MathMin10.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin11.exe_7322]
+RelativePath=CoreMangLib\cti\system\math\MathMin11\MathMin11.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin2.exe_7323]
+RelativePath=CoreMangLib\cti\system\math\MathMin2\MathMin2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin3.exe_7324]
+RelativePath=CoreMangLib\cti\system\math\MathMin3\MathMin3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin4.exe_7325]
+RelativePath=CoreMangLib\cti\system\math\MathMin4\MathMin4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin5.exe_7326]
+RelativePath=CoreMangLib\cti\system\math\MathMin5\MathMin5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin6.exe_7327]
+RelativePath=CoreMangLib\cti\system\math\MathMin6\MathMin6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin7.exe_7328]
+RelativePath=CoreMangLib\cti\system\math\MathMin7\MathMin7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin8.exe_7329]
+RelativePath=CoreMangLib\cti\system\math\MathMin8\MathMin8.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathMin9.exe_7330]
+RelativePath=CoreMangLib\cti\system\math\MathMin9\MathMin9.exe
+WorkingDir=CoreMangLib\cti\system\math\MathMin9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathPI.exe_7331]
+RelativePath=CoreMangLib\cti\system\math\MathPI\MathPI.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathPow.exe_7332]
+RelativePath=CoreMangLib\cti\system\math\MathPow\MathPow.exe
+WorkingDir=CoreMangLib\cti\system\math\MathPow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[mathRound1.exe_7333]
+RelativePath=CoreMangLib\cti\system\math\mathRound1\mathRound1.exe
+WorkingDir=CoreMangLib\cti\system\math\mathRound1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathRound2.exe_7334]
+RelativePath=CoreMangLib\cti\system\math\MathRound2\MathRound2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathRound3.exe_7335]
+RelativePath=CoreMangLib\cti\system\math\MathRound3\MathRound3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathRound4.exe_7336]
+RelativePath=CoreMangLib\cti\system\math\MathRound4\MathRound4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathRound4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign1.exe_7337]
+RelativePath=CoreMangLib\cti\system\math\MathSign1\MathSign1.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign2.exe_7338]
+RelativePath=CoreMangLib\cti\system\math\MathSign2\MathSign2.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign3.exe_7339]
+RelativePath=CoreMangLib\cti\system\math\MathSign3\MathSign3.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign4.exe_7340]
+RelativePath=CoreMangLib\cti\system\math\MathSign4\MathSign4.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign5.exe_7341]
+RelativePath=CoreMangLib\cti\system\math\MathSign5\MathSign5.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign6.exe_7342]
+RelativePath=CoreMangLib\cti\system\math\MathSign6\MathSign6.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSign7.exe_7343]
+RelativePath=CoreMangLib\cti\system\math\MathSign7\MathSign7.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSign7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSin.exe_7344]
+RelativePath=CoreMangLib\cti\system\math\MathSin\MathSin.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSinh.exe_7345]
+RelativePath=CoreMangLib\cti\system\math\MathSinh\MathSinh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSinh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathSqrt.exe_7346]
+RelativePath=CoreMangLib\cti\system\math\MathSqrt\MathSqrt.exe
+WorkingDir=CoreMangLib\cti\system\math\MathSqrt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathTan.exe_7347]
+RelativePath=CoreMangLib\cti\system\math\MathTan\MathTan.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTan
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MathTanh.exe_7348]
+RelativePath=CoreMangLib\cti\system\math\MathTanh\MathTanh.exe
+WorkingDir=CoreMangLib\cti\system\math\MathTanh
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemberAccessExceptionCtor1.exe_7349]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1\MemberAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemberAccessExceptionCtor2.exe_7350]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2\MemberAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MemberAccessExceptionCtor3.exe_7351]
+RelativePath=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3\MemberAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\memberaccessexception\MemberAccessExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAccessExceptionCtor1.exe_7352]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1\MethodAccessExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAccessExceptionCtor2.exe_7353]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2\MethodAccessExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAccessExceptionCtor3.exe_7354]
+RelativePath=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3\MethodAccessExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\methodaccessexception\MethodAccessExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingFieldExceptionCtor1.exe_7355]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1\MissingFieldExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingFieldExceptionCtor2.exe_7356]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2\MissingFieldExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingFieldExceptionCtor3.exe_7357]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3\MissingFieldExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingFieldExceptionMessage.exe_7358]
+RelativePath=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage\MissingFieldExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingfieldexception\MissingFieldExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMemberExceptionCtor1.exe_7359]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1\MissingMemberExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMemberExceptionCtor2.exe_7360]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2\MissingMemberExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMemberExceptionCtor3.exe_7361]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3\MissingMemberExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMemberExceptionMessage.exe_7362]
+RelativePath=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage\MissingMemberExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmemberexception\MissingMemberExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMethodExceptionCtor1.exe_7363]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1\MissingMethodExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMethodExceptionCtor2.exe_7364]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2\MissingMethodExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMethodExceptionCtor3.exe_7365]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3\MissingMethodExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingMethodExceptionMessage.exe_7366]
+RelativePath=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage\MissingMethodExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\missingmethodexception\MissingMethodExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MulticastDelegateCombineImpl.exe_7367]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl\MulticastDelegateCombineImpl.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateCombineImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MulticastDelegateEquals.exe_7368]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals\MulticastDelegateEquals.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MulticastDelegateGetHashCode.exe_7369]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode\MulticastDelegateGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MulticastDelegateGetInvocationList.exe_7370]
+RelativePath=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList\MulticastDelegateGetInvocationList.exe
+WorkingDir=CoreMangLib\cti\system\multicastdelegate\MulticastDelegateGetInvocationList
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotImplementedExceptionCtor1.exe_7371]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1\NotImplementedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotImplementedExceptionCtor2.exe_7372]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2\NotImplementedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotImplementedExceptionCtor3.exe_7373]
+RelativePath=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3\NotImplementedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notimplementedexception\NotImplementedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotSupportedExceptionCtor1.exe_7374]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1\NotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotSupportedExceptionCtor2.exe_7375]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2\NotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NotSupportedExceptionCtor3.exe_7376]
+RelativePath=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3\NotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\notsupportedexception\NotSupportedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableCompare.exe_7377]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCompare\NullableCompare.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCompare
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableCtor.exe_7378]
+RelativePath=CoreMangLib\cti\system\nullable\NullableCtor\NullableCtor.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableEquals.exe_7379]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals\NullableEquals.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableEquals2.exe_7380]
+RelativePath=CoreMangLib\cti\system\nullable\NullableEquals2\NullableEquals2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableGetHashCode.exe_7381]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetHashCode\NullableGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableGetUnderlyingType.exe_7382]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType\NullableGetUnderlyingType.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetUnderlyingType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableGetValueOrDefault1.exe_7383]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1\NullableGetValueOrDefault1.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableGetValueOrDefault2.exe_7384]
+RelativePath=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2\NullableGetValueOrDefault2.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableGetValueOrDefault2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableHasValue.exe_7385]
+RelativePath=CoreMangLib\cti\system\nullable\NullableHasValue\NullableHasValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableHasValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableToString.exe_7386]
+RelativePath=CoreMangLib\cti\system\nullable\NullableToString\NullableToString.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullableValue.exe_7387]
+RelativePath=CoreMangLib\cti\system\nullable\NullableValue\NullableValue.exe
+WorkingDir=CoreMangLib\cti\system\nullable\NullableValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NullReferenceExceptionCtor1.exe_7388]
+RelativePath=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1\NullReferenceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\nullreferenceexception\NullReferenceExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectCtor.exe_7389]
+RelativePath=CoreMangLib\cti\system\object\ObjectCtor\ObjectCtor.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectEquals1.exe_7390]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals1\ObjectEquals1.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectEquals2.exe_7391]
+RelativePath=CoreMangLib\cti\system\object\ObjectEquals2\ObjectEquals2.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectFinalize.exe_7392]
+RelativePath=CoreMangLib\cti\system\object\ObjectFinalize\ObjectFinalize.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectFinalize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectGetHashCode.exe_7393]
+RelativePath=CoreMangLib\cti\system\object\ObjectGetHashCode\ObjectGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectMemberwiseClone.exe_7394]
+RelativePath=CoreMangLib\cti\system\object\ObjectMemberwiseClone\ObjectMemberwiseClone.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectMemberwiseClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectReferenceEquals.exe_7395]
+RelativePath=CoreMangLib\cti\system\object\ObjectReferenceEquals\ObjectReferenceEquals.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectReferenceEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectToString.exe_7396]
+RelativePath=CoreMangLib\cti\system\object\ObjectToString\ObjectToString.exe
+WorkingDir=CoreMangLib\cti\system\object\ObjectToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectDisposedExceptionMessage.exe_7397]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage\ObjectDisposedExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObjectDisposedExceptionObjectName.exe_7398]
+RelativePath=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName\ObjectDisposedExceptionObjectName.exe
+WorkingDir=CoreMangLib\cti\system\objectdisposedexception\ObjectDisposedExceptionObjectName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObsoleteAttributeCtor1.exe_7399]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1\ObsoleteAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObsoleteAttributeCtor2.exe_7400]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2\ObsoleteAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObsoleteAttributeCtor3.exe_7401]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3\ObsoleteAttributeCtor3.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObsoleteAttributeIsError.exe_7402]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError\ObsoleteAttributeIsError.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeIsError
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ObsoleteAttributeMessage.exe_7403]
+RelativePath=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage\ObsoleteAttributeMessage.exe
+WorkingDir=CoreMangLib\cti\system\obsoleteattribute\ObsoleteAttributeMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OutOfMemoryExceptionCtor1.exe_7404]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1\OutOfMemoryExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OutOfMemoryExceptionCtor2.exe_7405]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2\OutOfMemoryExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OutOfMemoryExceptionCtor3.exe_7406]
+RelativePath=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3\OutOfMemoryExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\outofmemoryexception\OutOfMemoryExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OverflowExceptionCtor1.exe_7407]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1\OverflowExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OverflowExceptionCtor2.exe_7408]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2\OverflowExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OverflowExceptionCtor3.exe_7409]
+RelativePath=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3\OverflowExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\overflowexception\OverflowExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParamArrayAttributeCtor.exe_7410]
+RelativePath=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor\ParamArrayAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\paramarrayattribute\ParamArrayAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor1.exe_7411]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1\PlatformNotSupportedExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor2.exe_7412]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2\PlatformNotSupportedExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PlatformNotSupportedExceptionCtor3.exe_7413]
+RelativePath=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3\PlatformNotSupportedExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\platformnotsupportedexception\PlatformNotSupportedExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PredicateBeginInvoke.exe_7414]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateBeginInvoke\PredicateBeginInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateBeginInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PredicateEndInvoke.exe_7415]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateEndInvoke\PredicateEndInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateEndInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PredicateInvoke.exe_7416]
+RelativePath=CoreMangLib\cti\system\predicate\PredicateInvoke\PredicateInvoke.exe
+WorkingDir=CoreMangLib\cti\system\predicate\PredicateInvoke
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomCtor1.exe_7417]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor1\RandomCtor1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomCtor2.exe_7418]
+RelativePath=CoreMangLib\cti\system\random\RandomCtor2\RandomCtor2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomNext1.exe_7419]
+RelativePath=CoreMangLib\cti\system\random\RandomNext1\RandomNext1.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomNext2.exe_7420]
+RelativePath=CoreMangLib\cti\system\random\RandomNext2\RandomNext2.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomNext3.exe_7421]
+RelativePath=CoreMangLib\cti\system\random\RandomNext3\RandomNext3.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNext3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomNextBytes.exe_7422]
+RelativePath=CoreMangLib\cti\system\random\RandomNextBytes\RandomNextBytes.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextBytes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomNextDouble.exe_7423]
+RelativePath=CoreMangLib\cti\system\random\RandomNextDouble\RandomNextDouble.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomNextDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RandomSample.exe_7424]
+RelativePath=CoreMangLib\cti\system\random\RandomSample\RandomSample.exe
+WorkingDir=CoreMangLib\cti\system\random\RandomSample
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RankExceptionCtor1.exe_7425]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor1\RankExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RankExceptionCtor2.exe_7426]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor2\RankExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RankExceptionCtor3.exe_7427]
+RelativePath=CoreMangLib\cti\system\rankexception\RankExceptionCtor3\RankExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\rankexception\RankExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AmbiguousMatchExceptionCtor1.exe_7428]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1\AmbiguousMatchExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AmbiguousMatchExceptionCtor2.exe_7429]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2\AmbiguousMatchExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AmbiguousMatchExceptionCtor3.exe_7430]
+RelativePath=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3\AmbiguousMatchExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\ambiguousmatchexception\AmbiguousMatchExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyConfigurationAttributeConfiguration.exe_7431]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration\AssemblyConfigurationAttributeConfiguration.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeConfiguration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyConfigurationAttributeCtor.exe_7432]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor\AssemblyConfigurationAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyconfigurationattribute\AssemblyConfigurationAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDefaultAliasAttributeCtor.exe_7433]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor\AssemblyDefaultAliasAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDefaultAliasAttributeDefaultAlias.exe_7434]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias\AssemblyDefaultAliasAttributeDefaultAlias.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydefaultaliasattribute\AssemblyDefaultAliasAttributeDefaultAlias
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDelaySignAttributeCtor.exe_7435]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor\AssemblyDelaySignAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDelaySignAttributeDelaySign.exe_7436]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign\AssemblyDelaySignAttributeDelaySign.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydelaysignattribute\AssemblyDelaySignAttributeDelaySign
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDescriptionAttributeCtor.exe_7437]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor\AssemblyDescriptionAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyDescriptionAttributeDescription.exe_7438]
+RelativePath=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription\AssemblyDescriptionAttributeDescription.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblydescriptionattribute\AssemblyDescriptionAttributeDescription
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyKeyFileAttributeCtor.exe_7439]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor\AssemblyKeyFileAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyKeyFileAttributeKeyFile.exe_7440]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile\AssemblyKeyFileAttributeKeyFile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeyfileattribute\AssemblyKeyFileAttributeKeyFile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyKeyNameAttributeCtor.exe_7441]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor\AssemblyKeyNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyKeyNameAttributeKeyName.exe_7442]
+RelativePath=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName\AssemblyKeyNameAttributeKeyName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblykeynameattribute\AssemblyKeyNameAttributeKeyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameGetPublicKey.exe_7443]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey\AssemblyNameGetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameGetPublicKeyToken.exe_7444]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken\AssemblyNameGetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameGetPublicKeyToken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameSetPublicKey.exe_7445]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey\AssemblyNameSetPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameSetPublicKeyToken.exe_7446]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken\AssemblyNameSetPublicKeyToken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameSetPublicKeyToken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameVersion.exe_7447]
+RelativePath=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion\AssemblyNameVersion.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblyname\AssemblyNameVersion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameFlagsNone.exe_7448]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone\AssemblyNameFlagsNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameFlagsPublicKey.exe_7449]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey\AssemblyNameFlagsPublicKey.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsPublicKey
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyNameFlagsRetargetable.exe_7450]
+RelativePath=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable\AssemblyNameFlagsRetargetable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblynameflags\AssemblyNameFlagsRetargetable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyTitleAttributeCtor.exe_7451]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor\AssemblyTitleAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyTitleAttributeTitle.exe_7452]
+RelativePath=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle\AssemblyTitleAttributeTitle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\assemblytitleattribute\AssemblyTitleAttributeTitle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionsAny.exe_7453]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny\CallingConventionsAny.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsAny
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionsExplicitThis.exe_7454]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis\CallingConventionsExplicitThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsExplicitThis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionsHasThis.exe_7455]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis\CallingConventionsHasThis.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsHasThis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionsStandard.exe_7456]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard\CallingConventionsStandard.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsStandard
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionsVarArgs.exe_7457]
+RelativePath=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs\CallingConventionsVarArgs.exe
+WorkingDir=CoreMangLib\cti\system\reflection\callingconventions\CallingConventionsVarArgs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructorInfoConstructorName.exe_7458]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName\ConstructorInfoConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoConstructorName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ConstructorInfoTypeConstructorName.exe_7459]
+RelativePath=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName\ConstructorInfoTypeConstructorName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\constructorinfo\ConstructorInfoTypeConstructorName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DefaultMemberAttributeCtor.exe_7460]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor\DefaultMemberAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DefaultMemberAttributeMemberName.exe_7461]
+RelativePath=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName\DefaultMemberAttributeMemberName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\defaultmemberattribute\DefaultMemberAttributeMemberName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlBranch.exe_7462]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch\FlowControlBranch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlBranch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlCall.exe_7463]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall\FlowControlCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlCond_Branch.exe_7464]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch\FlowControlCond_Branch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlCond_Branch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlMeta.exe_7465]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta\FlowControlMeta.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlMeta
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlNext.exe_7466]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext\FlowControlNext.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlNext
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlReturn.exe_7467]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn\FlowControlReturn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlReturn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FlowControlThrow.exe_7468]
+RelativePath=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow\FlowControlThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\flowcontrol\FlowControlThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeEquals1.exe_7469]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1\OpCodeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeEquals2.exe_7470]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2\OpCodeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeFlowControl.exe_7471]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl\OpCodeFlowControl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeFlowControl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeGetHashCode.exe_7472]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode\OpCodeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeName.exe_7473]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName\OpCodeName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeOpCodeType.exe_7474]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType\OpCodeOpCodeType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOpCodeType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeOperandType.exe_7475]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType\OpCodeOperandType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeOperandType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesAdd_Ovf.exe_7476]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf\OpCodesAdd_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesAdd_Ovf_Un.exe_7477]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un\OpCodesAdd_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAdd_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesAnd.exe_7478]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd\OpCodesAnd.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesAnd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesArglist.exe_7479]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist\OpCodesArglist.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesArglist
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBeq.exe_7480]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq\OpCodesBeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBeq_S.exe_7481]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S\OpCodesBeq_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBeq_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBge.exe_7482]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge\OpCodesBge.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBge_S.exe_7483]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S\OpCodesBge_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBge_Un.exe_7484]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un\OpCodesBge_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBge_Un_S.exe_7485]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S\OpCodesBge_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBge_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBgt.exe_7486]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt\OpCodesBgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBgt_S.exe_7487]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S\OpCodesBgt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBgt_Un.exe_7488]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un\OpCodesBgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBgt_Un_S.exe_7489]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S\OpCodesBgt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBgt_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBle.exe_7490]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle\OpCodesBle.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBle_S.exe_7491]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S\OpCodesBle_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBle_Un.exe_7492]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un\OpCodesBle_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBle_Un_S.exe_7493]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S\OpCodesBle_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBle_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBlt.exe_7494]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt\OpCodesBlt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBlt_S.exe_7495]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S\OpCodesBlt_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBlt_Un.exe_7496]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un\OpCodesBlt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBlt_Un_S.exe_7497]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S\OpCodesBlt_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBlt_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBne_Un.exe_7498]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un\OpCodesBne_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBne_Un_S.exe_7499]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S\OpCodesBne_Un_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBne_Un_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBox.exe_7500]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox\OpCodesBox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBr.exe_7501]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr\OpCodesBr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBreak.exe_7502]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak\OpCodesBreak.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBreak
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBrfalse.exe_7503]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse\OpCodesBrfalse.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBrfalse_S.exe_7504]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S\OpCodesBrfalse_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrfalse_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBrtrue.exe_7505]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue\OpCodesBrtrue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBrtrue_S.exe_7506]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S\OpCodesBrtrue_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBrtrue_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesBr_S.exe_7507]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S\OpCodesBr_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesBr_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCall.exe_7508]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall\OpCodesCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCalli.exe_7509]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli\OpCodesCalli.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCalli
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCallvirt.exe_7510]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt\OpCodesCallvirt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCallvirt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCastclass.exe_7511]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass\OpCodesCastclass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCastclass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCeq.exe_7512]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq\OpCodesCeq.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCeq
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCgt.exe_7513]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt\OpCodesCgt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCgt_Un.exe_7514]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un\OpCodesCgt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCgt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCkfinite.exe_7515]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite\OpCodesCkfinite.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCkfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesClt.exe_7516]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt\OpCodesClt.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesClt_Un.exe_7517]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un\OpCodesClt_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesClt_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConstrained.exe_7518]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained\OpCodesConstrained.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConstrained
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_I.exe_7519]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I\OpCodesConv_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_I1.exe_7520]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1\OpCodesConv_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_I2.exe_7521]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2\OpCodesConv_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_I4.exe_7522]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4\OpCodesConv_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_I8.exe_7523]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8\OpCodesConv_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I.exe_7524]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I\OpCodesConv_Ovf_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I1.exe_7525]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1\OpCodesConv_Ovf_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I1_Un.exe_7526]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un\OpCodesConv_Ovf_I1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I1_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I2.exe_7527]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2\OpCodesConv_Ovf_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I2_Un.exe_7528]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un\OpCodesConv_Ovf_I2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I2_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I4.exe_7529]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4\OpCodesConv_Ovf_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I4_Un.exe_7530]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un\OpCodesConv_Ovf_I4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I4_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I8.exe_7531]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8\OpCodesConv_Ovf_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I8_Un.exe_7532]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un\OpCodesConv_Ovf_I8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I8_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_I_Un.exe_7533]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un\OpCodesConv_Ovf_I_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_I_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U.exe_7534]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U\OpCodesConv_Ovf_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U1.exe_7535]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1\OpCodesConv_Ovf_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U1_Un.exe_7536]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un\OpCodesConv_Ovf_U1_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U1_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U2.exe_7537]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2\OpCodesConv_Ovf_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U2_Un.exe_7538]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un\OpCodesConv_Ovf_U2_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U2_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U4.exe_7539]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4\OpCodesConv_Ovf_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U4_Un.exe_7540]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un\OpCodesConv_Ovf_U4_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U4_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U8.exe_7541]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8\OpCodesConv_Ovf_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U8_Un.exe_7542]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un\OpCodesConv_Ovf_U8_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U8_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_Ovf_U_Un.exe_7543]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un\OpCodesConv_Ovf_U_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_Ovf_U_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_R4.exe_7544]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4\OpCodesConv_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_R8.exe_7545]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8\OpCodesConv_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_R_Un.exe_7546]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un\OpCodesConv_R_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_R_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_U.exe_7547]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U\OpCodesConv_U.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_U1.exe_7548]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1\OpCodesConv_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_U2.exe_7549]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2\OpCodesConv_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_U4.exe_7550]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4\OpCodesConv_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesConv_U8.exe_7551]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8\OpCodesConv_U8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesConv_U8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCpblk.exe_7552]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk\OpCodesCpblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesCpobj.exe_7553]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj\OpCodesCpobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesCpobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesDiv.exe_7554]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv\OpCodesDiv.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesDiv_Un.exe_7555]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un\OpCodesDiv_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDiv_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesDup.exe_7556]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup\OpCodesDup.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesDup
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesEndfilter.exe_7557]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter\OpCodesEndfilter.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfilter
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesEndfinally.exe_7558]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally\OpCodesEndfinally.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesEndfinally
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesInitblk.exe_7559]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk\OpCodesInitblk.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitblk
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesInitobj.exe_7560]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj\OpCodesInitobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesInitobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesIsinst.exe_7561]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst\OpCodesIsinst.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesIsinst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeSize.exe_7562]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize\OpCodeSize.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesJmp.exe_7563]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp\OpCodesJmp.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesJmp
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg.exe_7564]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg\OpCodesLdarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarga.exe_7565]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga\OpCodesLdarga.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarga_S.exe_7566]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S\OpCodesLdarga_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarga_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg_0.exe_7567]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0\OpCodesLdarg_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg_1.exe_7568]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1\OpCodesLdarg_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg_2.exe_7569]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2\OpCodesLdarg_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg_3.exe_7570]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3\OpCodesLdarg_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdarg_S.exe_7571]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S\OpCodesLdarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdarg_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4.exe_7572]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4\OpCodesLdc_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_0.exe_7573]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0\OpCodesLdc_I4_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_1.exe_7574]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1\OpCodesLdc_I4_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_2.exe_7575]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2\OpCodesLdc_I4_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_3.exe_7576]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3\OpCodesLdc_I4_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_4.exe_7577]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4\OpCodesLdc_I4_4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_5.exe_7578]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5\OpCodesLdc_I4_5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_6.exe_7579]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6\OpCodesLdc_I4_6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_7.exe_7580]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7\OpCodesLdc_I4_7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_8.exe_7581]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8\OpCodesLdc_I4_8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_M1.exe_7582]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1\OpCodesLdc_I4_M1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_M1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I4_S.exe_7583]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S\OpCodesLdc_I4_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I4_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_I8.exe_7584]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8\OpCodesLdc_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_R4.exe_7585]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4\OpCodesLdc_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdc_R8.exe_7586]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8\OpCodesLdc_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdc_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem.exe_7587]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem\OpCodesLdelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelema.exe_7588]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema\OpCodesLdelema.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelema
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_I.exe_7589]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I\OpCodesLdelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_I1.exe_7590]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1\OpCodesLdelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_I2.exe_7591]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2\OpCodesLdelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_I4.exe_7592]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4\OpCodesLdelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_I8.exe_7593]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8\OpCodesLdelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_R4.exe_7594]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4\OpCodesLdelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_R8.exe_7595]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8\OpCodesLdelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_Ref.exe_7596]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref\OpCodesLdelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_U1.exe_7597]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1\OpCodesLdelem_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_U2.exe_7598]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2\OpCodesLdelem_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdelem_U4.exe_7599]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4\OpCodesLdelem_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdelem_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdfld.exe_7600]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld\OpCodesLdfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdflda.exe_7601]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda\OpCodesLdflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdflda
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdftn.exe_7602]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn\OpCodesLdftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_I.exe_7603]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I\OpCodesLdind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_I1.exe_7604]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1\OpCodesLdind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_I2.exe_7605]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2\OpCodesLdind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_I4.exe_7606]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4\OpCodesLdind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_I8.exe_7607]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8\OpCodesLdind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_R4.exe_7608]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4\OpCodesLdind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_R8.exe_7609]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8\OpCodesLdind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_Ref.exe_7610]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref\OpCodesLdind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_U1.exe_7611]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1\OpCodesLdind_U1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_U2.exe_7612]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2\OpCodesLdind_U2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdind_U4.exe_7613]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4\OpCodesLdind_U4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdind_U4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdlen.exe_7614]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen\OpCodesLdlen.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdlen
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc.exe_7615]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc\OpCodesLdloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloca.exe_7616]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca\OpCodesLdloca.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloca_S.exe_7617]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S\OpCodesLdloca_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloca_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc_0.exe_7618]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0\OpCodesLdloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc_1.exe_7619]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1\OpCodesLdloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc_2.exe_7620]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2\OpCodesLdloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc_3.exe_7621]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3\OpCodesLdloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdloc_S.exe_7622]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S\OpCodesLdloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdloc_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdnull.exe_7623]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull\OpCodesLdnull.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdnull
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdobj.exe_7624]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj\OpCodesLdobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdsfld.exe_7625]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld\OpCodesLdsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdsflda.exe_7626]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda\OpCodesLdsflda.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdsflda
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdstr.exe_7627]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr\OpCodesLdstr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdstr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdtoken.exe_7628]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken\OpCodesLdtoken.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdtoken
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLdvirtftn.exe_7629]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn\OpCodesLdvirtftn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLdvirtftn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLeave.exe_7630]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave\OpCodesLeave.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLeave_S.exe_7631]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S\OpCodesLeave_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLeave_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesLocalloc.exe_7632]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc\OpCodesLocalloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesLocalloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesMkrefany.exe_7633]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany\OpCodesMkrefany.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMkrefany
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesMul.exe_7634]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul\OpCodesMul.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesMul_Ovf.exe_7635]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf\OpCodesMul_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesMul_Ovf_Un.exe_7636]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un\OpCodesMul_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesMul_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesNeg.exe_7637]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg\OpCodesNeg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNeg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesNewarr.exe_7638]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr\OpCodesNewarr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewarr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesNewobj.exe_7639]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj\OpCodesNewobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNewobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesNop.exe_7640]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop\OpCodesNop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesNot.exe_7641]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot\OpCodesNot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesNot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesOr.exe_7642]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr\OpCodesOr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesOr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPop.exe_7643]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop\OpCodesPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix1.exe_7644]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1\OpCodesPrefix1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix2.exe_7645]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2\OpCodesPrefix2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix3.exe_7646]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3\OpCodesPrefix3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix4.exe_7647]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4\OpCodesPrefix4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix5.exe_7648]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5\OpCodesPrefix5.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix6.exe_7649]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6\OpCodesPrefix6.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefix7.exe_7650]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7\OpCodesPrefix7.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefix7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesPrefixref.exe_7651]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref\OpCodesPrefixref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesPrefixref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesReadonly.exe_7652]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly\OpCodesReadonly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesReadonly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRefanytype.exe_7653]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype\OpCodesRefanytype.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanytype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRefanyval.exe_7654]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval\OpCodesRefanyval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRefanyval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRem.exe_7655]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem\OpCodesRem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRem_Un.exe_7656]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un\OpCodesRem_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRem_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRet.exe_7657]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet\OpCodesRet.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesRethrow.exe_7658]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow\OpCodesRethrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesRethrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesShl.exe_7659]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl\OpCodesShl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesShr.exe_7660]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr\OpCodesShr.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesShr_Un.exe_7661]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un\OpCodesShr_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesShr_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesSizeof.exe_7662]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof\OpCodesSizeof.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSizeof
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStarg.exe_7663]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg\OpCodesStarg.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStarg_S.exe_7664]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S\OpCodesStarg_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStarg_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem.exe_7665]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem\OpCodesStelem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_I.exe_7666]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I\OpCodesStelem_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_I1.exe_7667]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1\OpCodesStelem_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_I2.exe_7668]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2\OpCodesStelem_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_I4.exe_7669]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4\OpCodesStelem_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_I8.exe_7670]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8\OpCodesStelem_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_R4.exe_7671]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4\OpCodesStelem_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_R8.exe_7672]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8\OpCodesStelem_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStelem_Ref.exe_7673]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref\OpCodesStelem_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStelem_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStfld.exe_7674]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld\OpCodesStfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_I.exe_7675]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I\OpCodesStind_I.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_I1.exe_7676]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1\OpCodesStind_I1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_I2.exe_7677]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2\OpCodesStind_I2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_I4.exe_7678]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4\OpCodesStind_I4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_I8.exe_7679]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8\OpCodesStind_I8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_I8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_R4.exe_7680]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4\OpCodesStind_R4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_R8.exe_7681]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8\OpCodesStind_R8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_R8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStind_Ref.exe_7682]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref\OpCodesStind_Ref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStind_Ref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc.exe_7683]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc\OpCodesStloc.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc_0.exe_7684]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0\OpCodesStloc_0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc_1.exe_7685]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1\OpCodesStloc_1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc_2.exe_7686]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2\OpCodesStloc_2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc_3.exe_7687]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3\OpCodesStloc_3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStloc_S.exe_7688]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S\OpCodesStloc_S.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStloc_S
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStobj.exe_7689]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj\OpCodesStobj.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStobj
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesStsfld.exe_7690]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld\OpCodesStsfld.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesStsfld
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesSub.exe_7691]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub\OpCodesSub.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesSub_Ovf.exe_7692]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf\OpCodesSub_Ovf.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesSub_Ovf_Un.exe_7693]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un\OpCodesSub_Ovf_Un.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSub_Ovf_Un
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesSwitch.exe_7694]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch\OpCodesSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesSwitch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeStackBehaviourPop.exe_7695]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop\OpCodeStackBehaviourPop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeStackBehaviourPush.exe_7696]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush\OpCodeStackBehaviourPush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeStackBehaviourPush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesTailcall.exe_7697]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall\OpCodesTailcall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTailcall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesTakesSingleByteArgument.exe_7698]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument\OpCodesTakesSingleByteArgument.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesTakesSingleByteArgument
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesThrow.exe_7699]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow\OpCodesThrow.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesThrow
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesUnaligned.exe_7700]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned\OpCodesUnaligned.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnaligned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesUnbox.exe_7701]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox\OpCodesUnbox.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesUnbox_Any.exe_7702]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any\OpCodesUnbox_Any.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesUnbox_Any
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesVolatile.exe_7703]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile\OpCodesVolatile.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesVolatile
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodesXor.exe_7704]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor\OpCodesXor.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodesXor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeToString.exe_7705]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString\OpCodeToString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeValue.exe_7706]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue\OpCodeValue.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodes\OpCodeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeTypeMacro.exe_7707]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro\OpCodeTypeMacro.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeMacro
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeTypeNternal.exe_7708]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal\OpCodeTypeNternal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeNternal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeTypeObjmodel.exe_7709]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel\OpCodeTypeObjmodel.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypeObjmodel
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeTypePrefix.exe_7710]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix\OpCodeTypePrefix.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrefix
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OpCodeTypePrimitive.exe_7711]
+RelativePath=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive\OpCodeTypePrimitive.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\opcodetype\OpCodeTypePrimitive
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineBrTarget.exe_7712]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget\OperandTypeInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineBrTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineField.exe_7713]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField\OperandTypeInlineField.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineField
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineI.exe_7714]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI\OperandTypeInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineI8.exe_7715]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8\OperandTypeInlineI8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineI8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineMethod.exe_7716]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod\OperandTypeInlineMethod.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineMethod
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineNone.exe_7717]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone\OperandTypeInlineNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineR.exe_7718]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR\OperandTypeInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineSig.exe_7719]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig\OperandTypeInlineSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineString.exe_7720]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString\OperandTypeInlineString.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineSwitch.exe_7721]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch\OperandTypeInlineSwitch.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineSwitch
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineTok.exe_7722]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok\OperandTypeInlineTok.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineTok
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineType.exe_7723]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType\OperandTypeInlineType.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeInlineVar.exe_7724]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar\OperandTypeInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeInlineVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeShortInlineBrTarget.exe_7725]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget\OperandTypeShortInlineBrTarget.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineBrTarget
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeShortInlineI.exe_7726]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI\OperandTypeShortInlineI.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineI
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeShortInlineR.exe_7727]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR\OperandTypeShortInlineR.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineR
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OperandTypeShortInlineVar.exe_7728]
+RelativePath=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar\OperandTypeShortInlineVar.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\operandtype\OperandTypeShortInlineVar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSize16.exe_7729]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16\PackingSize16.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSize2.exe_7730]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2\PackingSize2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSize4.exe_7731]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4\PackingSize4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSize4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeSize1.exe_7732]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1\PackingSizeSize1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeSize128.exe_7733]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128\PackingSizeSize128.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize128
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeSize32.exe_7734]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32\PackingSizeSize32.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeSize64.exe_7735]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64\PackingSizeSize64.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeSize8.exe_7736]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8\PackingSizeSize8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeSize8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PackingSizeUnspecified.exe_7737]
+RelativePath=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified\PackingSizeUnspecified.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\packingsize\PackingSizeUnspecified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPop0.exe_7738]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0\StackBehaviourPop0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPop1.exe_7739]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1\StackBehaviourPop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPop1_pop1.exe_7740]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1\StackBehaviourPop1_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPop1_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi.exe_7741]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi\StackBehaviourPopi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_pop1.exe_7742]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1\StackBehaviourPopi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_popi.exe_7743]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi\StackBehaviourPopi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_popi8.exe_7744]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8\StackBehaviourPopi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_popi_popi.exe_7745]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi\StackBehaviourPopi_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_popr4.exe_7746]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4\StackBehaviourPopi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopi_popr8.exe_7747]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8\StackBehaviourPopi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopi_popr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref.exe_7748]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref\StackBehaviourPopref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_pop1.exe_7749]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1\StackBehaviourPopref_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi.exe_7750]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi\StackBehaviourPopref_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_pop1.exe_7751]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1\StackBehaviourPopref_popi_pop1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_pop1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_popi.exe_7752]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi\StackBehaviourPopref_popi_popi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_popi8.exe_7753]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8\StackBehaviourPopref_popi_popi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_popr4.exe_7754]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4\StackBehaviourPopref_popi_popr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_popr8.exe_7755]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8\StackBehaviourPopref_popi_popr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPopref_popi_popref.exe_7756]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref\StackBehaviourPopref_popi_popref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPopref_popi_popref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPush0.exe_7757]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0\StackBehaviourPush0.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush0
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPush1.exe_7758]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1\StackBehaviourPush1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPush1_push1.exe_7759]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1\StackBehaviourPush1_push1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPush1_push1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPushi.exe_7760]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi\StackBehaviourPushi.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPushi8.exe_7761]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8\StackBehaviourPushi8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushi8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPushr4.exe_7762]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4\StackBehaviourPushr4.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPushr8.exe_7763]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8\StackBehaviourPushr8.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushr8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourPushref.exe_7764]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref\StackBehaviourPushref.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourPushref
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourVarpop.exe_7765]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop\StackBehaviourVarpop.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpop
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StackBehaviourVarpush.exe_7766]
+RelativePath=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush\StackBehaviourVarpush.exe
+WorkingDir=CoreMangLib\cti\system\reflection\emit\stackbehaviour\StackBehaviourVarpush
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventAttributesNone.exe_7767]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone\EventAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventAttributesRTSpecialName.exe_7768]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName\EventAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EventAttributesSpecialName.exe_7769]
+RelativePath=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName\EventAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\eventattributes\EventAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesAssembly.exe_7770]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly\FieldAttributesAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesFamANDAssem.exe_7771]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem\FieldAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesFamily.exe_7772]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily\FieldAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesFamORAssem.exe_7773]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem\FieldAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesFieldAccessMask.exe_7774]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask\FieldAttributesFieldAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesFieldAccessMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesHasDefault.exe_7775]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault\FieldAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesHasFieldRVA.exe_7776]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA\FieldAttributesHasFieldRVA.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesHasFieldRVA
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesInitOnly.exe_7777]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly\FieldAttributesInitOnly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesInitOnly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesLiteral.exe_7778]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral\FieldAttributesLiteral.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesLiteral
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesNotSerialized.exe_7779]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized\FieldAttributesNotSerialized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesNotSerialized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesPinvokeImpl.exe_7780]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl\FieldAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPinvokeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesPrivate.exe_7781]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate\FieldAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesPrivateScope.exe_7782]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope\FieldAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPrivateScope
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesPublic.exe_7783]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic\FieldAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesRTSpecialName.exe_7784]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName\FieldAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesSpecialName.exe_7785]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName\FieldAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldAttributesStatic.exe_7786]
+RelativePath=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic\FieldAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\fieldattributes\FieldAttributesStatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesAbstract.exe_7787]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract\MethodAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesAbstract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesFamANDAssem.exe_7788]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem\MethodAttributesFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesFamily.exe_7789]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily\MethodAttributesFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesFamORAssem.exe_7790]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem\MethodAttributesFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesFinal.exe_7791]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal\MethodAttributesFinal.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesFinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesHasSecurity.exe_7792]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity\MethodAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHasSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesHideBySig.exe_7793]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig\MethodAttributesHideBySig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesHideBySig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesMemberAccessMask.exe_7794]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask\MethodAttributesMemberAccessMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesMemberAccessMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesNewSlot.exe_7795]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot\MethodAttributesNewSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesNewSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesPinvokeImpl.exe_7796]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl\MethodAttributesPinvokeImpl.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPinvokeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesPrivate.exe_7797]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate\MethodAttributesPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesPrivateScope.exe_7798]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope\MethodAttributesPrivateScope.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPrivateScope
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesPublic.exe_7799]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic\MethodAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesRequireSecObject.exe_7800]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject\MethodAttributesRequireSecObject.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRequireSecObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesReuseSlot.exe_7801]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot\MethodAttributesReuseSlot.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesReuseSlot
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesRTSpecialName.exe_7802]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName\MethodAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesSpecialName.exe_7803]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName\MethodAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesStatic.exe_7804]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic\MethodAttributesStatic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesStatic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesUnmanagedExport.exe_7805]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport\MethodAttributesUnmanagedExport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesUnmanagedExport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesVirtual.exe_7806]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual\MethodAttributesVirtual.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVirtual
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodAttributesVtableLayoutMask.exe_7807]
+RelativePath=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask\MethodAttributesVtableLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodattributes\MethodAttributesVtableLayoutMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesCodeTypeMask.exe_7808]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask\MethodImplAttributesCodeTypeMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesCodeTypeMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesForwardRef.exe_7809]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef\MethodImplAttributesForwardRef.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesForwardRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesIL.exe_7810]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL\MethodImplAttributesIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesIL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesInternalCall.exe_7811]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall\MethodImplAttributesInternalCall.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesInternalCall
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesManaged.exe_7812]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged\MethodImplAttributesManaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManaged
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesManagedMask.exe_7813]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask\MethodImplAttributesManagedMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesManagedMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesNative.exe_7814]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative\MethodImplAttributesNative.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNative
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesNoInlining.exe_7815]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining\MethodImplAttributesNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesNoInlining
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesOPTIL.exe_7816]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL\MethodImplAttributesOPTIL.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesOPTIL
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesPreserveSig.exe_7817]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig\MethodImplAttributesPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesPreserveSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesRuntime.exe_7818]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime\MethodImplAttributesRuntime.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesRuntime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesSynchronized.exe_7819]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized\MethodImplAttributesSynchronized.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesSynchronized
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplAttributesUnmanaged.exe_7820]
+RelativePath=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged\MethodImplAttributesUnmanaged.exe
+WorkingDir=CoreMangLib\cti\system\reflection\methodimplattributes\MethodImplAttributesUnmanaged
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesHasDefault.exe_7821]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault\ParameterAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesIn.exe_7822]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn\ParameterAttributesIn.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesIn
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesNone.exe_7823]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone\ParameterAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesOptional.exe_7824]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional\ParameterAttributesOptional.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOptional
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesOut.exe_7825]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut\ParameterAttributesOut.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesOut
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ParameterAttributesRetval.exe_7826]
+RelativePath=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval\ParameterAttributesRetval.exe
+WorkingDir=CoreMangLib\cti\system\reflection\parameterattributes\ParameterAttributesRetval
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PropertyAttributesHasDefault.exe_7827]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault\PropertyAttributesHasDefault.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesHasDefault
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PropertyAttributesNone.exe_7828]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone\PropertyAttributesNone.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesNone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PropertyAttributesRTSpecialName.exe_7829]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName\PropertyAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PropertyAttributesSpecialName.exe_7830]
+RelativePath=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName\PropertyAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\propertyattributes\PropertyAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TargetInvocationExceptionCtor1.exe_7831]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1\TargetInvocationExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TargetInvocationExceptionCtor2.exe_7832]
+RelativePath=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2\TargetInvocationExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetinvocationexception\TargetInvocationExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TargetParameterCountExceptionCtor1.exe_7833]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1\TargetParameterCountExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TargetParameterCountExceptionCtor2.exe_7834]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2\TargetParameterCountExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TargetParameterCountExceptionCtor3.exe_7835]
+RelativePath=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3\TargetParameterCountExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\reflection\targetparametercountexception\TargetParameterCountExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesAbstract.exe_7836]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract\TypeAttributesAbstract.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAbstract
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesAnsiClass.exe_7837]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass\TypeAttributesAnsiClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAnsiClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesAutoClass.exe_7838]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass\TypeAttributesAutoClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesAutoLayout.exe_7839]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout\TypeAttributesAutoLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesAutoLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesBeforeFieldInit.exe_7840]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit\TypeAttributesBeforeFieldInit.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesBeforeFieldInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesClass.exe_7841]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass\TypeAttributesClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesClassSemanticsMask.exe_7842]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask\TypeAttributesClassSemanticsMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesClassSemanticsMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesExplicitLayout.exe_7843]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout\TypeAttributesExplicitLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesExplicitLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesHasSecurity.exe_7844]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity\TypeAttributesHasSecurity.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesHasSecurity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesImport.exe_7845]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport\TypeAttributesImport.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesImport
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesInterface.exe_7846]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface\TypeAttributesInterface.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesInterface
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesLayoutMask.exe_7847]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask\TypeAttributesLayoutMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesLayoutMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedAssembly.exe_7848]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly\TypeAttributesNestedAssembly.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedAssembly
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedFamANDAssem.exe_7849]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem\TypeAttributesNestedFamANDAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamANDAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedFamily.exe_7850]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily\TypeAttributesNestedFamily.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamily
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedFamORAssem.exe_7851]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem\TypeAttributesNestedFamORAssem.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedFamORAssem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedPrivate.exe_7852]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate\TypeAttributesNestedPrivate.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPrivate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesNestedPublic.exe_7853]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic\TypeAttributesNestedPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesNestedPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesPublic.exe_7854]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic\TypeAttributesPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesRTSpecialName.exe_7855]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName\TypeAttributesRTSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesRTSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesSealed.exe_7856]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed\TypeAttributesSealed.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSealed
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesSequentialLayout.exe_7857]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout\TypeAttributesSequentialLayout.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSequentialLayout
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesSerializable.exe_7858]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable\TypeAttributesSerializable.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSerializable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesSpecialName.exe_7859]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName\TypeAttributesSpecialName.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesSpecialName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesStringFormatMask.exe_7860]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask\TypeAttributesStringFormatMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesStringFormatMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesUnicodeClass.exe_7861]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass\TypeAttributesUnicodeClass.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesUnicodeClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttributesVisibilityMask.exe_7862]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask\TypeAttributesVisibilityMask.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttributesVisibilityMask
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeAttribytesNotPublic.exe_7863]
+RelativePath=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic\TypeAttribytesNotPublic.exe
+WorkingDir=CoreMangLib\cti\system\reflection\typeattributes\TypeAttribytesNotPublic
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingManifestResourceExceptionCtor1.exe_7864]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1\MissingManifestResourceExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingManifestResourceExceptionCtor2.exe_7865]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2\MissingManifestResourceExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MissingManifestResourceExceptionCtor3.exe_7866]
+RelativePath=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3\MissingManifestResourceExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\resources\missingmanifestresourceexception\MissingManifestResourceExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CultureName.exe_7867]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName\CultureName.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\CultureName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NeutralResourcesLanguageAttributeCtor.exe_7868]
+RelativePath=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor\NeutralResourcesLanguageAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\neutralresourceslanguageattribute\NeutralResourcesLanguageAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeCtor.exe_7869]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor\AttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeVersion.exe_7870]
+RelativePath=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion\AttributeVersion.exe
+WorkingDir=CoreMangLib\cti\system\resources\satellitecontractversionattribute\AttributeVersion
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ATPACtor.exe_7871]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor\ATPACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPACtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ATPAPropertyName.exe_7872]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName\ATPAPropertyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\accessedthroughpropertyattribute\ATPAPropertyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AttributeCtor1.exe_7873]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1\AttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilationrelaxations\AttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CompilerGeneratedAttributeCtor.exe_7874]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor\CompilerGeneratedAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\compilergeneratedattribute\CompilerGeneratedAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CustomConstantAttributector.exe_7875]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector\CustomConstantAttributector.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\customconstantattribute\CustomConstantAttributector
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IndexerNameAttributeCtor.exe_7876]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor\IndexerNameAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\indexernameattribute\IndexerNameAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IVTAAssemblyName.exe_7877]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName\IVTAAssemblyName.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTAAssemblyName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[IVTACtor.exe_7878]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor\IVTACtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\internalsvisibletoattribute\IVTACtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplOptionsNoInlining.exe_7879]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining\MethodImplOptionsNoInlining.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsNoInlining
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MethodImplOptionsPreserveSig.exe_7880]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig\MethodImplOptionsPreserveSig.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\methodimploptions\MethodImplOptionsPreserveSig
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RCAttrWrapNEThrows.exe_7881]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows\RCAttrWrapNEThrows.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RCAttrWrapNEThrows
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeCompatAttrCtor.exe_7882]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor\RuntimeCompatAttrCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimecompatibilityattribute\RuntimeCompatAttrCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GetHashCode.exe_7883]
+RelativePath=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode\GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\compilerservices\runtimehelpers\GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalConstantAttributeCtor.exe_7884]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor\DecimalConstantAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecimalConstantAttributeValue.exe_7885]
+RelativePath=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue\DecimalConstantAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\decimalconstantattribute\DecimalConstantAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FixedBufferAttributeCtor.exe_7886]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor\FixedBufferAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FixedBufferAttributeElementType.exe_7887]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType\FixedBufferAttributeElementType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeElementType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FixedBufferAttributeLength.exe_7888]
+RelativePath=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength\FixedBufferAttributeLength.exe
+WorkingDir=CoreMangLib\cti\system\runtime\fixedbufferattribute\FixedBufferAttributeLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CallingConventionWinapi.exe_7889]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi\CallingConventionWinapi.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\callingconvention\CallingConventionWinapi
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[CharSetUnicode.exe_7890]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode\CharSetUnicode.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\charset\CharSetUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldOffsetAttributeCtor.exe_7891]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor\FieldOffsetAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[FieldOffsetAttributeValue.exe_7892]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue\FieldOffsetAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\fieldoffsetattribute\FieldOffsetAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleAddrOfPinnedObject_PSC.exe_7893]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC\GCHandleAddrOfPinnedObject_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAddrOfPinnedObject_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleAlloc1_PSC.exe_7894]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC\GCHandleAlloc1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleAlloc1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleFree_PSC.exe_7895]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC\GCHandleFree_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleFree_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleTarget_PSC.exe_7896]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC\GCHandleTarget_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandle\GCHandleTarget_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleTypeNormal.exe_7897]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal\GCHandleTypeNormal.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeNormal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleTypePinned.exe_7898]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned\GCHandleTypePinned.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypePinned
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleTypeWeak.exe_7899]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak\GCHandleTypeWeak.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeak
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[GCHandleTypeWeakTrackResurrection.exe_7900]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection\GCHandleTypeWeakTrackResurrection.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\gchandletype\GCHandleTypeWeakTrackResurrection
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InAttributeCtor.exe_7901]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor\InAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\inattribute\InAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[LayoutKindAuto.exe_7902]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto\LayoutKindAuto.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindAuto
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[LayoutKindSequential.exe_7903]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential\LayoutKindSequential.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\layoutkind\LayoutKindSequential
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalSizeOf1_PSC.exe_7904]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC\MarshalSizeOf1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalSizeOf2_PSC.exe_7905]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC\MarshalSizeOf2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshal\MarshalSizeOf2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeArraySubType.exe_7906]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType\MarshalAsAttributeArraySubType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeArraySubType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeCtor1.exe_7907]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1\MarshalAsAttributeCtor1.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeCtor2.exe_7908]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2\MarshalAsAttributeCtor2.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeMarshalCookie.exe_7909]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie\MarshalAsAttributeMarshalCookie.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalCookie
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeMarshalType.exe_7910]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType\MarshalAsAttributeMarshalType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeMarshalTypeRef.exe_7911]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef\MarshalAsAttributeMarshalTypeRef.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeMarshalTypeRef
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeSizeConst.exe_7912]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst\MarshalAsAttributeSizeConst.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeConst
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeSizeParamIndex.exe_7913]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex\MarshalAsAttributeSizeParamIndex.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeSizeParamIndex
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[MarshalAsAttributeValue.exe_7914]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue\MarshalAsAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\marshalasattribute\MarshalAsAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[OutAttributeCtor.exe_7915]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor\OutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\outattribute\OutAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[PreserveSigAttributeCtor.exe_7916]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor\PreserveSigAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\preservesigattribute\PreserveSigAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleCtor_cti_PSC.exe_7917]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC\SafeHandleCtor_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleCtor_cti_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleDangerousAddRef_PSC.exe_7918]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC\SafeHandleDangerousAddRef_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousAddRef_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleDangerousGetHandle_PSC.exe_7919]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC\SafeHandleDangerousGetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousGetHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleDangerousRelease_PSC.exe_7920]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC\SafeHandleDangerousRelease_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDangerousRelease_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleDispose1_PSC.exe_7921]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC\SafeHandleDispose1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleDispose2_PSC.exe_7922]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC\SafeHandleDispose2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleDispose2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleHandle_PSC.exe_7923]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC\SafeHandleHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleIsClosed_PSC.exe_7924]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC\SafeHandleIsClosed_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsClosed_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleIsInvalid_PSC.exe_7925]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC\SafeHandleIsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleIsInvalid_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleSetHandleAsInvalid_PSC.exe_7926]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC\SafeHandleSetHandleAsInvalid_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandleAsInvalid_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SafeHandleSetHandle_PSC.exe_7927]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC\SafeHandleSetHandle_PSC.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\safehandle\SafeHandleSetHandle_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StructLayoutAttributeCharSet.exe_7928]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet\StructLayoutAttributeCharSet.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCharSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StructLayoutAttributeCtor.exe_7929]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor\StructLayoutAttributeCtor.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StructLayoutAttributePack.exe_7930]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack\StructLayoutAttributePack.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributePack
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StructLayoutAttributeSize.exe_7931]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize\StructLayoutAttributeSize.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StructLayoutAttributeValue.exe_7932]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue\StructLayoutAttributeValue.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\structlayoutattribute\StructLayoutAttributeValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnmanagedType.exe_7933]
+RelativePath=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType\UnmanagedType.exe
+WorkingDir=CoreMangLib\cti\system\runtime\interopservices\unmanagedtype\UnmanagedType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeFieldHandleEquals.exe_7934]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals\RuntimeFieldHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeFieldHandleGetHashCode.exe_7935]
+RelativePath=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode\RuntimeFieldHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimefieldhandle\RuntimeFieldHandleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeMethodHandleEquals.exe_7936]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals\RuntimeMethodHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeMethodHanldeGetHashCode.exe_7937]
+RelativePath=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode\RuntimeMethodHanldeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimemethodhandle\RuntimeMethodHanldeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeTypeHandleEquals.exe_7938]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals\RuntimeTypeHandleEquals.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[RuntimeTypeHandleGetHashCode.exe_7939]
+RelativePath=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode\RuntimeTypeHandleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\runtimetypehandle\RuntimeTypeHandleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteCompareTo2.exe_7940]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteCompareTo2\SByteCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteEquals1.exe_7941]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals1\SByteEquals1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteEquals2.exe_7942]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteEquals2\SByteEquals2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteGetHashCode.exe_7943]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteGetHashCode\SByteGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToBoolean.exe_7944]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean\SByteIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToByte.exe_7945]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte\SByteIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToChar.exe_7946]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar\SByteIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToDecimal.exe_7947]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal\SByteIConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToDouble.exe_7948]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble\SByteIConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToInt16.exe_7949]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16\SByteIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToInt32.exe_7950]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32\SByteIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToInt64.exe_7951]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64\SByteIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToUInt16.exe_7952]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16\SByteIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToUInt32.exe_7953]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32\SByteIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteIConvertibleToUInt64.exe_7954]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64\SByteIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteMaxValue.exe_7955]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMaxValue\SByteMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteMinValue.exe_7956]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteMinValue\SByteMinValue.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteParse1.exe_7957]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse1\SByteParse1.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteParse2.exe_7958]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse2\SByteParse2.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteParse3.exe_7959]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteParse3\SByteParse3.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteParse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SByteTryParse.exe_7960]
+RelativePath=CoreMangLib\cti\system\sbyte\SByteTryParse\SByteTryParse.exe
+WorkingDir=CoreMangLib\cti\system\sbyte\SByteTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SecurityExceptionCtor1.exe_7961]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1\SecurityExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SecurityExceptionCtor2.exe_7962]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2\SecurityExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SecurityExceptionCtor3.exe_7963]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3\SecurityExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SecurityExceptionToString.exe_7964]
+RelativePath=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString\SecurityExceptionToString.exe
+WorkingDir=CoreMangLib\cti\system\security\securityexception\SecurityExceptionToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleEpsilon.exe_7965]
+RelativePath=CoreMangLib\cti\system\single\SingleEpsilon\SingleEpsilon.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleEpsilon
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleGetHashCode.exe_7966]
+RelativePath=CoreMangLib\cti\system\single\SingleGetHashCode\SingleGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleIsInfinity.exe_7967]
+RelativePath=CoreMangLib\cti\system\single\SingleIsInfinity\SingleIsInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleIsNaN.exe_7968]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNaN\SingleIsNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleIsNegativeInfinity.exe_7969]
+RelativePath=CoreMangLib\cti\system\single\SingleIsNegativeInfinity\SingleIsNegativeInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsNegativeInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleIsPositiveInfinity.exe_7970]
+RelativePath=CoreMangLib\cti\system\single\SingleIsPositiveInfinity\SingleIsPositiveInfinity.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleIsPositiveInfinity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleMaxValue.exe_7971]
+RelativePath=CoreMangLib\cti\system\single\SingleMaxValue\SingleMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleMinValue.exe_7972]
+RelativePath=CoreMangLib\cti\system\single\SingleMinValue\SingleMinValue.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleNaN.exe_7973]
+RelativePath=CoreMangLib\cti\system\single\SingleNaN\SingleNaN.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleNaN
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleParse1.exe_7974]
+RelativePath=CoreMangLib\cti\system\single\SingleParse1\SingleParse1.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleParse2.exe_7975]
+RelativePath=CoreMangLib\cti\system\single\SingleParse2\SingleParse2.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleParse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToBoolean.exe_7976]
+RelativePath=CoreMangLib\cti\system\single\SingleToBoolean\SingleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToByte.exe_7977]
+RelativePath=CoreMangLib\cti\system\single\SingleToByte\SingleToByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToChar.exe_7978]
+RelativePath=CoreMangLib\cti\system\single\SingleToChar\SingleToChar.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToDateTime.exe_7979]
+RelativePath=CoreMangLib\cti\system\single\SingleToDateTime\SingleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToDecimal.exe_7980]
+RelativePath=CoreMangLib\cti\system\single\SingleToDecimal\SingleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToDouble.exe_7981]
+RelativePath=CoreMangLib\cti\system\single\SingleToDouble\SingleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToInt16.exe_7982]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt16\SingleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToInt32.exe_7983]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt32\SingleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToInt64.exe_7984]
+RelativePath=CoreMangLib\cti\system\single\SingleToInt64\SingleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToSByte.exe_7985]
+RelativePath=CoreMangLib\cti\system\single\SingleToSByte\SingleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToSingle.exe_7986]
+RelativePath=CoreMangLib\cti\system\single\SingleToSingle\SingleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToUInt16.exe_7987]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt16\SingleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToUInt32.exe_7988]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt32\SingleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleToUInt64.exe_7989]
+RelativePath=CoreMangLib\cti\system\single\SingleToUInt64\SingleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SingleTryParse.exe_7990]
+RelativePath=CoreMangLib\cti\system\single\SingleTryParse\SingleTryParse.exe
+WorkingDir=CoreMangLib\cti\system\single\SingleTryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringChars.exe_7991]
+RelativePath=CoreMangLib\cti\system\string\StringChars\StringChars.exe
+WorkingDir=CoreMangLib\cti\system\string\StringChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompare1.exe_7992]
+RelativePath=CoreMangLib\cti\system\string\StringCompare1\StringCompare1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompare15.exe_7993]
+RelativePath=CoreMangLib\cti\system\string\StringCompare15\StringCompare15.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompare2.exe_7994]
+RelativePath=CoreMangLib\cti\system\string\StringCompare2\StringCompare2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompare9.exe_7995]
+RelativePath=CoreMangLib\cti\system\string\StringCompare9\StringCompare9.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompare9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompareOrdinal1.exe_7996]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal1\StringCompareOrdinal1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCompareOrdinal2.exe_7997]
+RelativePath=CoreMangLib\cti\system\string\StringCompareOrdinal2\StringCompareOrdinal2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCompareOrdinal2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat1.exe_7998]
+RelativePath=CoreMangLib\cti\system\string\StringConcat1\StringConcat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat2.exe_7999]
+RelativePath=CoreMangLib\cti\system\string\StringConcat2\StringConcat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat3.exe_8000]
+RelativePath=CoreMangLib\cti\system\string\StringConcat3\StringConcat3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat4.exe_8001]
+RelativePath=CoreMangLib\cti\system\string\StringConcat4\StringConcat4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat5.exe_8002]
+RelativePath=CoreMangLib\cti\system\string\StringConcat5\StringConcat5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat6.exe_8003]
+RelativePath=CoreMangLib\cti\system\string\StringConcat6\StringConcat6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat7.exe_8004]
+RelativePath=CoreMangLib\cti\system\string\StringConcat7\StringConcat7.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringConcat8.exe_8005]
+RelativePath=CoreMangLib\cti\system\string\StringConcat8\StringConcat8.exe
+WorkingDir=CoreMangLib\cti\system\string\StringConcat8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCopyTo.exe_8006]
+RelativePath=CoreMangLib\cti\system\string\StringCopyTo\StringCopyTo.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCopyTo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCtor5.exe_8007]
+RelativePath=CoreMangLib\cti\system\string\StringCtor5\StringCtor5.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringCtorChar.exe_8008]
+RelativePath=CoreMangLib\cti\system\string\StringCtorChar\StringCtorChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringCtorChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringEmpty.exe_8009]
+RelativePath=CoreMangLib\cti\system\string\StringEmpty\StringEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringEquals1.exe_8010]
+RelativePath=CoreMangLib\cti\system\string\StringEquals1\StringEquals1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringEquals2.exe_8011]
+RelativePath=CoreMangLib\cti\system\string\StringEquals2\StringEquals2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringEquals3.exe_8012]
+RelativePath=CoreMangLib\cti\system\string\StringEquals3\StringEquals3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringEquals6.exe_8013]
+RelativePath=CoreMangLib\cti\system\string\StringEquals6\StringEquals6.exe
+WorkingDir=CoreMangLib\cti\system\string\StringEquals6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringFormat1.exe_8014]
+RelativePath=CoreMangLib\cti\system\string\StringFormat1\StringFormat1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringFormat2.exe_8015]
+RelativePath=CoreMangLib\cti\system\string\StringFormat2\StringFormat2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringFormat2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringGetEnumerator.exe_8016]
+RelativePath=CoreMangLib\cti\system\string\StringGetEnumerator\StringGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringGetHashCode.exe_8017]
+RelativePath=CoreMangLib\cti\system\string\StringGetHashCode\StringGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\string\StringGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToBoolean.exe_8018]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToBoolean\StringIConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToByte.exe_8019]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToByte\StringIConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToChar.exe_8020]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToChar\StringIConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToInt16.exe_8021]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt16\StringIConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToInt32.exe_8022]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt32\StringIConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToInt64.exe_8023]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToInt64\StringIConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToSByte.exe_8024]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToSByte\StringIConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToUInt16.exe_8025]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt16\StringIConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToUInt32.exe_8026]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt32\StringIConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIConvertibleToUInt64.exe_8027]
+RelativePath=CoreMangLib\cti\system\string\StringIConvertibleToUInt64\StringIConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIEnumerableGetEnumerator.exe_8028]
+RelativePath=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator\StringIEnumerableGetEnumerator.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIEnumerableGetEnumerator
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIndexOf10.exe_8029]
+RelativePath=CoreMangLib\cti\system\string\StringIndexOf10\StringIndexOf10.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIndexOf10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringInsert.exe_8030]
+RelativePath=CoreMangLib\cti\system\string\StringInsert\StringInsert.exe
+WorkingDir=CoreMangLib\cti\system\string\StringInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringIsNullOrEmpty.exe_8031]
+RelativePath=CoreMangLib\cti\system\string\StringIsNullOrEmpty\StringIsNullOrEmpty.exe
+WorkingDir=CoreMangLib\cti\system\string\StringIsNullOrEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringJoin.exe_8032]
+RelativePath=CoreMangLib\cti\system\string\StringJoin\StringJoin.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringJoin1.exe_8033]
+RelativePath=CoreMangLib\cti\system\string\StringJoin1\StringJoin1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringJoin2.exe_8034]
+RelativePath=CoreMangLib\cti\system\string\StringJoin2\StringJoin2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringJoin2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringLength.exe_8035]
+RelativePath=CoreMangLib\cti\system\string\StringLength\StringLength.exe
+WorkingDir=CoreMangLib\cti\system\string\StringLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadLeft.exe_8036]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft\StringPadLeft.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadLeft1.exe_8037]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft1\StringPadLeft1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadLeft2.exe_8038]
+RelativePath=CoreMangLib\cti\system\string\StringPadLeft2\StringPadLeft2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadLeft2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadRight.exe_8039]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight\StringPadRight.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadRight1.exe_8040]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight1\StringPadRight1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringPadRight2.exe_8041]
+RelativePath=CoreMangLib\cti\system\string\StringPadRight2\StringPadRight2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringPadRight2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringRemove1.exe_8042]
+RelativePath=CoreMangLib\cti\system\string\StringRemove1\StringRemove1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringRemove2.exe_8043]
+RelativePath=CoreMangLib\cti\system\string\StringRemove2\StringRemove2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringRemove2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringReplace1.exe_8044]
+RelativePath=CoreMangLib\cti\system\string\StringReplace1\StringReplace1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringReplace2.exe_8045]
+RelativePath=CoreMangLib\cti\system\string\StringReplace2\StringReplace2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringReplace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringSplit1.exe_8046]
+RelativePath=CoreMangLib\cti\system\string\StringSplit1\StringSplit1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSplit1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringSubString1.exe_8047]
+RelativePath=CoreMangLib\cti\system\string\StringSubString1\StringSubString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringSubString2.exe_8048]
+RelativePath=CoreMangLib\cti\system\string\StringSubString2\StringSubString2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringSubString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringToCharArray.exe_8049]
+RelativePath=CoreMangLib\cti\system\string\StringToCharArray\StringToCharArray.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToCharArray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringToString1.exe_8050]
+RelativePath=CoreMangLib\cti\system\string\StringToString1\StringToString1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringTrim1.exe_8051]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1\StringTrim1.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringTrim1b.exe_8052]
+RelativePath=CoreMangLib\cti\system\string\StringTrim1b\StringTrim1b.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim1b
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringTrim2.exe_8053]
+RelativePath=CoreMangLib\cti\system\string\StringTrim2\StringTrim2.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringTrim3.exe_8054]
+RelativePath=CoreMangLib\cti\system\string\StringTrim3\StringTrim3.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringTrim4.exe_8055]
+RelativePath=CoreMangLib\cti\system\string\StringTrim4\StringTrim4.exe
+WorkingDir=CoreMangLib\cti\system\string\StringTrim4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparerCtor.exe_8056]
+RelativePath=CoreMangLib\cti\system\stringcompare\StringComparerCtor\StringComparerCtor.exe
+WorkingDir=CoreMangLib\cti\system\stringcompare\StringComparerCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparerCompare2.exe_8057]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2\StringComparerCompare2.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerCompare2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparerEquals1.exe_8058]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1\StringComparerEquals1.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparerEquals3.exe_8059]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3\StringComparerEquals3.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparerGetType.exe_8060]
+RelativePath=CoreMangLib\cti\system\stringcomparer\StringComparerGetType\StringComparerGetType.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparer\StringComparerGetType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparisonCurrentCulture.exe_8061]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture\StringComparisonCurrentCulture.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCulture
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparisonCurrentCultureIgnoreCase.exe_8062]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase\StringComparisonCurrentCultureIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonCurrentCultureIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparisonOrdinal.exe_8063]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal\StringComparisonOrdinal.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringComparisonOrdinalIgnoreCase.exe_8064]
+RelativePath=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase\StringComparisonOrdinalIgnoreCase.exe
+WorkingDir=CoreMangLib\cti\system\stringcomparison\StringComparisonOrdinalIgnoreCase
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[SZArrayHelperSetItem.exe_8065]
+RelativePath=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem\SZArrayHelperSetItem.exe
+WorkingDir=CoreMangLib\cti\system\szarrayhelper\SZArrayHelperSetItem
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecoderCtor.exe_8066]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderCtor\DecoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DecoderReset.exe_8067]
+RelativePath=CoreMangLib\cti\system\text\decoder\DecoderReset\DecoderReset.exe
+WorkingDir=CoreMangLib\cti\system\text\decoder\DecoderReset
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncoderCtor.exe_8068]
+RelativePath=CoreMangLib\cti\system\text\encoder\EncoderCtor\EncoderCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\encoder\EncoderCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingBigEndianUnicode.exe_8069]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode\EncodingBigEndianUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingBigEndianUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingClone.exe_8070]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingClone\EncodingClone.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingClone
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingConvert1.exe_8071]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert1\EncodingConvert1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingConvert2.exe_8072]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingConvert2\EncodingConvert2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingConvert2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingCtor1.exe_8073]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingCtor1\EncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingEquals.exe_8074]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingEquals\EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetByteCount.exe_8075]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount\EncodingGetByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetByteCount1.exe_8076]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1\EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetByteCount2.exe_8077]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2\EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetByteCount3.exe_8078]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3\EncodingGetByteCount3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetByteCount3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetBytes1.exe_8079]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1\EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetBytes2.exe_8080]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2\EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetBytes3.exe_8081]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3\EncodingGetBytes3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetBytes4.exe_8082]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4\EncodingGetBytes4.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetBytes5.exe_8083]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5\EncodingGetBytes5.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetBytes5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetCharCount.exe_8084]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount\EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetCharCount1.exe_8085]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1\EncodingGetCharCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetCharCount2.exe_8086]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2\EncodingGetCharCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetCharCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetChars1.exe_8087]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars1\EncodingGetChars1.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetChars2.exe_8088]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars2\EncodingGetChars2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetChars3.exe_8089]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetChars3\EncodingGetChars3.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetChars3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetDecoder.exe_8090]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder\EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetEncoder.exe_8091]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder\EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetEncoding2.exe_8092]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2\EncodingGetEncoding2.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetEncoding2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetMaxByteCount.exe_8093]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount\EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetMaxCharCount.exe_8094]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount\EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetPreamble.exe_8095]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble\EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingGetString.exe_8096]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingGetString\EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingUnicode.exe_8097]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUnicode\EncodingUnicode.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUnicode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingUTF8.exe_8098]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingUTF8\EncodingUTF8.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingUTF8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EncodingWebName.exe_8099]
+RelativePath=CoreMangLib\cti\system\text\encoding\EncodingWebName\EncodingWebName.exe
+WorkingDir=CoreMangLib\cti\system\text\encoding\EncodingWebName
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend.exe_8100]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend\StringBuilderAppend.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend1.exe_8101]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1\StringBuilderAppend1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend10.exe_8102]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10\StringBuilderAppend10.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend10
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend11.exe_8103]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11\StringBuilderAppend11.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend12.exe_8104]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12\StringBuilderAppend12.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend13.exe_8105]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13\StringBuilderAppend13.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend13
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend14.exe_8106]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14\StringBuilderAppend14.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend15.exe_8107]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15\StringBuilderAppend15.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend16.exe_8108]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16\StringBuilderAppend16.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend17.exe_8109]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17\StringBuilderAppend17.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend17
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend18.exe_8110]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18\StringBuilderAppend18.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend18
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend19.exe_8111]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19\StringBuilderAppend19.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend19
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend2.exe_8112]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2\StringBuilderAppend2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend3.exe_8113]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3\StringBuilderAppend3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend4.exe_8114]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4\StringBuilderAppend4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend5.exe_8115]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5\StringBuilderAppend5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend6.exe_8116]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6\StringBuilderAppend6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend7.exe_8117]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7\StringBuilderAppend7.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend8.exe_8118]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8\StringBuilderAppend8.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderAppend9.exe_8119]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9\StringBuilderAppend9.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderAppend9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderCapacity.exe_8120]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity\StringBuilderCapacity.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderCapacity_cti.exe_8121]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti\StringBuilderCapacity_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderCapacity_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderChars.exe_8122]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars\StringBuilderChars.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor1.exe_8123]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1\StringBuilderctor1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor2.exe_8124]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2\StringBuilderctor2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor3.exe_8125]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3\StringBuilderctor3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor4.exe_8126]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4\StringBuilderctor4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor5.exe_8127]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5\StringBuilderctor5.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderctor6.exe_8128]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6\StringBuilderctor6.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderctor6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderInsert.exe_8129]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert\StringBuilderInsert.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderInsert3.exe_8130]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3\StringBuilderInsert3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderInsert4.exe_8131]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4\StringBuilderInsert4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderInsert4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderLength.exe_8132]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength\StringBuilderLength.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderLength_cti.exe_8133]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti\StringBuilderLength_cti.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderLength_cti
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderRemove.exe_8134]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove\StringBuilderRemove.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderRemove
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderReplace1.exe_8135]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1\StringBuilderReplace1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderReplace2.exe_8136]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2\StringBuilderReplace2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderReplace3.exe_8137]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3\StringBuilderReplace3.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderReplace4.exe_8138]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4\StringBuilderReplace4.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderReplace4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderToString1.exe_8139]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1\StringBuilderToString1.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StringBuilderToString2.exe_8140]
+RelativePath=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2\StringBuilderToString2.exe
+WorkingDir=CoreMangLib\cti\system\text\stringbuilder\StringBuilderToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingCtor1.exe_8141]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1\UnicodeEncodingCtor1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingEquals.exe_8142]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals\UnicodeEncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetByteCount1.exe_8143]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1\UnicodeEncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetByteCount2.exe_8144]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2\UnicodeEncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetBytes2.exe_8145]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2\UnicodeEncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetCharCount.exe_8146]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount\UnicodeEncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetChars.exe_8147]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars\UnicodeEncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetDecoder.exe_8148]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder\UnicodeEncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetEncoder.exe_8149]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder\UnicodeEncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetHashCode.exe_8150]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode\UnicodeEncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetMaxByteCount.exe_8151]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount\UnicodeEncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetMaxCharCount.exe_8152]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount\UnicodeEncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetPreamble.exe_8153]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble\UnicodeEncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UnicodeEncodingGetString.exe_8154]
+RelativePath=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString\UnicodeEncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\unicodeencoding\UnicodeEncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingCtor.exe_8155]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor\UTF8EncodingCtor.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingCtor2.exe_8156]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2\UTF8EncodingCtor2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingCtor3.exe_8157]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3\UTF8EncodingCtor3.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingEquals.exe_8158]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals\UTF8EncodingEquals.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetByteCount1.exe_8159]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1\UTF8EncodingGetByteCount1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetByteCount2.exe_8160]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2\UTF8EncodingGetByteCount2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetByteCount2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetBytes1.exe_8161]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1\UTF8EncodingGetBytes1.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetBytes2.exe_8162]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2\UTF8EncodingGetBytes2.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetBytes2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetCharCount.exe_8163]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount\UTF8EncodingGetCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetChars.exe_8164]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars\UTF8EncodingGetChars.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetChars
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetDecoder.exe_8165]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder\UTF8EncodingGetDecoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetDecoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetEncoder.exe_8166]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder\UTF8EncodingGetEncoder.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetEncoder
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetHashCode.exe_8167]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode\UTF8EncodingGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetMaxByteCount.exe_8168]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount\UTF8EncodingGetMaxByteCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxByteCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetMaxCharCount.exe_8169]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount\UTF8EncodingGetMaxCharCount.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetMaxCharCount
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetPreamble.exe_8170]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble\UTF8EncodingGetPreamble.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetPreamble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UTF8EncodingGetString.exe_8171]
+RelativePath=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString\UTF8EncodingGetString.exe
+WorkingDir=CoreMangLib\cti\system\text\utf8encoding\UTF8EncodingGetString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetEventCtor.exe_8172]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor\AutoResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetEventReSet.exe_8173]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet\AutoResetEventReSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventReSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AutoResetEventSet.exe_8174]
+RelativePath=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet\AutoResetEventSet.exe
+WorkingDir=CoreMangLib\cti\system\threading\autoresetevent\AutoResetEventSet
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedAdd1.exe_8175]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1\InterlockedAdd1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedAdd2.exe_8176]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2\InterlockedAdd2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedAdd2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedCompareExchange1.exe_8177]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1\InterlockedCompareExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedCompareExchange5.exe_8178]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5\InterlockedCompareExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedCompareExchange6.exe_8179]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6\InterlockedCompareExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedCompareExchange7.exe_8180]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7\InterlockedCompareExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedCompareExchange7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedDecrement1.exe_8181]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1\InterlockedDecrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedDecrement2.exe_8182]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2\InterlockedDecrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedDecrement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedExchange1.exe_8183]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1\InterlockedExchange1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedExchange5.exe_8184]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5\InterlockedExchange5.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedExchange6.exe_8185]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6\InterlockedExchange6.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedExchange7.exe_8186]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7\InterlockedExchange7.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedExchange7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedIncrement1.exe_8187]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1\InterlockedIncrement1.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockedIncrement2.exe_8188]
+RelativePath=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2\InterlockedIncrement2.exe
+WorkingDir=CoreMangLib\cti\system\threading\interlocked\InterlockedIncrement2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ManualResetEventCtor.exe_8189]
+RelativePath=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor\ManualResetEventCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\manualresetevent\ManualResetEventCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeOutInfinite.exe_8190]
+RelativePath=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite\TimeOutInfinite.exe
+WorkingDir=CoreMangLib\cti\system\threading\timeout\TimeOutInfinite
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WaitHandleCtor.exe_8191]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor\WaitHandleCtor.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleCtor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WaitHandleDispose1.exe_8192]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1\WaitHandleDispose1.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WaitHandleDispose3.exe_8193]
+RelativePath=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3\WaitHandleDispose3.exe
+WorkingDir=CoreMangLib\cti\system\threading\waithandle\WaitHandleDispose3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeoutExceptionCtor1.exe_8194]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1\TimeoutExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeoutExceptionCtor2.exe_8195]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2\TimeoutExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeoutExceptionCtor3.exe_8196]
+RelativePath=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3\TimeoutExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timeoutexception\TimeoutExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanAdd.exe_8197]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanAdd\TimeSpanAdd.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanAdd
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCompare1.exe_8198]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompare1\TimeSpanCompare1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompare1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCompareTo2.exe_8199]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2\TimeSpanCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCtor1.exe_8200]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor1\TimeSpanCtor1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCtor2.exe_8201]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor2\TimeSpanCtor2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCtor3.exe_8202]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor3\TimeSpanCtor3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanCtor4.exe_8203]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanCtor4\TimeSpanCtor4.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanDuration.exe_8204]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanDuration\TimeSpanDuration.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanDuration
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanEquals1.exe_8205]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals1\TimeSpanEquals1.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanEquals2.exe_8206]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals2\TimeSpanEquals2.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanEquals3.exe_8207]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanEquals3\TimeSpanEquals3.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanEquals3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanFromTicks.exe_8208]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanFromTicks\TimeSpanFromTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanFromTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanGetHashCode.exe_8209]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode\TimeSpanGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanMaxValue.exe_8210]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMaxValue\TimeSpanMaxValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanMinValue.exe_8211]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanMinValue\TimeSpanMinValue.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanMinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanNegate.exe_8212]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanNegate\TimeSpanNegate.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanNegate
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTicks.exe_8213]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicks\TimeSpanTicks.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicks
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTicksPerDay.exe_8214]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay\TimeSpanTicksPerDay.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerDay
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTicksPerHour.exe_8215]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour\TimeSpanTicksPerHour.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerHour
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTicksPerMinute.exe_8216]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute\TimeSpanTicksPerMinute.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerMinute
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTicksPerSecond.exe_8217]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond\TimeSpanTicksPerSecond.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTicksPerSecond
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanToString_str.exe_8218]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanToString_str\TimeSpanToString_str.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanToString_str
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTotalDays.exe_8219]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalDays\TimeSpanTotalDays.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalDays
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTotalHours.exe_8220]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalHours\TimeSpanTotalHours.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalHours
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTotalMilliseconds.exe_8221]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds\TimeSpanTotalMilliseconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMilliseconds
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTotalMinutes.exe_8222]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes\TimeSpanTotalMinutes.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalMinutes
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanTotalSeconds.exe_8223]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds\TimeSpanTotalSeconds.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanTotalSeconds
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TimeSpanZero.exe_8224]
+RelativePath=CoreMangLib\cti\system\timespan\TimeSpanZero\TimeSpanZero.exe
+WorkingDir=CoreMangLib\cti\system\timespan\TimeSpanZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeEquals1.exe_8225]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals1\TypeEquals1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeEquals2.exe_8226]
+RelativePath=CoreMangLib\cti\system\type\TypeEquals2\TypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetArrayRank.exe_8227]
+RelativePath=CoreMangLib\cti\system\type\TypeGetArrayRank\TypeGetArrayRank.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetArrayRank
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetElementType.exe_8228]
+RelativePath=CoreMangLib\cti\system\type\TypeGetElementType\TypeGetElementType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetElementType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetGenericTypeDefinition.exe_8229]
+RelativePath=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition\TypeGetGenericTypeDefinition.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetGenericTypeDefinition
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetHashCode.exe_8230]
+RelativePath=CoreMangLib\cti\system\type\TypeGetHashCode\TypeGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetType1.exe_8231]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType1\TypeGetType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetType2.exe_8232]
+RelativePath=CoreMangLib\cti\system\type\TypeGetType2\TypeGetType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeGetTypeFromHandle.exe_8233]
+RelativePath=CoreMangLib\cti\system\type\TypeGetTypeFromHandle\TypeGetTypeFromHandle.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeGetTypeFromHandle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeHasElementTypeImpl.exe_8234]
+RelativePath=CoreMangLib\cti\system\type\TypeHasElementTypeImpl\TypeHasElementTypeImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeHasElementTypeImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeIsByRefImpl.exe_8235]
+RelativePath=CoreMangLib\cti\system\type\TypeIsByRefImpl\TypeIsByRefImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsByRefImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeIsPointerImpl.exe_8236]
+RelativePath=CoreMangLib\cti\system\type\TypeIsPointerImpl\TypeIsPointerImpl.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeIsPointerImpl
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeMakeArrayType1.exe_8237]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType1\TypeMakeArrayType1.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeMakeArrayType2.exe_8238]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeArrayType2\TypeMakeArrayType2.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeArrayType2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeMakeByRefType.exe_8239]
+RelativePath=CoreMangLib\cti\system\type\TypeMakeByRefType\TypeMakeByRefType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakeByRefType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeMakePointerType.exe_8240]
+RelativePath=CoreMangLib\cti\system\type\TypeMakePointerType\TypeMakePointerType.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeMakePointerType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeToString.exe_8241]
+RelativePath=CoreMangLib\cti\system\type\TypeToString\TypeToString.exe
+WorkingDir=CoreMangLib\cti\system\type\TypeToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeBoolean.exe_8242]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeBoolean\TypeCodeBoolean.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeByte.exe_8243]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeByte\TypeCodeByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeChar.exe_8244]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeChar\TypeCodeChar.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeDateTime.exe_8245]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDateTime\TypeCodeDateTime.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeDecimal.exe_8246]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDecimal\TypeCodeDecimal.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeDouble.exe_8247]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeDouble\TypeCodeDouble.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeEmpty.exe_8248]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeEmpty\TypeCodeEmpty.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeEmpty
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeInt16.exe_8249]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt16\TypeCodeInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeInt32.exe_8250]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt32\TypeCodeInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeInt64.exe_8251]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeInt64\TypeCodeInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeObject.exe_8252]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeObject\TypeCodeObject.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeObject
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeSByte.exe_8253]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSByte\TypeCodeSByte.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeSingle.exe_8254]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeSingle\TypeCodeSingle.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeString.exe_8255]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeString\TypeCodeString.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeUInt16.exe_8256]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt16\TypeCodeUInt16.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeUInt32.exe_8257]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt32\TypeCodeUInt32.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeCodeUInt64.exe_8258]
+RelativePath=CoreMangLib\cti\system\typecode\TypeCodeUInt64\TypeCodeUInt64.exe
+WorkingDir=CoreMangLib\cti\system\typecode\TypeCodeUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeLoadExceptionCtor1.exe_8259]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1\TypeLoadExceptionCtor1.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeLoadExceptionCtor2.exe_8260]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2\TypeLoadExceptionCtor2.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeLoadExceptionCtor3.exe_8261]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3\TypeLoadExceptionCtor3.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionCtor3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[TypeLoadExceptionMessage.exe_8262]
+RelativePath=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage\TypeLoadExceptionMessage.exe
+WorkingDir=CoreMangLib\cti\system\typeloadexception\TypeLoadExceptionMessage
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16CompareTo1.exe_8263]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16CompareTo1\UInt16CompareTo1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16CompareTo1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16Equals1.exe_8264]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals1\UInt16Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16Equals2.exe_8265]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Equals2\UInt16Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToBoolean.exe_8266]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean\UInt16IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToByte.exe_8267]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte\UInt16IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToChar.exe_8268]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar\UInt16IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToDateTime.exe_8269]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime\UInt16IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToDecimal.exe_8270]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal\UInt16IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToDouble.exe_8271]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble\UInt16IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToInt16.exe_8272]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16\UInt16IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToInt32.exe_8273]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32\UInt16IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToInt64.exe_8274]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64\UInt16IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToSByte.exe_8275]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte\UInt16IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToSingle.exe_8276]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle\UInt16IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToType.exe_8277]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType\UInt16IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToUInt16.exe_8278]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16\UInt16IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToUInt32.exe_8279]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32\UInt16IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16IConvertibleToUInt64.exe_8280]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64\UInt16IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16Parse1.exe_8281]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse1\UInt16Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16Parse2.exe_8282]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse2\UInt16Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16Parse3.exe_8283]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16Parse3\UInt16Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16ToString3.exe_8284]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString3\UInt16ToString3.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16ToString4.exe_8285]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16ToString4\UInt16ToString4.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16ToString4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt16TryParse.exe_8286]
+RelativePath=CoreMangLib\cti\system\uint16\UInt16TryParse\UInt16TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint16\UInt16TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32CompareTo2.exe_8287]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32CompareTo2\UInt32CompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32CompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32Equals1.exe_8288]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals1\UInt32Equals1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32Equals2.exe_8289]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Equals2\UInt32Equals2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Equals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32GetHashCode.exe_8290]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32GetHashCode\UInt32GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToBoolean.exe_8291]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean\UInt32IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToByte.exe_8292]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte\UInt32IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToChar.exe_8293]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar\UInt32IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToDecimal.exe_8294]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal\UInt32IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToDouble.exe_8295]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble\UInt32IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToInt16.exe_8296]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16\UInt32IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToInt32.exe_8297]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32\UInt32IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToInt64.exe_8298]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64\UInt32IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToSByte.exe_8299]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte\UInt32IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToSingle.exe_8300]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle\UInt32IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToType.exe_8301]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType\UInt32IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToUInt16.exe_8302]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16\UInt32IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToUInt32.exe_8303]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32\UInt32IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32IConvertibleToUInt64.exe_8304]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64\UInt32IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32MaxValue.exe_8305]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MaxValue\UInt32MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32MinValue.exe_8306]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32MinValue\UInt32MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32Parse1.exe_8307]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse1\UInt32Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32Parse2.exe_8308]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse2\UInt32Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32Parse3.exe_8309]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32Parse3\UInt32Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32ToString2.exe_8310]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32ToString2\UInt32ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32ToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt32TryParse.exe_8311]
+RelativePath=CoreMangLib\cti\system\uint32\UInt32TryParse\UInt32TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint32\UInt32TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64GetHashCode.exe_8312]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64GetHashCode\UInt64GetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToBoolean.exe_8313]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean\UInt64IConvertibleToBoolean.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToBoolean
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToByte.exe_8314]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte\UInt64IConvertibleToByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToChar.exe_8315]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar\UInt64IConvertibleToChar.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToChar
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToDateTime.exe_8316]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime\UInt64IConvertibleToDateTime.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDateTime
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToDecimal.exe_8317]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal\UInt64IConvertibleToDecimal.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDecimal
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToDouble.exe_8318]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble\UInt64IConvertibleToDouble.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToDouble
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToInt16.exe_8319]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16\UInt64IConvertibleToInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToInt32.exe_8320]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32\UInt64IConvertibleToInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToInt64.exe_8321]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64\UInt64IConvertibleToInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToSByte.exe_8322]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte\UInt64IConvertibleToSByte.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSByte
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToSingle.exe_8323]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle\UInt64IConvertibleToSingle.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToSingle
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToType.exe_8324]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType\UInt64IConvertibleToType.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToType
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToUInt16.exe_8325]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16\UInt64IConvertibleToUInt16.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt16
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToUInt32.exe_8326]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32\UInt64IConvertibleToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64IConvertibleToUInt64.exe_8327]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64\UInt64IConvertibleToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64IConvertibleToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64MaxValue.exe_8328]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MaxValue\UInt64MaxValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MaxValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64MinValue.exe_8329]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64MinValue\UInt64MinValue.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64MinValue
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64Parse1.exe_8330]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse1\UInt64Parse1.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64Parse2.exe_8331]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse2\UInt64Parse2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64Parse3.exe_8332]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64Parse3\UInt64Parse3.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64Parse3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64ToString2.exe_8333]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64ToString2\UInt64ToString2.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64ToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UInt64TryParse.exe_8334]
+RelativePath=CoreMangLib\cti\system\uint64\UInt64TryParse\UInt64TryParse.exe
+WorkingDir=CoreMangLib\cti\system\uint64\UInt64TryParse
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrCtor_UInt32.exe_8335]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32\UIntPtrCtor_UInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrCtor_UInt64.exe_8336]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64\UIntPtrCtor_UInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_UInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrCtor_VoidPtr.exe_8337]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr\UIntPtrCtor_VoidPtr.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrCtor_VoidPtr
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrEquals.exe_8338]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrEquals\UIntPtrEquals.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrGetHashCode.exe_8339]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode\UIntPtrGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrSize.exe_8340]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrSize\UIntPtrSize.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrSize
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrToPointer.exe_8341]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToPointer\UIntPtrToPointer.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToPointer
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrToString.exe_8342]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToString\UIntPtrToString.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToString
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrToUInt32.exe_8343]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32\UIntPtrToUInt32.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt32
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrToUInt64.exe_8344]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64\UIntPtrToUInt64.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrToUInt64
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[UIntPtrZero.exe_8345]
+RelativePath=CoreMangLib\cti\system\uintptr\UIntPtrZero\UIntPtrZero.exe
+WorkingDir=CoreMangLib\cti\system\uintptr\UIntPtrZero
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueTypeEquals.exe_8346]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals\ValueTypeEquals.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ValueTypeEquals2.exe_8347]
+RelativePath=CoreMangLib\cti\system\valuetype\ValueTypeEquals2\ValueTypeEquals2.exe
+WorkingDir=CoreMangLib\cti\system\valuetype\ValueTypeEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionBuild.exe_8348]
+RelativePath=CoreMangLib\cti\system\version\VersionBuild\VersionBuild.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionBuild
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionCompareTo2.exe_8349]
+RelativePath=CoreMangLib\cti\system\version\VersionCompareTo2\VersionCompareTo2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCompareTo2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionCtor4.exe_8350]
+RelativePath=CoreMangLib\cti\system\version\VersionCtor4\VersionCtor4.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionCtor4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionEquals1.exe_8351]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals1\VersionEquals1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionEquals2.exe_8352]
+RelativePath=CoreMangLib\cti\system\version\VersionEquals2\VersionEquals2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionEquals2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionGetHashCode.exe_8353]
+RelativePath=CoreMangLib\cti\system\version\VersionGetHashCode\VersionGetHashCode.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionGetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionMajor.exe_8354]
+RelativePath=CoreMangLib\cti\system\version\VersionMajor\VersionMajor.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionMajor
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionRevision.exe_8355]
+RelativePath=CoreMangLib\cti\system\version\VersionRevision\VersionRevision.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionRevision
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionToString1.exe_8356]
+RelativePath=CoreMangLib\cti\system\version\VersionToString1\VersionToString1.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[VersionToString2.exe_8357]
+RelativePath=CoreMangLib\cti\system\version\VersionToString2\VersionToString2.exe
+WorkingDir=CoreMangLib\cti\system\version\VersionToString2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceCtor1_PSC.exe_8358]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC\WeakReferenceCtor1_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor1_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceCtor2b_PSC.exe_8359]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC\WeakReferenceCtor2b_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2b_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceCtor2_PSC.exe_8360]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC\WeakReferenceCtor2_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceCtor2_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceIsAliveb_PSC.exe_8361]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC\WeakReferenceIsAliveb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAliveb_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceIsAlive_PSC.exe_8362]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC\WeakReferenceIsAlive_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceIsAlive_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceTargetb_PSC.exe_8363]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC\WeakReferenceTargetb_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTargetb_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[WeakReferenceTrackResurrection_cti_PSC.exe_8364]
+RelativePath=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC\WeakReferenceTrackResurrection_cti_PSC.exe
+WorkingDir=CoreMangLib\cti\system\weakreference\WeakReferenceTrackResurrection_cti_PSC
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[ASURT_99893.exe_8365]
+RelativePath=CoreMangLib\system\buffer\ASURT_99893\ASURT_99893.exe
+WorkingDir=CoreMangLib\system\buffer\ASURT_99893
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Regression_Dev10_609271.exe_8366]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271\Regression_Dev10_609271.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_609271
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Regression_Dev10_624201.exe_8367]
+RelativePath=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201\Regression_Dev10_624201.exe
+WorkingDir=CoreMangLib\system\collections\generic\hashset\Regression_Dev10_624201
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co7510ParseExact_formatarray.exe_8368]
+RelativePath=CoreMangLib\system\datetime\Co7510ParseExact_formatarray\Co7510ParseExact_formatarray.exe
+WorkingDir=CoreMangLib\system\datetime\Co7510ParseExact_formatarray
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NegativeGenerics.exe_8369]
+RelativePath=CoreMangLib\system\delegate\generics\NegativeGenerics\NegativeGenerics.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NegativeGenerics
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[NG_Standard.exe_8370]
+RelativePath=CoreMangLib\system\delegate\generics\NG_Standard\NG_Standard.exe
+WorkingDir=CoreMangLib\system\delegate\generics\NG_Standard
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co6010DelegateEqualsTwo.exe_8371]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo\Co6010DelegateEqualsTwo.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6010DelegateEqualsTwo
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co6031GetHashCode.exe_8372]
+RelativePath=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode\Co6031GetHashCode.exe
+WorkingDir=CoreMangLib\system\delegate\miscellaneous\Co6031GetHashCode
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DDB113347.exe_8373]
+RelativePath=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347\DDB113347.exe
+WorkingDir=CoreMangLib\system\delegate\regressions\devdivbugs\113347\DDB113347
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Guid_Parsing.exe_8374]
+RelativePath=CoreMangLib\system\guid\Guid_Parsing\Guid_Parsing.exe
+WorkingDir=CoreMangLib\system\guid\Guid_Parsing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[LazyTTF.exe_8375]
+RelativePath=CoreMangLib\system\lazyt\LazyTTF\LazyTTF.exe
+WorkingDir=CoreMangLib\system\lazyt\LazyTTF
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Shift_Jis.exe_8376]
+RelativePath=CoreMangLib\system\text\encoding\Shift_Jis\Shift_Jis.exe
+WorkingDir=CoreMangLib\system\text\encoding\Shift_Jis
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Version_Parsing.exe_8377]
+RelativePath=CoreMangLib\system\version\Version_Parsing\Version_Parsing.exe
+WorkingDir=CoreMangLib\system\version\Version_Parsing
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[csgen.1.exe_8378]
+RelativePath=hosting\stress\testset1\csgen.1\csgen.1.exe
+WorkingDir=hosting\stress\testset1\csgen.1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[csgen.2.exe_8379]
+RelativePath=hosting\stress\testset1\csgen.2\csgen.2.exe
+WorkingDir=hosting\stress\testset1\csgen.2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DevDiv_374539.exe_8380]
+RelativePath=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539\DevDiv_374539.exe
+WorkingDir=JIT\Regression\clr-x64-JIT\v4.0\devdiv374539\DevDiv_374539
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[repro177066.exe_8381]
+RelativePath=Loader\binding\assemblies\assemblybugs\177066w\repro177066\repro177066.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\177066w\repro177066
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[client.exe_8382]
+RelativePath=Loader\binding\assemblies\assemblybugs\203962w\client\client.exe
+WorkingDir=Loader\binding\assemblies\assemblybugs\203962w\client
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[EmbedStringVersions.exe_8383]
+RelativePath=Loader\binding\assemblies\assemblyversion\EmbedStringVersions\EmbedStringVersions.exe
+WorkingDir=Loader\binding\assemblies\assemblyversion\EmbedStringVersions
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[properties.exe_8384]
+RelativePath=Loader\binding\assemblies\basicapi\assemblynamector\properties\properties.exe
+WorkingDir=Loader\binding\assemblies\basicapi\assemblynamector\properties
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[exceptions.exe_8385]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\exceptions\exceptions.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\exceptions
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[methods.exe_8386]
+RelativePath=Loader\binding\assemblies\generics\arilistienum\methods\methods\methods.exe
+WorkingDir=Loader\binding\assemblies\generics\arilistienum\methods\methods
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[derivedExplicitClass.exe_8387]
+RelativePath=Loader\classloader\explicitlayout\misc\derivedExplicitClass\derivedExplicitClass.exe
+WorkingDir=Loader\classloader\explicitlayout\misc\derivedExplicitClass
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case1.exe_8388]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1\case1.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case11.exe_8389]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11\case11.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case11
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case12.exe_8390]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12\case12.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case12
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case14.exe_8391]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14\case14.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case14
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case15.exe_8392]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15\case15.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case15
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case2.exe_8393]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2\case2.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case3.exe_8394]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3\case3.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case4.exe_8395]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4\case4.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case5.exe_8396]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5\case5.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case6.exe_8397]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6\case6.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case6
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case7.exe_8398]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7\case7.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case7
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case8.exe_8399]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8\case8.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case8
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[case9.exe_8400]
+RelativePath=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9\case9.exe
+WorkingDir=Loader\classloader\explicitlayout\objrefandnonobjrefoverlap\case9
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[repro237932.exe_8401]
+RelativePath=Loader\classloader\generics\regressions\vsw237932\repro237932\repro237932.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw237932\repro237932
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[vsw514968.exe_8402]
+RelativePath=Loader\classloader\generics\regressions\vsw514968\vsw514968\vsw514968.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw514968\vsw514968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[StaticsProblem5.exe_8403]
+RelativePath=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5\StaticsProblem5.exe
+WorkingDir=Loader\classloader\generics\regressions\vsw524571\StaticsProblem5
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[exploit.exe_8404]
+RelativePath=Loader\classloader\methodoverriding\regressions\549411\exploit\exploit.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\549411\exploit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[vsw577403.exe_8405]
+RelativePath=Loader\classloader\methodoverriding\regressions\577403\vsw577403\vsw577403.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\577403\vsw577403
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[vsw593884.exe_8406]
+RelativePath=Loader\classloader\methodoverriding\regressions\593884\vsw593884\vsw593884.exe
+WorkingDir=Loader\classloader\methodoverriding\regressions\593884\vsw593884
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[testint.exe_8407]
+RelativePath=Loader\classloader\regressions\123413\testint\testint.exe
+WorkingDir=Loader\classloader\regressions\123413\testint
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[vsw144257.exe_8408]
+RelativePath=Loader\classloader\regressions\144257\vsw144257\vsw144257.exe
+WorkingDir=Loader\classloader\regressions\144257\vsw144257
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nullenum1000.exe_8409]
+RelativePath=Loader\classloader\regressions\245191\nullenum1000\nullenum1000.exe
+WorkingDir=Loader\classloader\regressions\245191\nullenum1000
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[test359519.exe_8410]
+RelativePath=Loader\classloader\regressions\359519\test359519\test359519.exe
+WorkingDir=Loader\classloader\regressions\359519\test359519
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[vsw405223.exe_8411]
+RelativePath=Loader\classloader\regressions\405223\vsw405223\vsw405223.exe
+WorkingDir=Loader\classloader\regressions\405223\vsw405223
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[b434481_GenericRecurInit.exe_8412]
+RelativePath=Loader\classloader\regressions\434481\b434481_GenericRecurInit\b434481_GenericRecurInit.exe
+WorkingDir=Loader\classloader\regressions\434481\b434481_GenericRecurInit
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[dev10_851479.exe_8413]
+RelativePath=Loader\classloader\regressions\dev10_851479\dev10_851479\dev10_851479.exe
+WorkingDir=Loader\classloader\regressions\dev10_851479\dev10_851479
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[dev10_889822.exe_8414]
+RelativePath=Loader\classloader\regressions\dev10_889822\dev10_889822\dev10_889822.exe
+WorkingDir=Loader\classloader\regressions\dev10_889822\dev10_889822
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Exception.exe_8415]
+RelativePath=Loader\lowlevel\regress\105736\Exception\Exception.exe
+WorkingDir=Loader\lowlevel\regress\105736\Exception
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[DontUseNetmodule.exe_8416]
+RelativePath=Loader\multimodule\DontUseNetmodule\DontUseNetmodule.exe
+WorkingDir=Loader\multimodule\DontUseNetmodule
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[AssemblyAttrs.exe_8417]
+RelativePath=Loader\versioning\coverage\AssemblyAttrs\AssemblyAttrs.exe
+WorkingDir=Loader\versioning\coverage\AssemblyAttrs
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Dev10_629953.exe_8418]
+RelativePath=reflection\regression\dev10bugs\Dev10_629953\Dev10_629953.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_629953
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Dev10_630880.exe_8419]
+RelativePath=reflection\regression\dev10bugs\Dev10_630880\Dev10_630880.exe
+WorkingDir=reflection\regression\dev10bugs\Dev10_630880
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[thread08-simplified.exe_8420]
+RelativePath=Regressions\coreclr\0028\thread08-simplified\thread08-simplified.exe
+WorkingDir=Regressions\coreclr\0028\thread08-simplified
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[expl_double_1.exe_8421]
+RelativePath=Regressions\coreclr\0041\expl_double_1\expl_double_1.exe
+WorkingDir=Regressions\coreclr\0041\expl_double_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[nullable.exe_8422]
+RelativePath=Regressions\coreclr\0044\nullable\nullable.exe
+WorkingDir=Regressions\coreclr\0044\nullable
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[istype.exe_8423]
+RelativePath=Regressions\coreclr\0046\istype\istype.exe
+WorkingDir=Regressions\coreclr\0046\istype
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[LargeArrayTest.exe_8424]
+RelativePath=Regressions\coreclr\0075\LargeArrayTest\LargeArrayTest.exe
+WorkingDir=Regressions\coreclr\0075\LargeArrayTest
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[delete_next_card_table.exe_8425]
+RelativePath=Regressions\coreclr\0080\delete_next_card_table\delete_next_card_table.exe
+WorkingDir=Regressions\coreclr\0080\delete_next_card_table
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[genrecur.exe_8426]
+RelativePath=Regressions\coreclr\0211\genrecur\genrecur.exe
+WorkingDir=Regressions\coreclr\0211\genrecur
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[unsafe.exe_8427]
+RelativePath=Regressions\coreclr\0342\unsafe\unsafe.exe
+WorkingDir=Regressions\coreclr\0342\unsafe
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[hello.exe_8428]
+RelativePath=Regressions\coreclr\0416\hello\hello.exe
+WorkingDir=Regressions\coreclr\0416\hello
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test570.exe_8429]
+RelativePath=Regressions\coreclr\0570\Test570\Test570.exe
+WorkingDir=Regressions\coreclr\0570\Test570
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test0576.exe_8430]
+RelativePath=Regressions\coreclr\0576\Test0576\Test0576.exe
+WorkingDir=Regressions\coreclr\0576\Test0576
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[csgen.1.exe_8431]
+RelativePath=Regressions\coreclr\0582\csgen.1\csgen.1.exe
+WorkingDir=Regressions\coreclr\0582\csgen.1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test583.exe_8432]
+RelativePath=Regressions\coreclr\0583\Test583\Test583.exe
+WorkingDir=Regressions\coreclr\0583\Test583
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test584.exe_8433]
+RelativePath=Regressions\coreclr\0584\Test584\Test584.exe
+WorkingDir=Regressions\coreclr\0584\Test584
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test0792.exe_8434]
+RelativePath=Regressions\coreclr\0792\Test0792\Test0792.exe
+WorkingDir=Regressions\coreclr\0792\Test0792
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test0828.exe_8435]
+RelativePath=Regressions\coreclr\0828\Test0828\Test0828.exe
+WorkingDir=Regressions\coreclr\0828\Test0828
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test0829.exe_8436]
+RelativePath=Regressions\coreclr\0829\Test0829\Test0829.exe
+WorkingDir=Regressions\coreclr\0829\Test0829
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[override.exe_8437]
+RelativePath=Regressions\coreclr\0857\override\override.exe
+WorkingDir=Regressions\coreclr\0857\override
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[test0939.exe_8438]
+RelativePath=Regressions\coreclr\0939\test0939\test0939.exe
+WorkingDir=Regressions\coreclr\0939\test0939
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test968.exe_8439]
+RelativePath=Regressions\coreclr\0968\Test968\Test968.exe
+WorkingDir=Regressions\coreclr\0968\Test968
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test1337.exe_8440]
+RelativePath=Regressions\coreclr\1337\Test1337\Test1337.exe
+WorkingDir=Regressions\coreclr\1337\Test1337
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Co1727ctor_OO.exe_8441]
+RelativePath=Regressions\coreclr\1386\Co1727ctor_OO\Co1727ctor_OO.exe
+WorkingDir=Regressions\coreclr\1386\Co1727ctor_OO
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test1402.exe_8442]
+RelativePath=Regressions\coreclr\1402\Test1402\Test1402.exe
+WorkingDir=Regressions\coreclr\1402\Test1402
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[InterlockExchange.exe_8443]
+RelativePath=Regressions\coreclr\1514\InterlockExchange\InterlockExchange.exe
+WorkingDir=Regressions\coreclr\1514\InterlockExchange
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test1534.exe_8444]
+RelativePath=Regressions\coreclr\1534\Test1534\Test1534.exe
+WorkingDir=Regressions\coreclr\1534\Test1534
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test1535.exe_8445]
+RelativePath=Regressions\coreclr\1535\Test1535\Test1535.exe
+WorkingDir=Regressions\coreclr\1535\Test1535
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test1549.exe_8446]
+RelativePath=Regressions\coreclr\1549\Test1549\Test1549.exe
+WorkingDir=Regressions\coreclr\1549\Test1549
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+[Test72162.exe_8447]
+RelativePath=Regressions\coreclr\72162\Test72162\Test72162.exe
+WorkingDir=Regressions\coreclr\72162\Test72162
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri1
+HostStyle=Any
+
+[CheckAddInt_1.exe_8447]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_1\CheckAddInt_1.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[CheckAddInt_2.exe_8448]
+RelativePath=baseservices\threading\interlocked\add\CheckAddInt_2\CheckAddInt_2.exe
+WorkingDir=baseservices\threading\interlocked\add\CheckAddInt_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[CompareExchangeLong_1.exe_8449]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1\CompareExchangeLong_1.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[CompareExchangeLong_2.exe_8450]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2\CompareExchangeLong_2.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[CompareExchangeLong_3.exe_8451]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3\CompareExchangeLong_3.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[CompareExchangeLong_4.exe_8452]
+RelativePath=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4\CompareExchangeLong_4.exe
+WorkingDir=baseservices\threading\interlocked\compareexchange\CompareExchangeLong_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartBool_1.exe_8453]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_1\ThreadStartBool_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartBool_2.exe_8454]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartBool_2\ThreadStartBool_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartBool_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDecimal_1.exe_8455]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_1\ThreadStartDecimal_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDecimal_2.exe_8456]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_2\ThreadStartDecimal_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDecimal_3.exe_8457]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDecimal_3\ThreadStartDecimal_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDecimal_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDouble_1.exe_8458]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_1\ThreadStartDouble_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDouble_2.exe_8459]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_2\ThreadStartDouble_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartDouble_3.exe_8460]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartDouble_3\ThreadStartDouble_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartDouble_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartObject_1.exe_8461]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_1\ThreadStartObject_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartObject_2.exe_8462]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartObject_2\ThreadStartObject_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartObject_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartSByte_1.exe_8463]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_1\ThreadStartSByte_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartSByte_2.exe_8464]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_2\ThreadStartSByte_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartSByte_3.exe_8465]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartSByte_3\ThreadStartSByte_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartSByte_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartString_1.exe_8466]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_1\ThreadStartString_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartString_2.exe_8467]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_2\ThreadStartString_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartString_3.exe_8468]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_3\ThreadStartString_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartString_4.exe_8469]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartString_4\ThreadStartString_4.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartString_4
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartULong_1.exe_8470]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_1\ThreadStartULong_1.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_1
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartULong_2.exe_8471]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_2\ThreadStartULong_2.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_2
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
+[ThreadStartULong_3.exe_8472]
+RelativePath=baseservices\threading\paramthreadstart\ThreadStartULong_3\ThreadStartULong_3.exe
+WorkingDir=baseservices\threading\paramthreadstart\ThreadStartULong_3
+Expected=100
+MaxAllowedDurationSeconds=600
+Categories=Pri2
+HostStyle=Any
diff --git a/tests/scripts/test/do-test.cmd b/tests/scripts/test/do-test.cmd
new file mode 100644
index 0000000000..3a992a187c
--- /dev/null
+++ b/tests/scripts/test/do-test.cmd
@@ -0,0 +1,3 @@
+copy TestsOrig.lst Tests.lst
+..\migrate-tags.py Tests.lst TestsOld.lst
+